Qucs-GUI  0.0.18
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ccvs.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  ccvs.cpp - description
3  -------------------
4  begin : Sat Aug 23 2003
5  copyright : (C) 2003 by Michael Margraf
6  email : michael.margraf@alumni.tu-berlin.de
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 
18 #include "ccvs.h"
19 
20 
22 {
23  Description = QObject::tr("current controlled voltage source");
24 
25  Arcs.append(new Arc(0,-11, 22, 22, 0, 16*360,QPen(Qt::darkBlue,2)));
26 
27  Lines.append(new Line(-30,-30,-12,-30,QPen(Qt::darkBlue,2)));
28  Lines.append(new Line(-30, 30,-12, 30,QPen(Qt::darkBlue,2)));
29  Lines.append(new Line( 11,-30, 30,-30,QPen(Qt::darkBlue,2)));
30  Lines.append(new Line( 11, 30, 30, 30,QPen(Qt::darkBlue,2)));
31 
32  Lines.append(new Line(-12,-30,-12, 30,QPen(Qt::darkBlue,2)));
33  Lines.append(new Line( 11,-30, 11,-11,QPen(Qt::darkBlue,2)));
34  Lines.append(new Line( 11, 30, 11, 11,QPen(Qt::darkBlue,2)));
35 
36  Lines.append(new Line(-12, 20,-17, 11,QPen(Qt::darkBlue,2)));
37  Lines.append(new Line(-12, 20, -8, 11,QPen(Qt::darkBlue,2)));
38 
39  Lines.append(new Line( 19,-21, 19,-15,QPen(Qt::red,1)));
40  Lines.append(new Line( 16,-18, 22,-18,QPen(Qt::red,1)));
41  Lines.append(new Line( 16, 18, 22, 18,QPen(Qt::black,1)));
42 
43  Lines.append(new Line(-25,-27, 25,-27,QPen(Qt::darkGray,1)));
44  Lines.append(new Line( 25,-27, 25, 27,QPen(Qt::darkGray,1)));
45  Lines.append(new Line( 25, 27,-25, 27,QPen(Qt::darkGray,1)));
46  Lines.append(new Line(-25, 27,-25,-27,QPen(Qt::darkGray,1)));
47 
48  Ports.append(new Port(-30,-30));
49  Ports.append(new Port( 30,-30));
50  Ports.append(new Port( 30, 30));
51  Ports.append(new Port(-30, 30));
52 
53  x1 = -30; y1 = -30;
54  x2 = 30; y2 = 30;
55 
56  tx = x1+4;
57  ty = y2+4;
58  Model = "CCVS";
59  Name = "SRC";
60 
61  Props.append(new Property("G", "1 Ohm", true,
62  QObject::tr("forward transfer factor")));
63  Props.append(new Property("T", "0", false, QObject::tr("delay time")));
64 }
65 
67 {
68 }
69 
71 {
72  return new CCVS();
73 }
74 
75 Element* CCVS::info(QString& Name, char* &BitmapFile, bool getNewOne)
76 {
77  Name = QObject::tr("Current Controlled Voltage Source");
78  BitmapFile = (char *) "ccvs";
79 
80  if(getNewOne) return new CCVS();
81  return 0;
82 }
Q3PtrList< Line > Lines
Definition: component.h:67
Definition: element.h:55
int y1
Definition: element.h:153
Q3PtrList< struct Arc > Arcs
Definition: component.h:68
CCVS()
Definition: ccvs.cpp:21
int tx
Definition: component.h:78
int y2
Definition: element.h:153
Definition: element.h:72
int x1
Definition: element.h:153
Component * newOne()
Definition: ccvs.cpp:70
int ty
Definition: component.h:78
static Element * info(QString &, char *&, bool getNewOne=false)
Definition: ccvs.cpp:75
Q3PtrList< Property > Props
Definition: component.h:72
Definition: element.h:48
Superclass of all schematic drawing elements.
Definition: element.h:142
Q3PtrList< Port > Ports
Definition: component.h:70
QString Name
Definition: component.h:80
QString Model
Definition: component.h:80
QString Description
Definition: component.h:81
~CCVS()
Definition: ccvs.cpp:66
int x2
Definition: element.h:153