Added MS lange coupler to qucs

This commit is contained in:
Frans Schreuder 2011-05-11 16:20:49 +02:00
parent fa9a21a4c4
commit 8472016167
25 changed files with 263 additions and 4 deletions

View File

@ -31,7 +31,7 @@ XPMS = ac_voltage.png arrow.png capacitor.png dc_current.png dc_voltage.png \
attenuator.png biast.png circulator.png dcblock.png dcfeed.png diode.png \
isolator.png mscorner.png mscross.png msstep.png mstee.png substrate.png \
subport.png spfile1.png spfile2.png spfile3.png coplanar.png ellipse.png \
mscoupled.png gyrator.png cpwgap.png vprobe.png switch.png relais.png \
mscoupled.png mslange.png gyrator.png cpwgap.png vprobe.png switch.png relais.png \
pshifter.png iprobe.png noise_current.png noise_volt.png msmbend.png \
msopen.png filledellipse.png filledrect.png ac_current.png npn.png pnp.png \
nfet.png pfet.png nmosfet.png pmosfet.png dmosfet.png msgap.png npnsub.png \

View File

@ -29,7 +29,7 @@ MOCFILES = $(MOCHEADERS:.h=.moc.cpp)
libcomponents_a_SOURCES = phaseshifter.cpp gyrator.cpp componentdialog.cpp \
vcvs.cpp vccs.cpp tr_sim.cpp tline.cpp substrate.cpp sp_sim.cpp \
param_sweep.cpp mstee.cpp msstep.cpp msline.cpp mscross.cpp mscoupled.cpp \
param_sweep.cpp mstee.cpp msstep.cpp msline.cpp mscross.cpp mscoupled.cpp mslange.cpp \
mscorner.cpp hb_sim.cpp diode.cpp dc_sim.cpp coplanar.cpp ccvs.cpp cccs.cpp \
ac_sim.cpp volt_dc.cpp volt_ac.cpp subcircuit.cpp sparamfile.cpp \
source_ac.cpp isolator.cpp equation.cpp circulator.cpp attenuator.cpp \
@ -65,7 +65,7 @@ noinst_HEADERS = $(MOCHEADERS) resistor.h components.h capacitor.h vccs.h \
inductor.h biast.h dcblock.h dcfeed.h ground.h subcirport.h symtrafo.h \
transformer.h ampere_dc.h attenuator.h circulator.h equation.h isolator.h \
source_ac.h sparamfile.h subcircuit.h volt_ac.h volt_dc.h ac_sim.h cccs.h \
ccvs.h coplanar.h dc_sim.h diode.h hb_sim.h mscorner.h mscoupled.h \
ccvs.h coplanar.h dc_sim.h diode.h hb_sim.h mscorner.h mscoupled.h mslange.h \
mscross.h msline.h msstep.h mstee.h param_sweep.h sp_sim.h substrate.h \
tline.h tr_sim.h component.h vcvs.h gyrator.h phaseshifter.h vhdlfile.h \
iprobe.h volt_noise.h ampere_noise.h msmbend.h msopen.h ampere_ac.h bjt.h \

View File

@ -65,6 +65,7 @@
#include "substrate.h"
#include "msline.h"
#include "mscoupled.h"
#include "mslange.h"
#include "msstep.h"
#include "mscorner.h"
#include "mstee.h"

View File

@ -26,7 +26,7 @@ NAME = libcomponents
# List all sources here.
SOURCES = phaseshifter.cpp gyrator.cpp componentdialog.cpp \
vcvs.cpp vccs.cpp tr_sim.cpp tline.cpp substrate.cpp sp_sim.cpp \
param_sweep.cpp mstee.cpp msstep.cpp msline.cpp mscross.cpp mscoupled.cpp \
param_sweep.cpp mstee.cpp msstep.cpp msline.cpp mscross.cpp mscoupled.cpp mslange.cpp \
mscorner.cpp hb_sim.cpp diode.cpp dc_sim.cpp coplanar.cpp ccvs.cpp cccs.cpp \
ac_sim.cpp volt_dc.cpp volt_ac.cpp subcircuit.cpp sparamfile.cpp \
source_ac.cpp isolator.cpp equation.cpp circulator.cpp attenuator.cpp \

View File

@ -0,0 +1,81 @@
/***************************************************************************
mscoupled.cpp - description
-------------------
begin : Sat Aug 23 2003
copyright : (C) 2010 by Frans Schreuder
email : fransschreuder@lists.sourceforge.net
***************************************************************************/
/***************************************************************************
* *
* 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 "mslange.h"
MSlange::MSlange()
{
Description = QObject::tr("microchip lange coupler");
Lines.append(new Line(-30,-30,-30, 10,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-30, 30,-30, 20,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-30, 20, 0, 20,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-30, 10, 30, 10,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-25, 0, 25, 0,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-30,-10, 30,-10,QPen(QPen::darkBlue,2)));
Lines.append(new Line( 0,-20, 30,-20,QPen(QPen::darkBlue,2)));
Lines.append(new Line( 30,-30, 30,-20,QPen(QPen::darkBlue,2)));
Lines.append(new Line( 30,-10, 30, 30,QPen(QPen::darkBlue,2)));
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 =-33;
x2 = 30; y2 = 33;
tx = x1+4;
ty = y2+4;
Model = "MLANGE";
Name = "MS";
Props.append(new Property("Subst", "Subst1", true,
QObject::tr("name of substrate definition")));
Props.append(new Property("W", "1 mm", true,
QObject::tr("width of the line")));
Props.append(new Property("L", "10 mm", true,
QObject::tr("length of the line")));
Props.append(new Property("S", "1 mm", true,
QObject::tr("spacing between the lines")));
Props.append(new Property("Model", "Kirschning", false,
QObject::tr("microstrip model")+" [Kirschning, Hammerstad]"));
Props.append(new Property("DispModel", "Kirschning", false,
QObject::tr("microstrip dispersion model")+
" [Kirschning, Getsinger]"));
Props.append(new Property("Temp", "26.85", false,
QObject::tr("simulation temperature in degree Celsius")));
}
MSlange::~MSlange()
{
}
Component* MSlange::newOne()
{
return new MSlange();
}
Element* MSlange::info(QString& Name, char* &BitmapFile, bool getNewOne)
{
Name = QObject::tr("Microstrip Lange Coupler");
BitmapFile = (char *) "mslange";
if(getNewOne) return new MSlange();
return 0;
}

32
qucs/components/mslange.h Normal file
View File

@ -0,0 +1,32 @@
/***************************************************************************
mscoupled.h - description
-------------------
begin : Sat Aug 23 2003
copyright : (C) 2003 by Michael Margraf
email : michael.margraf@alumni.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. *
* *
***************************************************************************/
#ifndef MSLANGE_H
#define MSLANGE_H
#include "component.h"
class MSlange : public Component {
public:
MSlange();
~MSlange();
Component* newOne();
static Element* info(QString&, char* &, bool getNewOne=false);
};
#endif

