mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
2009-03-15 Stefan Jahn <stefan@lkcc.org>
* msrstub.cpp (MSrstub): New component: microstrip radial stub.
This commit is contained in:
parent
83876fc3ef
commit
a930bbc761
3
NEWS
3
NEWS
@ -35,7 +35,8 @@ Version 0.0.15
|
||||
additional configuration file
|
||||
* Czech translation of the internal help system
|
||||
* new components: EPFL-EKV NMOS/PMOS V2.6, rectangular waveguide,
|
||||
HICUM L0 v1.2, HICUM L2 v3.23, photodiode, digital buffer
|
||||
HICUM L0 v1.2, HICUM L2 v3.23, photodiode, digital buffer, microstrip
|
||||
radial stub
|
||||
* new libraries added: PMOSFETs, NMOSFETs, Regulators, Varistors and
|
||||
Ideal
|
||||
|
||||
|
@ -52,7 +52,7 @@ XPMS = ac_voltage.png arrow.png capacitor.png dc_current.png dc_voltage.png \
|
||||
andor4x2.png andor4x3.png andor4x4.png dmux2to4.png dmux3to8.png \
|
||||
dmux4to16.png ha1b.png fa1b.png fa2b.png pad2bit.png pad3bit.png \
|
||||
pad4bit.png binarytogrey4bit.png greytobinary4bit.png comp_1bit.png \
|
||||
comp_2bit.png comp_4bit.png hpribin4bit.png
|
||||
comp_2bit.png comp_4bit.png hpribin4bit.png msrstub.png
|
||||
|
||||
# toolbar pictures
|
||||
PNGS = fileopen.png filesave.png editdelete.png editcut.png editcopy.png \
|
||||
|
BIN
qucs/bitmaps/msrstub.png
Normal file
BIN
qucs/bitmaps/msrstub.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 245 B |
@ -1,3 +1,7 @@
|
||||
2009-03-15 Stefan Jahn <stefan@lkcc.org>
|
||||
|
||||
* msrstub.cpp (MSrstub): New component: microstrip radial stub.
|
||||
|
||||
2009-03-14 Stefan Jahn <stefan@lkcc.org>
|
||||
|
||||
* component.cpp (createSymbol): Fixed DIN symbol for basic XNOR
|
||||
|
@ -56,7 +56,7 @@ libcomponents_a_SOURCES = phaseshifter.cpp gyrator.cpp componentdialog.cpp \
|
||||
dmux2to4.cpp dmux3to8.cpp dmux4to16.cpp ha1b.cpp fa1b.cpp fa2b.cpp \
|
||||
pad2bit.cpp pad3bit.cpp pad4bit.cpp binarytogrey4bit.cpp \
|
||||
greytobinary4bit.cpp comp_1bit.cpp comp_2bit.cpp comp_4bit.cpp \
|
||||
hpribin4bit.cpp
|
||||
hpribin4bit.cpp msrstub.cpp
|
||||
|
||||
nodist_libcomponents_a_SOURCES = $(MOCFILES)
|
||||
|
||||
@ -83,7 +83,7 @@ noinst_HEADERS = $(MOCHEADERS) resistor.h components.h capacitor.h vccs.h \
|
||||
mux2to1.h mux4to1.h mux8to1.h DLS_nto1.h DLS_1ton.h andor4x2.h andor4x3.h \
|
||||
andor4x4.h dmux2to4.h dmux3to8.h dmux4to16.h ha1b.h fa1b.h fa2b.h pad2bit.h \
|
||||
pad3bit.h pad4bit.h binarytogrey4bit.h greytobinary4bit.h comp_1bit.h \
|
||||
comp_2bit.h comp_4bit.h hpribin4bit.h
|
||||
comp_2bit.h comp_4bit.h hpribin4bit.h msrstub.h
|
||||
|
||||
INCLUDES = $(X11_INCLUDES) $(QT_INCLUDES) -I$(top_srcdir)/qucs
|
||||
|
||||
|
@ -1564,6 +1564,7 @@ Component* getComponentFromName(QString& Line)
|
||||
else if(cstr == "GAP") c = new MSgap();
|
||||
else if(cstr == "COUPLED") c = new MScoupled();
|
||||
else if(cstr == "VIA") c = new MSvia();
|
||||
else if(cstr == "RSTUB") c = new MSrstub();
|
||||
else if(cstr == "ESFET") c = new MESFET();
|
||||
break;
|
||||
case 'E' : if(cstr == "qn") c = new Equation();
|
||||
|
@ -71,6 +71,7 @@
|
||||
#include "msopen.h"
|
||||
#include "msgap.h"
|
||||
#include "msvia.h"
|
||||
#include "msrstub.h"
|
||||
#include "coplanar.h"
|
||||
#include "cpwopen.h"
|
||||
#include "cpwshort.h"
|
||||
|
@ -53,7 +53,7 @@ SOURCES = phaseshifter.cpp gyrator.cpp componentdialog.cpp \
|
||||
dmux2to4.cpp dmux3to8.cpp dmux4to16.cpp ha1b.cpp fa1b.cpp fa2b.cpp \
|
||||
pad2bit.cpp pad3bit.cpp pad4bit.cpp binarytogrey4bit.cpp \
|
||||
greytobinary4bit.cpp comp_1bit.cpp comp_2bit.cpp comp_4bit.cpp \
|
||||
hpribin4bit.cpp
|
||||
hpribin4bit.cpp msrstub.cpp
|
||||
|
||||
# List of special Qt files.
|
||||
MOCHEADERS = componentdialog.h spicedialog.h optimizedialog.h spicefile.h
|
||||
|
67
qucs/components/msrstub.cpp
Normal file
67
qucs/components/msrstub.cpp
Normal file
@ -0,0 +1,67 @@
|
||||
/***************************************************************************
|
||||
msrstub.cpp - description
|
||||
-----------------------------
|
||||
begin : Sun Mar 15 2009
|
||||
copyright : (C) 2009 by Stefan Jahn
|
||||
email : stefan@lkcc.org
|
||||
***************************************************************************/
|
||||
|
||||
/***************************************************************************
|
||||
* *
|
||||
* 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 "msrstub.h"
|
||||
|
||||
MSrstub::MSrstub()
|
||||
{
|
||||
Description = QObject::tr("microstrip radial stub");
|
||||
|
||||
Arcs.append(new Arc( -26, -26, 52, 52,16*45, 16*90,QPen(QPen::darkBlue,2)));
|
||||
|
||||
Lines.append(new Line(-5, 0, 5, 0,QPen(QPen::darkBlue,2)));
|
||||
Lines.append(new Line(-5, 0,-18,-18,QPen(QPen::darkBlue,2)));
|
||||
Lines.append(new Line( 5, 0, 18,-18,QPen(QPen::darkBlue,2)));
|
||||
Lines.append(new Line( 0, 0, 0, 10,QPen(QPen::darkBlue,2)));
|
||||
|
||||
Ports.append(new Port(0, 10));
|
||||
|
||||
x1 = -22; y1 =-30;
|
||||
x2 = 22; y2 = 10;
|
||||
|
||||
tx = x1+4;
|
||||
ty = y2+4;
|
||||
Model = "MRSTUB";
|
||||
Name = "MS";
|
||||
|
||||
Props.append(new Property("Subst", "Subst1", true,
|
||||
QObject::tr("name of substrate definition")));
|
||||
Props.append(new Property("ri", "1 mm", false,
|
||||
QObject::tr("inner radius")));
|
||||
Props.append(new Property("ro", "10 mm", true,
|
||||
QObject::tr("outer radius")));
|
||||
Props.append(new Property("alpha", "90", true,
|
||||
QObject::tr("stub angle")+" ("+QObject::tr ("degrees")+")"));
|
||||
}
|
||||
|
||||
MSrstub::~MSrstub()
|
||||
{
|
||||
}
|
||||
|
||||
Component* MSrstub::newOne()
|
||||
{
|
||||
return new MSrstub();
|
||||
}
|
||||
|
||||
Element* MSrstub::info(QString& Name, char* &BitmapFile, bool getNewOne)
|
||||
{
|
||||
Name = QObject::tr("Microstrip Radial Stub");
|
||||
BitmapFile = (char *) "msrstub";
|
||||
|
||||
if(getNewOne) return new MSrstub();
|
||||
return 0;
|
||||
}
|
31
qucs/components/msrstub.h
Normal file
31
qucs/components/msrstub.h
Normal file
@ -0,0 +1,31 @@
|
||||
/***************************************************************************
|
||||
msrstub.h - description
|
||||
---------------------------
|
||||
begin : Sun Mar 15 2009
|
||||
copyright : (C) 2009 by Stefan Jahn
|
||||
email : stefan@lkcc.org
|
||||
***************************************************************************/
|
||||
|
||||
/***************************************************************************
|
||||
* *
|
||||
* 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 MSRSTUB_H
|
||||
#define MSRSTUB_H
|
||||
|
||||
#include "component.h"
|
||||
|
||||
class MSrstub : public Component {
|
||||
public:
|
||||
MSrstub();
|
||||
~MSrstub();
|
||||
Component* newOne();
|
||||
static Element* info(QString&, char* &, bool getNewOne=false);
|
||||
};
|
||||
|
||||
#endif
|
@ -334,7 +334,7 @@ pInfoFunc TransmissionLines[] =
|
||||
&RectLine::info,
|
||||
&Substrate::info, &MSline::info, &MScoupled::info, &MScorner::info,
|
||||
&MSmbend::info, &MSstep::info, &MStee::info, &MScross::info, &MSopen::info,
|
||||
&MSgap::info, &MSvia::info, &Coplanar::info, &CPWopen::info,
|
||||
&MSgap::info, &MSvia::info, &MSrstub::info, &Coplanar::info, &CPWopen::info,
|
||||
&CPWshort::info, &CPWgap::info, &CPWstep::info, &BondWire::info, 0};
|
||||
|
||||
pInfoFunc nonlinearComps[] =
|
||||
|
@ -6539,6 +6539,26 @@ Usage: qucsedit [-r] file
|
||||
<source>cross coupled gate transfer function low scaling factor</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>microstrip radial stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>inner radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>outer radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>stub angle</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Microstrip Radial Stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsApp</name>
|
||||
|
@ -6840,6 +6840,26 @@ Use: qucsedit [-r] fitxer
|
||||
<source>cross coupled gate transfer function low scaling factor</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>microstrip radial stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>inner radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>outer radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>stub angle</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Microstrip Radial Stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsActions</name>
|
||||
|
@ -7062,6 +7062,26 @@ Použití: qucsedit [-r] soubor
|
||||
<source>cross coupled gate transfer function low scaling factor</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>microstrip radial stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>inner radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>outer radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>stub angle</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Microstrip Radial Stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsActions</name>
|
||||
|
@ -7118,6 +7118,26 @@ Verwendung: qucsedit [-r] Datei
|
||||
<source>cross coupled gate transfer function low scaling factor</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>microstrip radial stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>inner radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>outer radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>stub angle</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Microstrip Radial Stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsActions</name>
|
||||
|
@ -6864,6 +6864,26 @@ Use: qucsedit [-r] archivo
|
||||
<source>cross coupled gate transfer function low scaling factor</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>microstrip radial stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>inner radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>outer radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>stub angle</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Microstrip Radial Stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsActions</name>
|
||||
|
@ -6868,6 +6868,26 @@ Invocation : qucsedit [-r] fichier
|
||||
<source>cross coupled gate transfer function low scaling factor</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>microstrip radial stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>inner radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>outer radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>stub angle</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Microstrip Radial Stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsActions</name>
|
||||
|
@ -6711,6 +6711,26 @@ Usage: qucsedit [-r] file
|
||||
<source>cross coupled gate transfer function low scaling factor</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>microstrip radial stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>inner radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>outer radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>stub angle</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Microstrip Radial Stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsActions</name>
|
||||
|
@ -6838,6 +6838,26 @@ Digitális szimuláció</translation>
|
||||
<source>cross coupled gate transfer function low scaling factor</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>microstrip radial stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>inner radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>outer radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>stub angle</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Microstrip Radial Stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsActions</name>
|
||||
|
@ -7013,6 +7013,26 @@ Usage: qucsedit [-r] file
|
||||
<source>cross coupled gate transfer function low scaling factor</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>microstrip radial stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>inner radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>outer radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>stub angle</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Microstrip Radial Stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsActions</name>
|
||||
|
@ -6794,6 +6794,26 @@ Usage: qucsedit [-r] file
|
||||
<source>cross coupled gate transfer function low scaling factor</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>microstrip radial stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>inner radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>outer radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>stub angle</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Microstrip Radial Stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsActions</name>
|
||||
|
@ -6900,6 +6900,26 @@ Stosowanie: qucsedit [-r] plik
|
||||
<source>cross coupled gate transfer function low scaling factor</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>microstrip radial stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>inner radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>outer radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>stub angle</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Microstrip Radial Stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsActions</name>
|
||||
|
@ -6719,6 +6719,26 @@ Usage: qucsedit [-r] file
|
||||
<source>cross coupled gate transfer function low scaling factor</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>microstrip radial stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>inner radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>outer radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>stub angle</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Microstrip Radial Stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsApp</name>
|
||||
|
@ -6795,6 +6795,26 @@ Folosire: qucsedit [-r] file
|
||||
<source>cross coupled gate transfer function low scaling factor</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>microstrip radial stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>inner radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>outer radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>stub angle</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Microstrip Radial Stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsActions</name>
|
||||
|
@ -7109,6 +7109,26 @@ Usage: qucsedit [-r] file
|
||||
<source>cross coupled gate transfer function low scaling factor</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>microstrip radial stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>inner radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>outer radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>stub angle</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Microstrip Radial Stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsActions</name>
|
||||
|
@ -6676,6 +6676,26 @@ Usage: qucsedit [-r] file
|
||||
<source>cross coupled gate transfer function low scaling factor</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>microstrip radial stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>inner radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>outer radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>stub angle</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Microstrip Radial Stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsActions</name>
|
||||
|
@ -6703,6 +6703,26 @@ Kullanım: qucsedit [-r] kütük
|
||||
<source>cross coupled gate transfer function low scaling factor</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>microstrip radial stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>inner radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>outer radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>stub angle</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Microstrip Radial Stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsActions</name>
|
||||
|
@ -6698,6 +6698,26 @@ Usage: qucsedit [-r] file
|
||||
<source>cross coupled gate transfer function low scaling factor</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>microstrip radial stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>inner radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>outer radius</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>stub angle</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Microstrip Radial Stub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsApp</name>
|
||||
|
Loading…
x
Reference in New Issue
Block a user