mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
71 lines
2.3 KiB
C++
71 lines
2.3 KiB
C++
/***************************************************************************
|
|
isolator.cpp - description
|
|
-------------------
|
|
begin : Sat Aug 23 2003
|
|
copyright : (C) 2003 by Michael Margraf
|
|
email : michael.margraf@alumni.tu-berlin.de
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#include "isolator.h"
|
|
|
|
|
|
Isolator::Isolator()
|
|
{
|
|
Description = QObject::tr("isolator");
|
|
|
|
Lines.append(new Line( -8, 0, 8, 0,QPen(QPen::darkBlue,3)));
|
|
Lines.append(new Line( 8, 0, 0, -5,QPen(QPen::darkBlue,3)));
|
|
Lines.append(new Line( 8, 0, 0, 5,QPen(QPen::darkBlue,3)));
|
|
|
|
Lines.append(new Line(-14,-14, 14,-14,QPen(QPen::darkBlue,2)));
|
|
Lines.append(new Line(-14, 14, 14, 14,QPen(QPen::darkBlue,2)));
|
|
Lines.append(new Line(-14,-14,-14, 14,QPen(QPen::darkBlue,2)));
|
|
Lines.append(new Line( 14,-14, 14, 14,QPen(QPen::darkBlue,2)));
|
|
|
|
Lines.append(new Line(-30, 0,-14, 0,QPen(QPen::darkBlue,2)));
|
|
Lines.append(new Line( 14, 0, 30, 0,QPen(QPen::darkBlue,2)));
|
|
|
|
Ports.append(new Port(-30, 0));
|
|
Ports.append(new Port( 30, 0));
|
|
|
|
x1 = -30; y1 = -17;
|
|
x2 = 30; y2 = 17;
|
|
|
|
tx = x1+4;
|
|
ty = y2+4;
|
|
Model = "Isolator";
|
|
Name = "X";
|
|
|
|
Props.append(new Property("Z1", "50 Ohm", false,
|
|
QObject::tr("reference impedance of input port")));
|
|
Props.append(new Property("Z2", "50 Ohm", false,
|
|
QObject::tr("reference impedance of output port")));
|
|
}
|
|
|
|
Isolator::~Isolator()
|
|
{
|
|
}
|
|
|
|
Component* Isolator::newOne()
|
|
{
|
|
return new Isolator();
|
|
}
|
|
|
|
Component* Isolator::info(QString& Name, char* &BitmapFile, bool getNewOne)
|
|
{
|
|
Name = QObject::tr("Isolator");
|
|
BitmapFile = "isolator";
|
|
|
|
if(getNewOne) return new Isolator();
|
|
return 0;
|
|
}
|