My Project  0.0.16
QUCS Mapping
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
cccs.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  cccs.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 "cccs.h"
19 
20 
22 {
23  Description = QObject::tr("current controlled current source");
24 
25  Arcs.append(new Arc(0,-11, 22, 22, 0, 16*360,QPen(QPen::darkBlue,2)));
26  Lines.append(new Line( 11, -7, 11, 7,QPen(QPen::darkBlue,3)));
27  Lines.append(new Line( 11, 6, 15, 1,QPen(QPen::darkBlue,3)));
28  Lines.append(new Line( 11, 6, 7, 1,QPen(QPen::darkBlue,3)));
29 
30  Lines.append(new Line(-30,-30,-12,-30,QPen(QPen::darkBlue,2)));
31  Lines.append(new Line(-30, 30,-12, 30,QPen(QPen::darkBlue,2)));
32  Lines.append(new Line( 11,-30, 30,-30,QPen(QPen::darkBlue,2)));
33  Lines.append(new Line( 11, 30, 30, 30,QPen(QPen::darkBlue,2)));
34 
35  Lines.append(new Line(-12,-30,-12, 30,QPen(QPen::darkBlue,2)));
36  Lines.append(new Line( 11,-30, 11,-11,QPen(QPen::darkBlue,2)));
37  Lines.append(new Line( 11, 30, 11, 11,QPen(QPen::darkBlue,2)));
38 
39  Lines.append(new Line(-12, 20,-17, 11,QPen(QPen::darkBlue,2)));
40  Lines.append(new Line(-12, 20, -8, 11,QPen(QPen::darkBlue,2)));
41 
42  Lines.append(new Line(-25,-27, 25,-27,QPen(QPen::darkGray,1)));
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 
47  Ports.append(new Port(-30,-30));
48  Ports.append(new Port( 30,-30));
49  Ports.append(new Port( 30, 30));
50  Ports.append(new Port(-30, 30));
51 
52  x1 = -30; y1 = -30;
53  x2 = 30; y2 = 30;
54 
55  tx = x1+4;
56  ty = y2+4;
57  Model = "CCCS";
58  Name = "SRC";
59 
60  Props.append(new Property("G", "1", true,
61  QObject::tr("forward transfer factor")));
62  Props.append(new Property("T", "0", false, QObject::tr("delay time")));
63 }
64 
66 {
67 }
68 
70 {
71  return new CCCS();
72 }
73 
74 Element* CCCS::info(QString& Name, char* &BitmapFile, bool getNewOne)
75 {
76  Name = QObject::tr("Current Controlled Current Source");
77  BitmapFile = (char *) "cccs";
78 
79  if(getNewOne) return new CCCS();
80  return 0;
81 }