My Project  0.0.16
QUCS Mapping
 All Classes Namespaces 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(QPen::darkBlue,2)));
26 
27  Lines.append(new Line(-30,-30,-12,-30,QPen(QPen::darkBlue,2)));
28  Lines.append(new Line(-30, 30,-12, 30,QPen(QPen::darkBlue,2)));
29  Lines.append(new Line( 11,-30, 30,-30,QPen(QPen::darkBlue,2)));
30  Lines.append(new Line( 11, 30, 30, 30,QPen(QPen::darkBlue,2)));
31 
32  Lines.append(new Line(-12,-30,-12, 30,QPen(QPen::darkBlue,2)));
33  Lines.append(new Line( 11,-30, 11,-11,QPen(QPen::darkBlue,2)));
34  Lines.append(new Line( 11, 30, 11, 11,QPen(QPen::darkBlue,2)));
35 
36  Lines.append(new Line(-12, 20,-17, 11,QPen(QPen::darkBlue,2)));
37  Lines.append(new Line(-12, 20, -8, 11,QPen(QPen::darkBlue,2)));
38 
39  Lines.append(new Line( 19,-21, 19,-15,QPen(QPen::red,1)));
40  Lines.append(new Line( 16,-18, 22,-18,QPen(QPen::red,1)));
41  Lines.append(new Line( 16, 18, 22, 18,QPen(QPen::black,1)));
42 
43  Lines.append(new Line(-25,-27, 25,-27,QPen(QPen::darkGray,1)));
44  Lines.append(new Line( 25,-27, 25, 27,QPen(QPen::darkGray,1)));
45  Lines.append(new Line( 25, 27,-25, 27,QPen(QPen::darkGray,1)));
46  Lines.append(new Line(-25, 27,-25,-27,QPen(QPen::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 }