mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Added MS lange coupler to qucs
This commit is contained in:
parent
fa9a21a4c4
commit
8472016167
@ -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 \
|
||||
|
@ -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 \
|
||||
|
@ -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"
|
||||
|
@ -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 \
|
||||
|
81
qucs/components/mslange.cpp
Normal file
81
qucs/components/mslange.cpp
Normal 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
32
qucs/components/mslange.h
Normal 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
|
@ -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);
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user