qucs_s/qucs/components/gyrator.cpp
2004-06-16 17:41:33 +00:00

77 lines
2.6 KiB
C++

/***************************************************************************
gyrator.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 "gyrator.h"
Gyrator::Gyrator()
{
Description = QObject::tr("gyrator (impedance inverter)");
Arcs.append(new Arc( 2, -9, 19, 19, 16*90, 16*180,QPen(QPen::darkBlue,2)));
Arcs.append(new Arc(-21, -9, 19, 19,16*270, 16*180,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-30,-30,-12,-30,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-30, 30,-12, 30,QPen(QPen::darkBlue,2)));
Lines.append(new Line( 11,-30, 30,-30,QPen(QPen::darkBlue,2)));
Lines.append(new Line( 11, 30, 30, 30,QPen(QPen::darkBlue,2)));
Lines.append(new Line( 12,-30, 12, 30,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-12,-30,-12, 30,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-22,-22, 22,-22,QPen(QPen::darkGray,1)));
Lines.append(new Line( 22,-22, 22, 22,QPen(QPen::darkGray,1)));
Lines.append(new Line( 22, 22,-22, 22,QPen(QPen::darkGray,1)));
Lines.append(new Line(-22, 22,-22,-22,QPen(QPen::darkGray,1)));
Ports.append(new Port(-30,-30));
Ports.append(new Port( 30,-30));
Ports.append(new Port( 30, 30));
Ports.append(new Port(-30, 30));
x1 = -30; y1 = -30;
x2 = 30; y2 = 30;
tx = x1+4;
ty = y2+4;
Model = "Gyrator";
Name = "X";
Props.append(new Property("R", "50 Ohm", true,
QObject::tr("gyrator ratio")));
Props.append(new Property("Zref", "50 Ohm", false,
QObject::tr("reference impedance")));
}
Gyrator::~Gyrator()
{
}
Component* Gyrator::newOne()
{
return new Gyrator();
}
Component* Gyrator::info(QString& Name, char* &BitmapFile, bool getNewOne)
{
Name = QObject::tr("Gyrator");
BitmapFile = "gyrator";
if(getNewOne) return new Gyrator();
return 0;
}