mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
74 lines
2.5 KiB
C++
74 lines
2.5 KiB
C++
/***************************************************************************
|
|
circulator.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 "circulator.h"
|
|
#include "../main.h"
|
|
|
|
|
|
Circulator::Circulator()
|
|
{
|
|
Description = QObject::tr("circulator");
|
|
|
|
Arcs.append(new Arc(-14,-14, 29, 29, 0,16*360,QPen(QPen::darkBlue,2)));
|
|
Lines.append(new Line(-30, 0,-14, 0,QPen(QPen::darkBlue,2)));
|
|
Lines.append(new Line( 30, 0, 14, 0,QPen(QPen::darkBlue,2)));
|
|
Lines.append(new Line( 0, 14, 0, 30,QPen(QPen::darkBlue,2)));
|
|
|
|
Arcs.append(new Arc( -8, -6, 17, 17,16*20,16*150,QPen(QPen::darkBlue,2)));
|
|
Lines.append(new Line( 8, 0, 9, -7,QPen(QPen::darkBlue,2)));
|
|
Lines.append(new Line( 8, 0, 2, -1,QPen(QPen::darkBlue,2)));
|
|
|
|
Lines.append(new Line(-22, -4,-26, 4,QPen(QPen::darkBlue,2))); // marks port 1
|
|
|
|
Ports.append(new Port(-30, 0));
|
|
Ports.append(new Port( 30, 0));
|
|
Ports.append(new Port( 0, 30));
|
|
|
|
x1 = -30; y1 = -16;
|
|
x2 = 30; y2 = 30;
|
|
|
|
tx = x1+4;
|
|
ty = y1-QucsSettings.font.pointSize()-4;
|
|
Model = "Circulator";
|
|
Name = "X";
|
|
|
|
Props.append(new Property("Z1", "50 Ohm", false,
|
|
QObject::tr("reference impedance of port 1")));
|
|
Props.append(new Property("Z2", "50 Ohm", false,
|
|
QObject::tr("reference impedance of port 2")));
|
|
Props.append(new Property("Z3", "50 Ohm", false,
|
|
QObject::tr("reference impedance of port 3")));
|
|
}
|
|
|
|
Circulator::~Circulator()
|
|
{
|
|
}
|
|
|
|
Component* Circulator::newOne()
|
|
{
|
|
return new Circulator();
|
|
}
|
|
|
|
Component* Circulator::info(QString& Name, char* &BitmapFile, bool getNewOne)
|
|
{
|
|
Name = QObject::tr("Circulator");
|
|
BitmapFile = "circulator";
|
|
|
|
if(getNewOne) return new Circulator();
|
|
return 0;
|
|
}
|