mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
76 lines
2.8 KiB
C++
76 lines
2.8 KiB
C++
/***************************************************************************
|
|
vcvs.cpp - description
|
|
-------------------
|
|
begin : Sat Aug 23 2003
|
|
copyright : (C) 2003 by Michael Margraf
|
|
email : margraf@mwt.ee.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 "vcvs.h"
|
|
|
|
|
|
VCVS::VCVS()
|
|
{
|
|
Description = QObject::tr("voltage controlled voltage source");
|
|
|
|
Arcs.append(new Arc(0,-11, 23, 23, 0, 16*360,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,-23,QPen(QPen::darkBlue,2)));
|
|
Lines.append(new Line(-12, 30,-12, 23,QPen(QPen::darkBlue,2)));
|
|
Lines.append(new Line( 11,-30, 11,-11,QPen(QPen::darkBlue,2)));
|
|
Lines.append(new Line( 11, 30, 11, 11,QPen(QPen::darkBlue,2)));
|
|
|
|
Lines.append(new Line(-12,-18,-12, 18,QPen(QPen::darkBlue,2)));
|
|
Lines.append(new Line(-12, 18,-17, 9,QPen(QPen::darkBlue,2)));
|
|
Lines.append(new Line(-12, 18, -8, 9,QPen(QPen::darkBlue,2)));
|
|
|
|
Lines.append(new Line( 19,-21, 19,-15,QPen(QPen::red,1)));
|
|
Lines.append(new Line( 16,-18, 22,-18,QPen(QPen::red,1)));
|
|
Lines.append(new Line( 16, 18, 22, 18,QPen(QPen::black,1)));
|
|
|
|
Lines.append(new Line(-25,-27, 25,-27,QPen(QPen::darkGray,1)));
|
|
Lines.append(new Line( 25,-27, 25, 27,QPen(QPen::darkGray,1)));
|
|
Lines.append(new Line( 25, 27,-25, 27,QPen(QPen::darkGray,1)));
|
|
Lines.append(new Line(-25, 27,-25,-27,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;
|
|
Sign = "VCVS";
|
|
Model = "VCVS";
|
|
Name = "SRC";
|
|
|
|
Props.append(new Property("G", "1", true, QObject::tr("forward transfer factor")));
|
|
Props.append(new Property("T", "0", true, QObject::tr("delay time")));
|
|
}
|
|
|
|
VCVS::~VCVS()
|
|
{
|
|
}
|
|
|
|
VCVS* VCVS::newOne()
|
|
{
|
|
return new VCVS();
|
|
}
|