View File

@ -235,6 +235,7 @@ void Module::registerModules (void) {
REGISTER_TRANS_1 (Substrate);
REGISTER_TRANS_1 (MSline);
REGISTER_TRANS_1 (MScoupled);
REGISTER_TRANS_1 (MSlange);
REGISTER_TRANS_1 (MScorner);
REGISTER_TRANS_1 (MSmbend);
REGISTER_TRANS_1 (MSstep);

View File

@ -7111,6 +7111,14 @@ qucsedit [-r] file :إستعمال
<source>Second-order TC of iqfh</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>microstrip lange coupler</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Microstrip Lange Coupler</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>QucsApp</name>

View File

@ -7355,6 +7355,14 @@ Use: qucsedit [-r] fitxer
<source>pnp HICUM L0 v1.3</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>microstrip lange coupler</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Microstrip Lange Coupler</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>QucsActions</name>

View File

@ -7577,6 +7577,14 @@ Použití: qucsedit [-r] soubor
<source>pnp HICUM L0 v1.3</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>microstrip lange coupler</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Microstrip Lange Coupler</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>QucsActions</name>

View File

@ -7633,6 +7633,14 @@ Verwendung: qucsedit [-r] Datei
<source>Second-order TC of iqfh</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>microstrip lange coupler</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Microstrip Lange Coupler</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>QucsActions</name>

View File

@ -7379,6 +7379,14 @@ Use: qucsedit [-r] archivo
<source>Second-order TC of iqfh</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>microstrip lange coupler</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Microstrip Lange Coupler</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>QucsActions</name>

View File

@ -7383,6 +7383,14 @@ Invocation : qucsedit [-r] fichier
<source>Second-order TC of iqfh</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>microstrip lange coupler</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Microstrip Lange Coupler</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>QucsActions</name>

View File

@ -7210,6 +7210,14 @@ Usage: qucsedit [-r] file
<source>pnp HICUM L0 v1.3</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>microstrip lange coupler</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Microstrip Lange Coupler</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>QucsActions</name>

View File

@ -7353,6 +7353,14 @@ Digitális szimuláció</translation>
<source>pnp HICUM L0 v1.3</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>microstrip lange coupler</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Microstrip Lange Coupler</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>QucsActions</name>

View File

@ -7528,6 +7528,14 @@ Usage: qucsedit [-r] file
<source>pnp HICUM L0 v1.3</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>microstrip lange coupler</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Microstrip Lange Coupler</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>QucsActions</name>

View File

@ -7309,6 +7309,14 @@ Usage: qucsedit [-r] file
<source>pnp HICUM L0 v1.3</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>microstrip lange coupler</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Microstrip Lange Coupler</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>QucsActions</name>

View File

@ -7061,6 +7061,14 @@ Usage: qucsedit [-r] file
<source>Second-order TC of iqfh</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>microstrip lange coupler</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Microstrip Lange Coupler</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>QucsApp</name>

View File

@ -7415,6 +7415,14 @@ Stosowanie: qucsedit [-r] plik
<source>Second-order TC of iqfh</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>microstrip lange coupler</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Microstrip Lange Coupler</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>QucsActions</name>

View File

@ -7221,6 +7221,14 @@ Usage: qucsedit [-r] file
<source>pnp HICUM L0 v1.3</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>microstrip lange coupler</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Microstrip Lange Coupler</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>QucsApp</name>

View File

@ -7294,6 +7294,14 @@ Folosire: qucsedit [-r] file
<source>pnp HICUM L0 v1.3</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>microstrip lange coupler</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Microstrip Lange Coupler</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>QucsActions</name>

View File

@ -7624,6 +7624,14 @@ Usage: qucsedit [-r] file
<source>Second-order TC of iqfh</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>microstrip lange coupler</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Microstrip Lange Coupler</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>QucsActions</name>

View File

@ -7175,6 +7175,14 @@ Usage: qucsedit [-r] file
<source>pnp HICUM L0 v1.3</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>microstrip lange coupler</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Microstrip Lange Coupler</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>QucsActions</name>

View File

@ -7218,6 +7218,14 @@ Kullanım: qucsedit [-r] kütük
<source>Second-order TC of iqfh</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>microstrip lange coupler</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Microstrip Lange Coupler</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>QucsActions</name>

View File

@ -7213,6 +7213,14 @@ Usage: qucsedit [-r] file
<source>pnp HICUM L0 v1.3</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>microstrip lange coupler</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Microstrip Lange Coupler</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>QucsApp</name>