Qucs-GUI  0.0.18
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
cpwgap.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  coplanar.cpp
3  --------------
4  begin : Thu May 05 2005
5  copyright : (C) 2005 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 "cpwgap.h"
19 
20 
22 {
23  Description = QObject::tr("coplanar gap");
24 
25  Lines.append(new Line(-30, 0,-18, 0,QPen(Qt::darkBlue,2)));
26  Lines.append(new Line( 18, 0, 30, 0,QPen(Qt::darkBlue,2)));
27  Lines.append(new Line(-13, -8, 2, -8,QPen(Qt::darkBlue,2)));
28  Lines.append(new Line( 8, -8, 23, -8,QPen(Qt::darkBlue,2)));
29  Lines.append(new Line(-23, 8, -8, 8,QPen(Qt::darkBlue,2)));
30  Lines.append(new Line( -2, 8, 13, 8,QPen(Qt::darkBlue,2)));
31  Lines.append(new Line(-13, -8,-23, 8,QPen(Qt::darkBlue,2)));
32  Lines.append(new Line( 2, -8, -8, 8,QPen(Qt::darkBlue,2)));
33  Lines.append(new Line( 8, -8, -2, 8,QPen(Qt::darkBlue,2)));
34  Lines.append(new Line( 23, -8, 13, 8,QPen(Qt::darkBlue,2)));
35 
36  Lines.append(new Line(-25,-13, 25,-13,QPen(Qt::darkBlue,2)));
37  Lines.append(new Line( 16,-21, 24,-13,QPen(Qt::darkBlue,2)));
38  Lines.append(new Line( 8,-21, 16,-13,QPen(Qt::darkBlue,2)));
39  Lines.append(new Line( 0,-21, 8,-13,QPen(Qt::darkBlue,2)));
40  Lines.append(new Line( -8,-21, 0,-13,QPen(Qt::darkBlue,2)));
41  Lines.append(new Line(-16,-21, -8,-13,QPen(Qt::darkBlue,2)));
42  Lines.append(new Line(-24,-21,-16,-13,QPen(Qt::darkBlue,2)));
43 
44  Lines.append(new Line(-25, 13, 25, 13,QPen(Qt::darkBlue,2)));
45  Lines.append(new Line(-24, 13,-16, 21,QPen(Qt::darkBlue,2)));
46  Lines.append(new Line(-16, 13, -8, 21,QPen(Qt::darkBlue,2)));
47  Lines.append(new Line( -8, 13, 0, 21,QPen(Qt::darkBlue,2)));
48  Lines.append(new Line( 0, 13, 8, 21,QPen(Qt::darkBlue,2)));
49  Lines.append(new Line( 8, 13, 16, 21,QPen(Qt::darkBlue,2)));
50  Lines.append(new Line( 16, 13, 24, 21,QPen(Qt::darkBlue,2)));
51 
52  Ports.append(new Port(-30, 0));
53  Ports.append(new Port( 30, 0));
54 
55  x1 = -30; y1 =-24;
56  x2 = 30; y2 = 24;
57 
58  tx = x1+4;
59  ty = y2+4;
60  Model = "CGAP";
61  Name = "CL";
62 
63  Props.append(new Property("Subst", "Subst1", true,
64  QObject::tr("name of substrate definition")));
65  Props.append(new Property("W", "1 mm", true,
66  QObject::tr("width of the line")));
67  Props.append(new Property("S", "1 mm", true,
68  QObject::tr("width of a gap")));
69  Props.append(new Property("G", "0.5 mm", true,
70  QObject::tr("width of gap between the two lines")));
71 }
72 
74 {
75 }
76 
78 {
79  return new CPWgap();
80 }
81 
82 Element* CPWgap::info(QString& Name, char* &BitmapFile, bool getNewOne)
83 {
84  Name = QObject::tr("Coplanar Gap");
85  BitmapFile = (char *) "cpwgap";
86 
87  if(getNewOne) return new CPWgap();
88  return 0;
89 }
Q3PtrList< Line > Lines
Definition: component.h:67
CPWgap()
Definition: cpwgap.cpp:21
int y1
Definition: element.h:153
static Element * info(QString &, char *&, bool getNewOne=false)
Definition: cpwgap.cpp:82
int tx
Definition: component.h:78
int y2
Definition: element.h:153
Definition: element.h:72
int x1
Definition: element.h:153
int ty
Definition: component.h:78
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
Component * newOne()
Definition: cpwgap.cpp:77
~CPWgap()
Definition: cpwgap.cpp:73
int x2
Definition: element.h:153