2008-03-16 Stefan Jahn <stefan@lkcc.org>

* qucstrans.cpp (slotCopyToClipBoard): Added clipboard copy for
        new coplanar line types.

2008-02-09  Michael Margraf   <michael.margraf@alumni.tu-berlin.de>

        * added new lines: coplanar with and without backside metal
This commit is contained in:
ela 2008-03-16 19:48:10 +00:00
parent c258cb119e
commit 95771be96d
41 changed files with 968 additions and 185 deletions

1
NEWS
View File

@ -26,6 +26,7 @@ files.
Version 0.0.14
--------------
* added coplanar line types to Qucs-Transcalc
* fixed printing (font sizes) under Win32
* support for sub- and super-script in graphical text paintings
* new components: diac, tria, thyristor, logarithmic amplifier,

View File

@ -1,3 +1,12 @@
2008-03-16 Stefan Jahn <stefan@lkcc.org>
* qucstrans.cpp (slotCopyToClipBoard): Added clipboard copy for
new coplanar line types.
2008-02-09 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* added new lines: coplanar with and without backside metal
2006-10-29 Stefan Jahn <stefan@lkcc.org>
* coax.cpp (synthesize): Fixed synthesis equations for coax

View File

@ -41,12 +41,12 @@ INCLUDES = $(X11_INCLUDES) $(QT_INCLUDES)
qucstrans_LDFLAGS = $(X11_LDFLAGS) $(QT_LDFLAGS)
noinst_HEADERS = $(MOCHEADERS) transline.h units.h microstrip.h coax.h \
rectwaveguide.h c_microstrip.h
rectwaveguide.h c_microstrip.h coplanar.h
noinst_LIBRARIES = libtranscalc.a
libtranscalc_a_SOURCES = microstrip.cpp transline.cpp coax.cpp \
rectwaveguide.cpp c_microstrip.cpp
rectwaveguide.cpp c_microstrip.cpp coplanar.cpp
%.moc.cpp: %.h
$(MOC) -o $@ $<

View File

@ -4,7 +4,7 @@
#
# Automake input file.
#
# Copyright (C) 2005 Stefan Jahn <stefan@lkcc.org>
# Copyright (C) 2005, 2008 Stefan Jahn <stefan@lkcc.org>
#
# This is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@ -24,7 +24,8 @@
XPMS =
PNGS = c_microstrip.png coax.png microstrip.png rectwaveguide.png
PNGS = c_microstrip.png coax.png microstrip.png rectwaveguide.png cpw.png \
cpw_back.png
ICONS =

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -46,16 +46,6 @@ c_microstrip::~c_microstrip()
if (aux_ms) delete aux_ms;
}
/*
* skin_depth - calculate skin depth
*/
double c_microstrip::skin_depth()
{
double depth;
depth = 1.0 / (sqrt(M_PI * f * mur * MU0 * sigma));
return depth;
}
/*
* delta_u_thickness_single() computes the thickness effect on
* normalized width for a single microstrip line

View File

@ -31,14 +31,11 @@ class c_microstrip : public transline {
private:
double er; /* dielectric constant */
double mur; /* mag. permeability */
double h; /* height of substrate */
double ht; /* height to the top of box */
double t; /* thickness of top metal */
double sigma; /* Conductivity of the metal */
double tand; /* Dielectric Loss Tangent */
double rough; /* Roughness of top metal */
double f; /* Frequency of operation */
double w; /* width of lines */
double w_t_e; /* even-mode thickness-corrected line width */
double w_t_o; /* odd-mode thickness-corrected line width */
@ -63,14 +60,12 @@ class c_microstrip : public transline {
double atten_cond_e; /* even-mode conductors losses (dB) */
double atten_dielectric_o; /* odd-mode dielectric losses (dB) */
double atten_cond_o; /* odd-mode conductors losses (dB) */
double skindepth; /* Skin depth in mils */
public:
void analyze ();
void synthesize ();
private:
double skin_depth();
double delta_u_thickness_single(double, double);
void delta_u_thickness();
void compute_single_line();

View File

@ -31,10 +31,7 @@ class coax : public transline {
private:
double er; /* dielectric constant */
double mur; /* rel. permeability */
double tand; /* Dielectric Loss Tangent */
double sigma; /* Conductivity of the metal */
double f; /* Frequency of operation */
double din; /* Inner diameter of cable */
double dout; /* Outer diameter of cable */
double l; /* Length of cable */

325
qucs-transcalc/coplanar.cpp Normal file
View File

@ -0,0 +1,325 @@
/*
* coplanar.cpp - coplanar class implementation
*
* Copyright (C) 2008 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* Copyright (C) 2005, 2006 Stefan Jahn <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.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this package; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <math.h>
#include "units.h"
#include "transline.h"
#include "coplanar.h"
coplanar::coplanar() : transline()
{
backMetal = false;
}
groundedCoplanar::groundedCoplanar() : coplanar()
{
backMetal = true;
}
// -------------------------------------------------------------------
void coplanar::getProperties()
{
f = getProperty ("Freq", UNIT_FREQ, FREQ_HZ);
w = getProperty ("W", UNIT_LENGTH, LENGTH_M);
s = getProperty ("S", UNIT_LENGTH, LENGTH_M);
len = getProperty ("L", UNIT_LENGTH, LENGTH_M);
h = getProperty ("H", UNIT_LENGTH, LENGTH_M);
t = getProperty ("T", UNIT_LENGTH, LENGTH_M);
er = getProperty ("Er");
tand = getProperty ("Tand");
sigma = getProperty ("Cond");
Z0 = getProperty ("Z0", UNIT_RES, RES_OHM);
ang_l = getProperty ("Ang_l", UNIT_ANG, ANG_RAD);
}
// -------------------------------------------------------------------
void coplanar::calc()
{
skindepth = skin_depth();
// other local variables (quasi-static constants)
double k1, kk1, kpk1, k2, k3, q1, q2, q3 = 0, qz, er0 = 0;
double zl_factor;
// compute the necessary quasi-static approx. (K1, K3, er(0) and Z(0))
k1 = w / (w + s + s);
kk1 = ellipk (k1);
kpk1 = ellipk (sqrt (1 - k1 * k1));
q1 = kk1 / kpk1;
// backside is metal
if (backMetal) {
k3 = tanh ((M_PI / 4) * (w / h)) / tanh ((M_PI / 4) * (w + s + s) / h);
q3 = ellipk (k3) / ellipk (sqrt (1 - k3 * k3));
qz = 1 / (q1 + q3);
er0 = 1 + q3 * qz * (er - 1);
zl_factor = ZF0 / 2 * qz;
}
// backside is air
else {
k2 = sinh ((M_PI / 4) * (w / h)) / sinh ((M_PI / 4) * (w + s + s) / h);
q2 = ellipk (k2) / ellipk (sqrt (1 - k2 * k2));
er0 = 1 + (er - 1) / 2 * q2 / q1;
zl_factor = ZF0 / 4 / q1;
}
// adds effect of strip thickness
if (t > 0) {
double d, se, We, ke, qe;
d = (t * 1.25 / M_PI) * (1 + log (4 * M_PI * w / t));
se = s - d;
We = w + d;
// modifies k1 accordingly (k1 = ke)
ke = We / (We + se + se); // ke = k1 + (1 - k1 * k1) * d / 2 / s;
qe = ellipk (ke) / ellipk (sqrt (1 - ke * ke));
// backside is metal
if (backMetal) {
qz = 1 / (qe + q3);
er0 = 1 + q3 * qz * (er - 1);
zl_factor = ZF0 / 2 * qz;
}
// backside is air
else {
zl_factor = ZF0 / 4 / qe;
}
// modifies er0 as well
er0 = er0 - (0.7 * (er0 - 1) * t / s) / (q1 + (0.7 * t / s));
}
// pre-compute square roots
double sr_er = sqrt (er);
double sr_er0 = sqrt (er0);
// cut-off frequency of the TE0 mode
double fte = (C0 / 4) / (h * sqrt (er - 1));
// dispersion factor G
double p = log (w / h);
double u = 0.54 - (0.64 - 0.015 * p) * p;
double v = 0.43 - (0.86 - 0.54 * p) * p;
double G = exp (u * log (w / s) + v);
// loss constant factors (computed only once for efficency sake)
double ac = 0;
if (t > 0) {
// equations by GHIONE
double n = (1 - k1) * 8 * M_PI / (t * (1 + k1));
double a = w / 2;
double b = a + s;
ac = (M_PI + log (n * a)) / a + (M_PI + log (n * b)) / b;
}
double ac_factor = ac / (4 * ZF0 * kk1 * kpk1 * (1 - k1 * k1));
double ad_factor = (er / (er - 1)) * tand * M_PI / C0;
// ....................................................
double sr_er_f = sr_er0;
// add the dispersive effects to er0
sr_er_f += (sr_er - sr_er0) / (1 + G * pow (f / fte, -1.8));
// for now, the loss are limited to strip losses (no radiation
// losses yet) losses in neper/length
atten_cond = 20.0 / log(10.0) * len
* ac_factor * sr_er0 * sqrt (M_PI * MU0 * f / sigma);
atten_dielectric = 20.0 / log(10.0) * len
* ad_factor * f * (sr_er_f * sr_er_f - 1) / sr_er_f;
ang_l = 2.0 * M_PI * len * sr_er_f * f / C0; /* in radians */
er_eff = sr_er_f * sr_er_f;
Z0 = zl_factor / sr_er_f;
}
// -------------------------------------------------------------------
void coplanar::show_results()
{
setProperty ("Z0", Z0, UNIT_RES, RES_OHM);
setProperty ("Ang_l", ang_l, UNIT_ANG, ANG_RAD);
setResult (0, er_eff, "");
setResult (1, atten_cond, "dB");
setResult (2, atten_dielectric, "dB");
double val = convertProperty ("T", skindepth, UNIT_LENGTH, LENGTH_M);
setResult (3, val, getUnit ("T"));
}
// -------------------------------------------------------------------
void coplanar::analyze()
{
getProperties();
/* compute coplanar parameters */
calc();
/* print results in the subwindow */
show_results();
}
#define MAX_ERROR 0.000001
// -------------------------------------------------------------------
void coplanar::synthesize()
{
double Z0_dest, Z0_current, Z0_result, increment, slope, error;
int iteration;
getProperties();
/* required value of Z0 */
Z0_dest = Z0;
/* Newton's method */
iteration = 0;
/* compute coplanar parameters */
calc();
Z0_current = Z0;
error = fabs(Z0_dest - Z0_current);
while (error > MAX_ERROR) {
iteration++;
if(isSelected ("W")) {
increment = w / 100.0;
w += increment;
}
else {
increment = s / 100.0;
s += increment;
}
/* compute coplanar parameters */
calc();
Z0_result = Z0;
/* f(w(n)) = Z0 - Z0(w(n)) */
/* f'(w(n)) = -f'(Z0(w(n))) */
/* f'(Z0(w(n))) = (Z0(w(n)) - Z0(w(n+delw))/delw */
/* w(n+1) = w(n) - f(w(n))/f'(w(n)) */
slope = (Z0_result - Z0_current) / increment;
slope = (Z0_dest - Z0_current) / slope - increment;
if(isSelected ("W"))
w += slope;
else
s += slope;
if (w <= 0.0)
w = increment;
if (s <= 0.0)
s = increment;
/* find new error */
/* compute coplanar parameters */
calc();
Z0_current = Z0;
error = fabs(Z0_dest - Z0_current);
if (iteration > 100)
break;
}
setProperty ("W", w, UNIT_LENGTH, LENGTH_M);
setProperty ("S", s, UNIT_LENGTH, LENGTH_M);
/* calculate physical length */
ang_l = getProperty ("Ang_l", UNIT_ANG, ANG_RAD);
len = C0 / f / sqrt(er_eff) * ang_l / 2.0 / M_PI; /* in m */
setProperty ("L", len, UNIT_LENGTH, LENGTH_M);
/* compute coplanar parameters */
calc();
/* print results in the subwindow */
show_results();
}
/* *****************************************************************
********** **********
********** mathematical functions **********
********** **********
***************************************************************** */
#define NR_EPSI 2.2204460492503131e-16
/* The function computes the complete elliptic integral of first kind
K() and the second kind E() using the arithmetic-geometric mean
algorithm (AGM) by Abramowitz and Stegun. */
void coplanar::ellipke (double arg, double &k, double &e) {
int iMax = 16;
if (arg == 1.0) {
k = INFINITY; // infinite
e = 0;
}
else if (isinf (arg) && arg < 0) {
k = 0;
e = INFINITY; // infinite
}
else {
double a, b, c, f, s, fk = 1, fe = 1, t, da = arg;
int i;
if (arg < 0) {
fk = 1 / sqrt (1 - arg);
fe = sqrt (1 - arg);
da = -arg / (1 - arg);
}
a = 1;
b = sqrt (1 - da);
c = sqrt (da);
f = 0.5;
s = f * c * c;
for (i = 0; i < iMax; i++) {
t = (a + b) / 2;
c = (a - b) / 2;
b = sqrt (a * b);
a = t;
f *= 2;
s += f * c * c;
if (c / a < NR_EPSI) break;
}
if (i >= iMax) {
k = 0; e = 0;
}
else {
k = M_PI_2 / a;
e = M_PI_2 * (1 - s) / a;
if (arg < 0) {
k *= fk;
e *= fe;
}
}
}
}
/* We need to know only K(k), and if possible KISS. */
double coplanar::ellipk (double k) {
double r, lost;
ellipke (k, r, lost);
return r;
}

67
qucs-transcalc/coplanar.h Normal file
View File

@ -0,0 +1,67 @@
/*
* coplanar.h - microstrip class definition
*
* Copyright (C) 2008 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* Copyright (C) 2005 Stefan Jahn <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.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this package; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#ifndef __COPLANAR_H
#define __COPLANAR_H
class coplanar : public transline {
public:
coplanar();
private:
double er; /* dielectric constant */
double h; /* height of substrate */
double t; /* thickness of top metal */
double tand; /* Dielectric Loss Tangent */
double w; /* width of line */
double s; /* width of gap between line and ground */
double len; /* length of line */
double Z0; /* characteristic impedance */
double er_eff; /* effective dielectric constant */
double ang_l; /* Electrical length in angle */
double atten_dielectric; /* Loss in dielectric (dB) */
double atten_cond; /* Loss in conductors (dB) */
public:
void analyze();
void synthesize();
protected:
bool backMetal;
private:
void calc();
void show_results();
void getProperties();
void ellipke(double, double&, double&);
double ellipk(double);
};
class groundedCoplanar : public coplanar {
public:
groundedCoplanar();
};
#endif /* __COPLANAR_H */

View File

@ -40,10 +40,7 @@ HelpDialog::HelpDialog(QWidget *parent)
tr("For each type of transmission line, using dialog boxes, you can "
"enter values for the various parameters, and either calculate its "
"electrical properties, or use the given electrical requirements to "
"synthesize physical parameters of the required transmission line.")+
"\n\n"+
tr("Available transmission lines are: Microstrip, Rectangular "
"Waveguide, Coaxial Line and Coupled Microstrips."));
"synthesize physical parameters of the required transmission line."));
// -------- create dialog widgets ------------

View File

@ -1,7 +1,7 @@
#
# qucs-transcalc/libtranscalc.ap - Autodsp input file.
#
# Copyright (C) 2005 Stefan Jahn <stefan@lkcc.org>
# Copyright (C) 2005, 2008 Stefan Jahn <stefan@lkcc.org>
#
# This is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@ -25,7 +25,7 @@ NAME = libtranscalc
# List all sources here.
SOURCES = microstrip.cpp transline.cpp coax.cpp rectwaveguide.cpp \
c_microstrip.cpp
c_microstrip.cpp coplanar.cpp
# List of special Qt files.
MOCHEADERS =

View File

@ -45,17 +45,6 @@ microstrip::~microstrip()
{
}
/*
* skin_depth - calculate skin depth
*/
double microstrip::skin_depth()
{
double depth;
depth = 1.0 / (sqrt(M_PI * f * mur * MU0 * sigma));
return depth;
}
/*
* Z0_homogeneous() - compute the impedance for a stripline in a
* homogeneous medium, without cover effects

View File

@ -33,14 +33,11 @@ class microstrip : public transline {
private:
double er; /* dielectric constant */
double mur; /* mag. permeability */
double h; /* height of substrate */
double ht; /* height to the top of box */
double t; /* thickness of top metal */
double sigma; /* Conductivity of the metal */
double tand; /* Dielectric Loss Tangent */
double rough; /* Roughness of top metal */
double f; /* Frequency of operation */
double w; /* width of line */
double l; /* length of line */
double Z0_0; /* static characteristic impedance */
@ -52,7 +49,6 @@ class microstrip : public transline {
double w_eff; /* Effective width of line */
double atten_dielectric; /* Loss in dielectric (dB) */
double atten_cond; /* Loss in conductors (dB) */
double skindepth; /* Skin depth in mils */
/* private params */
double Z0_h_1; /* homogeneous stripline impedance */
@ -68,7 +64,6 @@ class microstrip : public transline {
double alpha_dielectric();
double char_impedance_ht();
double synth_width();
double skin_depth();
double ereff_dispersion();
double Z0_dispersion();
double Z0_homogeneous(double);

View File

@ -32,7 +32,7 @@ electrical properties, or use the given electrical requirements to
synthesize physical parameters of the required transmission line.
Available transmission lines are: Microstrip, Rectangular Waveguide,
Coaxial Line and Coupled Microstrips.
Coaxial Line, Coplanar and Coupled Microstrips.
.SH AVAILABILITY
The latest version of Qucs can always be obtained from

View File

@ -57,6 +57,7 @@
#include "transline.h"
#include "units.h"
#include "microstrip.h"
#include "coplanar.h"
#include "coax.h"
#include "rectwaveguide.h"
#include "c_microstrip.h"
@ -75,7 +76,7 @@ static const int TransMaxBox[MAX_TRANS_BOXES] = { 9, 1, 4, 3 };
// Defines the available transmission line types.
struct TransType TransLineTypes[] = {
{ ModeMicrostrip, "Microstrip", NULL,
{ ModeMicrostrip, "Microstrip", "microstrip.png", NULL,
{ { {
{ "Er", 2.94, NULL, TRANS_NONES, 0, TRANS_QOBJS },
{ "Mur", 1, NULL, TRANS_NONES, 0, TRANS_QOBJS },
@ -103,7 +104,59 @@ struct TransType TransLineTypes[] = {
} } },
4, TRANS_RESULTS, TRANS_RADIOS
},
{ ModeRectangular, "Rectangular", NULL,
{ ModeCoplanar, "Coplanar", "cpw.png", NULL,
{ { {
{ "Er", 2.94, NULL, TRANS_NONES, 0, TRANS_QOBJS },
{ "H", 10, NULL, TRANS_LENGTHS, 0, TRANS_QOBJS },
{ "T", 0.1, NULL, TRANS_LENGTHS, 0, TRANS_QOBJS },
{ "Cond", 4.1e7, NULL, TRANS_NONES, 0, TRANS_QOBJS },
{ "Tand", 0, NULL, TRANS_NONES, 0, TRANS_QOBJS },
TRANS_END
} },
{ {
{ "Freq", 1, NULL, TRANS_FREQS, 0, TRANS_QOBJS },
TRANS_END
} },
{ {
{ "W", 10, NULL, TRANS_LENGTHS, 0, TRANS_QOBJS },
{ "S", 5, NULL, TRANS_LENGTHS, 0, TRANS_QOBJS },
{ "L", 100, NULL, TRANS_LENGTHS, 0, TRANS_QOBJS },
TRANS_END
} },
{ {
{ "Z0", 50, NULL, TRANS_OHMS, 0, TRANS_QOBJS },
{ "Ang_l", 90, NULL, TRANS_ANGLES, 0, TRANS_QOBJS },
TRANS_END
} } },
4, TRANS_RESULTS, { 1, 0, -1, -1 }
},
{ ModeGroundedCoplanar, "GroundedCoplanar", "cpw_back.png", NULL,
{ { {
{ "Er", 2.94, NULL, TRANS_NONES, 0, TRANS_QOBJS },
{ "H", 10, NULL, TRANS_LENGTHS, 0, TRANS_QOBJS },
{ "T", 0.1, NULL, TRANS_LENGTHS, 0, TRANS_QOBJS },
{ "Cond", 4.1e7, NULL, TRANS_NONES, 0, TRANS_QOBJS },
{ "Tand", 0, NULL, TRANS_NONES, 0, TRANS_QOBJS },
TRANS_END
} },
{ {
{ "Freq", 1, NULL, TRANS_FREQS, 0, TRANS_QOBJS },
TRANS_END
} },
{ {
{ "W", 10, NULL, TRANS_LENGTHS, 0, TRANS_QOBJS },
{ "S", 5, NULL, TRANS_LENGTHS, 0, TRANS_QOBJS },
{ "L", 100, NULL, TRANS_LENGTHS, 0, TRANS_QOBJS },
TRANS_END
} },
{ {
{ "Z0", 50, NULL, TRANS_OHMS, 0, TRANS_QOBJS },
{ "Ang_l", 90, NULL, TRANS_ANGLES, 0, TRANS_QOBJS },
TRANS_END
} } },
4, TRANS_RESULTS, { 1, 0, -1, -1 }
},
{ ModeRectangular, "Rectangular", "rectwaveguide.png", NULL,
{ { {
{ "Er", 1, NULL, TRANS_NONES, 0, TRANS_QOBJS },
{ "Mur", 1, NULL, TRANS_NONES, 0, TRANS_QOBJS },
@ -129,7 +182,7 @@ struct TransType TransLineTypes[] = {
} } },
3, TRANS_RESULTS, { 0, 1, -1, -1 }
},
{ ModeCoaxial, "Coaxial", NULL,
{ ModeCoaxial, "Coaxial", "coax.png", NULL,
{ { {
{ "Er", 2.1, NULL, TRANS_NONES, 0, TRANS_QOBJS },
{ "Mur", 1, NULL, TRANS_NONES, 0, TRANS_QOBJS },
@ -154,7 +207,7 @@ struct TransType TransLineTypes[] = {
} } },
2, TRANS_RESULTS, { 0, 1, -1, -1 }
},
{ ModeCoupledMicrostrip, "CoupledMicrostrip", NULL,
{ ModeCoupledMicrostrip, "CoupledMicrostrip", "c_microstrip.png", NULL,
{ { {
{ "Er", 4.3, NULL, TRANS_NONES, 0, TRANS_QOBJS },
{ "Mur", 1, NULL, TRANS_NONES, 0, TRANS_QOBJS },
@ -184,7 +237,7 @@ struct TransType TransLineTypes[] = {
} } },
7, TRANS_RESULTS, TRANS_RADIOS
},
{ ModeNone, NULL, NULL, { { { TRANS_END } } }, 0,
{ ModeNone, NULL, NULL, NULL, { { { TRANS_END } } }, 0,
TRANS_RESULTS, TRANS_RADIOS }
};
@ -279,7 +332,9 @@ QucsTranscalc::QucsTranscalc() {
// transmission line type choice
QVGroupBox * lineGroup = new QVGroupBox (tr("Transmission Line Type"), h);
tranType = new QComboBox (lineGroup);
tranType->insertItem (tr("Microstrip"));
tranType->insertItem (tr("Microstrip Line"));
tranType->insertItem (tr("Coplanar Waveguide"));
tranType->insertItem (tr("Grounded Coplanar"));
tranType->insertItem (tr("Rectangular Waveguide"));
tranType->insertItem (tr("Coaxial Line"));
tranType->insertItem (tr("Coupled Microstrip"));
@ -346,12 +401,16 @@ QucsTranscalc::QucsTranscalc() {
// intantiate transmission lines
TransLineTypes[0].line = new microstrip ();
TransLineTypes[0].line->setApplication (this);
TransLineTypes[1].line = new rectwaveguide ();
TransLineTypes[1].line = new coplanar ();
TransLineTypes[1].line->setApplication (this);
TransLineTypes[2].line = new coax ();
TransLineTypes[2].line = new groundedCoplanar ();
TransLineTypes[2].line->setApplication (this);
TransLineTypes[3].line = new c_microstrip ();
TransLineTypes[3].line = new rectwaveguide ();
TransLineTypes[3].line->setApplication (this);
TransLineTypes[4].line = new coax ();
TransLineTypes[4].line->setApplication (this);
TransLineTypes[5].line = new c_microstrip ();
TransLineTypes[5].line->setApplication (this);
}
/* Destructor destroys the application. */
@ -367,29 +426,45 @@ QucsTranscalc::~QucsTranscalc()
structures. */
void QucsTranscalc::setupTranslations () {
// calculated results
TransLineTypes[0].result[0].name = new QString(tr("ErEff"));
TransLineTypes[0].result[1].name = new QString(tr("Conductor Losses"));
TransLineTypes[0].result[2].name = new QString(tr("Dielectric Losses"));
TransLineTypes[0].result[3].name = new QString(tr("Skin Depth"));
int i = 0;
TransLineTypes[i].result[0].name = new QString(tr("ErEff"));
TransLineTypes[i].result[1].name = new QString(tr("Conductor Losses"));
TransLineTypes[i].result[2].name = new QString(tr("Dielectric Losses"));
TransLineTypes[i].result[3].name = new QString(tr("Skin Depth"));
TransLineTypes[1].result[0].name = new QString(tr("ErEff"));
TransLineTypes[1].result[1].name = new QString(tr("Conductor Losses"));
TransLineTypes[1].result[2].name = new QString(tr("Dielectric Losses"));
TransLineTypes[1].result[3].name = new QString(tr("TE-Modes"));
TransLineTypes[1].result[4].name = new QString(tr("TM-Modes"));
i++;
TransLineTypes[i].result[0].name = new QString(tr("ErEff"));
TransLineTypes[i].result[1].name = new QString(tr("Conductor Losses"));
TransLineTypes[i].result[2].name = new QString(tr("Dielectric Losses"));
TransLineTypes[i].result[3].name = new QString(tr("Skin Depth"));
TransLineTypes[2].result[0].name = new QString(tr("Conductor Losses"));
TransLineTypes[2].result[1].name = new QString(tr("Dielectric Losses"));
TransLineTypes[2].result[2].name = new QString(tr("TE-Modes"));
TransLineTypes[2].result[3].name = new QString(tr("TM-Modes"));
i++;
TransLineTypes[i].result[0].name = new QString(tr("ErEff"));
TransLineTypes[i].result[1].name = new QString(tr("Conductor Losses"));
TransLineTypes[i].result[2].name = new QString(tr("Dielectric Losses"));
TransLineTypes[i].result[3].name = new QString(tr("Skin Depth"));
TransLineTypes[3].result[0].name = new QString(tr("ErEff Even"));
TransLineTypes[3].result[1].name = new QString(tr("ErEff Odd"));
TransLineTypes[3].result[2].name = new QString(tr("Conductor Losses Even"));
TransLineTypes[3].result[3].name = new QString(tr("Conductor Losses Odd"));
TransLineTypes[3].result[4].name = new QString(tr("Dielectric Losses Even"));
TransLineTypes[3].result[5].name = new QString(tr("Dielectric Losses Odd"));
TransLineTypes[3].result[6].name = new QString(tr("Skin Depth"));
i++;
TransLineTypes[i].result[0].name = new QString(tr("ErEff"));
TransLineTypes[i].result[1].name = new QString(tr("Conductor Losses"));
TransLineTypes[i].result[2].name = new QString(tr("Dielectric Losses"));
TransLineTypes[i].result[3].name = new QString(tr("TE-Modes"));
TransLineTypes[i].result[4].name = new QString(tr("TM-Modes"));
i++;
TransLineTypes[i].result[0].name = new QString(tr("Conductor Losses"));
TransLineTypes[i].result[1].name = new QString(tr("Dielectric Losses"));
TransLineTypes[i].result[2].name = new QString(tr("TE-Modes"));
TransLineTypes[i].result[3].name = new QString(tr("TM-Modes"));
i++;
TransLineTypes[i].result[0].name = new QString(tr("ErEff Even"));
TransLineTypes[i].result[1].name = new QString(tr("ErEff Odd"));
TransLineTypes[i].result[2].name = new QString(tr("Conductor Losses Even"));
TransLineTypes[i].result[3].name = new QString(tr("Conductor Losses Odd"));
TransLineTypes[i].result[4].name = new QString(tr("Dielectric Losses Even"));
TransLineTypes[i].result[5].name = new QString(tr("Dielectric Losses Odd"));
TransLineTypes[i].result[6].name = new QString(tr("Skin Depth"));
// extra tool tips
struct TransType * t = TransLineTypes;
@ -407,6 +482,32 @@ void QucsTranscalc::setupTranslations () {
t->array[3].item[0].tip = new QString(tr("Characteristic Impedance"));
t->array[3].item[1].tip = new QString(tr("Electrical Length"));
t++;
t->array[0].item[0].tip = new QString(tr("Relative Permittivity"));
t->array[0].item[1].tip = new QString(tr("Height of Substrate"));
t->array[0].item[2].tip = new QString(tr("Strip Thickness"));
t->array[0].item[3].tip = new QString(tr("Strip Conductivity"));
t->array[0].item[4].tip = new QString(tr("Dielectric Loss Tangent"));
t->array[1].item[0].tip = new QString(tr("Frequency"));
t->array[2].item[0].tip = new QString(tr("Line Width"));
t->array[2].item[1].tip = new QString(tr("Gap Width"));
t->array[2].item[2].tip = new QString(tr("Line Length"));
t->array[3].item[0].tip = new QString(tr("Characteristic Impedance"));
t->array[3].item[1].tip = new QString(tr("Electrical Length"));
t++;
t->array[0].item[0].tip = new QString(tr("Relative Permittivity"));
t->array[0].item[1].tip = new QString(tr("Height of Substrate"));
t->array[0].item[2].tip = new QString(tr("Strip Thickness"));
t->array[0].item[3].tip = new QString(tr("Strip Conductivity"));
t->array[0].item[4].tip = new QString(tr("Dielectric Loss Tangent"));
t->array[1].item[0].tip = new QString(tr("Frequency"));
t->array[2].item[0].tip = new QString(tr("Line Width"));
t->array[2].item[1].tip = new QString(tr("Gap Width"));
t->array[2].item[2].tip = new QString(tr("Line Length"));
t->array[3].item[0].tip = new QString(tr("Characteristic Impedance"));
t->array[3].item[1].tip = new QString(tr("Electrical Length"));
t++;
t->array[0].item[0].tip = new QString(tr("Relative Permittivity"));
t->array[0].item[1].tip = new QString(tr("Relative Permeability"));
@ -821,6 +922,7 @@ void QucsTranscalc::slotAbout()
tr("Copyright (C) 2001 by Gopal Narayanan\n")+
tr("Copyright (C) 2002 by Claudio Girardi\n")+
tr("Copyright (C) 2005 by Stefan Jahn\n")+
tr("Copyright (C) 2008 by Michael Margraf\n")+
"\nThis is free software; see the source for copying conditions."
"\nThere is NO warranty; not even for MERCHANTABILITY or "
"\nFITNESS FOR A PARTICULAR PURPOSE.");
@ -852,30 +954,9 @@ void QucsTranscalc::closeEvent(QCloseEvent *Event)
void QucsTranscalc::slotSelectType (int Type)
{
int _mode = mode;
switch (Type) {
case 0:
pix->setPixmap (QPixmap (QImage (QucsSettings.BitmapDir +
"microstrip.png")));
_mode = ModeMicrostrip;
break;
case 1:
pix->setPixmap (QPixmap (QImage (QucsSettings.BitmapDir +
"rectwaveguide.png")));
_mode = ModeRectangular;
break;
case 2:
pix->setPixmap (QPixmap (QImage (QucsSettings.BitmapDir +
"coax.png")));
_mode = ModeCoaxial;
break;
case 3:
pix->setPixmap (QPixmap (QImage (QucsSettings.BitmapDir +
"c_microstrip.png")));
_mode = ModeCoupledMicrostrip;
break;
}
setMode (_mode);
pix->setPixmap (QPixmap (QImage (
QucsSettings.BitmapDir + QString(TransLineTypes[Type].bitmap))));
setMode (Type);
statBar->message(tr("Ready."));
}
@ -1065,30 +1146,9 @@ void QucsTranscalc::setMode (QString _mode) {
// Updates the combobox and pixmap for the current mode.
void QucsTranscalc::updatePixmap (int _mode) {
int i = 0;
switch (_mode) {
case ModeMicrostrip:
pix->setPixmap (QPixmap (QImage (QucsSettings.BitmapDir +
"microstrip.png")));
i = 0;
break;
case ModeRectangular:
pix->setPixmap (QPixmap (QImage (QucsSettings.BitmapDir +
"rectwaveguide.png")));
i = 1;
break;
case ModeCoaxial:
pix->setPixmap (QPixmap (QImage (QucsSettings.BitmapDir +
"coax.png")));
i = 2;
break;
case ModeCoupledMicrostrip:
pix->setPixmap (QPixmap (QImage (QucsSettings.BitmapDir +
"c_microstrip.png")));
i = 3;
break;
}
tranType->setCurrentItem(i);
pix->setPixmap (QPixmap (QImage (
QucsSettings.BitmapDir + QString(TransLineTypes[_mode].bitmap))));
tranType->setCurrentItem(_mode);
}
void QucsTranscalc::slotHelpIntro()
@ -1133,7 +1193,7 @@ void QucsTranscalc::slotCopyToClipBoard()
// create microstrip schematic
if (mode == ModeMicrostrip) {
transline * l = TransLineTypes[0].line;
transline * l = TransLineTypes[ModeMicrostrip].line;
s += "<Components>\n";
s += " <Pac P1 1 90 150 -74 -26 1 1 \"1\" 1 \"50 Ohm\" 1 \"0 dBm\" 0 \"1 GHz\" 0 \"26.85\" 0>\n";
s +=" <Pac P2 1 270 150 18 -26 0 1 \"2\" 1 \"50 Ohm\" 1 \"0 dBm\" 0 \"1 GHz\" 0 \"26.85\" 0>\n";
@ -1170,7 +1230,7 @@ void QucsTranscalc::slotCopyToClipBoard()
// create coupled microstrip schematic
else if (mode == ModeCoupledMicrostrip) {
transline * l = TransLineTypes[3].line;
transline * l = TransLineTypes[ModeCoupledMicrostrip].line;
s += "<Components>\n";
s += " <Pac P1 1 100 130 -74 -26 1 1 \"1\" 1 \"50 Ohm\" 1 \"0 dBm\" 0 \"1 GHz\" 0 \"26.85\" 0>\n";
s += " <Pac P2 1 320 130 18 -26 0 1 \"2\" 1 \"50 Ohm\" 1 \"0 dBm\" 0 \"1 GHz\" 0 \"26.85\" 0>\n";
@ -1214,8 +1274,8 @@ void QucsTranscalc::slotCopyToClipBoard()
}
// create coaxial line schematic
if (mode == ModeCoaxial) {
transline * l = TransLineTypes[2].line;
else if (mode == ModeCoaxial) {
transline * l = TransLineTypes[ModeCoaxial].line;
s += "<Components>\n";
s += " <Pac P1 1 90 150 -74 -26 1 1 \"1\" 1 \"50 Ohm\" 1 \"0 dBm\" 0 \"1 GHz\" 0 \"26.85\" 0>\n";
s +=" <Pac P2 1 270 150 18 -26 0 1 \"2\" 1 \"50 Ohm\" 1 \"0 dBm\" 0 \"1 GHz\" 0 \"26.85\" 0>\n";
@ -1247,6 +1307,80 @@ void QucsTranscalc::slotCopyToClipBoard()
created++;
}
// create coplanar schematic
else if (mode == ModeCoplanar) {
transline * l = TransLineTypes[ModeCoplanar].line;
s += "<Components>\n";
s += " <Pac P1 1 90 150 -74 -26 1 1 \"1\" 1 \"50 Ohm\" 1 \"0 dBm\" 0 \"1 GHz\" 0 \"26.85\" 0>\n";
s +=" <Pac P2 1 270 150 18 -26 0 1 \"2\" 1 \"50 Ohm\" 1 \"0 dBm\" 0 \"1 GHz\" 0 \"26.85\" 0>\n";
s += " <GND * 1 90 180 0 0 0 0>\n";
s += " <GND * 1 270 180 0 0 0 0>\n";
s += QString(" <SUBST SubstTC1 1 390 140 -30 24 0 0 \"%1\" 1 \"%2 mm\" 1 \"%3 um\" 1 \"%4\" 1 \"%5\" 1 \"0\" 1>\n").
arg(l->getProperty("Er")).
arg(l->getProperty("H", UNIT_LENGTH, LENGTH_MM)).
arg(l->getProperty("T", UNIT_LENGTH, LENGTH_UM)).
arg(l->getProperty("Tand")).
arg(1 / l->getProperty("Cond"));
s += " <.SP SPTC1 1 90 240 0 51 0 0 ";
double freq = l->getProperty("Freq", UNIT_FREQ, FREQ_GHZ);
if (freq > 0)
s += QString("\"log\" 1 \"%1 GHz\" 1 \"%2 GHz\" 1 ").
arg(freq / 10).arg(freq * 10);
else
s += "\"lin\" 1 \"0 GHz\" 1 \"10 GHz\" 1 ";
s += "\"51\" 1 \"no\" 0 \"1\" 0 \"2\" 0>\n";
s += QString(" <CLIN CLTC1 1 180 100 -26 25 0 0 \"SubstTC1\" 1 \"%1 mm\" 1 \"%2 mm\" 1 \"%3 mm\" 1 \"Air\" 1 \"yes\" 0>\n").
arg(l->getProperty("W", UNIT_LENGTH, LENGTH_MM)).
arg(l->getProperty("S", UNIT_LENGTH, LENGTH_MM)).
arg(l->getProperty("L", UNIT_LENGTH, LENGTH_MM));
s += " <Eqn EqnTC1 1 240 260 -23 12 0 0 \"A=twoport(S,'S','A')\" 1 \"ZL=real(sqrt(A[1,2]/A[2,1]))\" 1 \"yes\" 0>\n";
s += "</Components>\n";
s += "<Wires>\n";
s += " <90 100 150 100 \"\" 0 0 0 \"\">\n";
s += " <90 100 90 120 \"\" 0 0 0 \"\">\n";
s += " <210 100 270 100 \"\" 0 0 0 \"\">\n";
s += " <270 100 270 120 \"\" 0 0 0 \"\">\n";
s += "</Wires>\n";
created++;
}
// create coplanar schematic
else if (mode == ModeGroundedCoplanar) {
transline * l = TransLineTypes[ModeGroundedCoplanar].line;
s += "<Components>\n";
s += " <Pac P1 1 90 150 -74 -26 1 1 \"1\" 1 \"50 Ohm\" 1 \"0 dBm\" 0 \"1 GHz\" 0 \"26.85\" 0>\n";
s +=" <Pac P2 1 270 150 18 -26 0 1 \"2\" 1 \"50 Ohm\" 1 \"0 dBm\" 0 \"1 GHz\" 0 \"26.85\" 0>\n";
s += " <GND * 1 90 180 0 0 0 0>\n";
s += " <GND * 1 270 180 0 0 0 0>\n";
s += QString(" <SUBST SubstTC1 1 390 140 -30 24 0 0 \"%1\" 1 \"%2 mm\" 1 \"%3 um\" 1 \"%4\" 1 \"%5\" 1 \"0\" 1>\n").
arg(l->getProperty("Er")).
arg(l->getProperty("H", UNIT_LENGTH, LENGTH_MM)).
arg(l->getProperty("T", UNIT_LENGTH, LENGTH_UM)).
arg(l->getProperty("Tand")).
arg(1 / l->getProperty("Cond"));
s += " <.SP SPTC1 1 90 240 0 51 0 0 ";
double freq = l->getProperty("Freq", UNIT_FREQ, FREQ_GHZ);
if (freq > 0)
s += QString("\"log\" 1 \"%1 GHz\" 1 \"%2 GHz\" 1 ").
arg(freq / 10).arg(freq * 10);
else
s += "\"lin\" 1 \"0 GHz\" 1 \"10 GHz\" 1 ";
s += "\"51\" 1 \"no\" 0 \"1\" 0 \"2\" 0>\n";
s += QString(" <CLIN CLTC1 1 180 100 -26 25 0 0 \"SubstTC1\" 1 \"%1 mm\" 1 \"%2 mm\" 1 \"%3 mm\" 1 \"Metal\" 1 \"yes\" 0>\n").
arg(l->getProperty("W", UNIT_LENGTH, LENGTH_MM)).
arg(l->getProperty("S", UNIT_LENGTH, LENGTH_MM)).
arg(l->getProperty("L", UNIT_LENGTH, LENGTH_MM));
s += " <Eqn EqnTC1 1 240 260 -23 12 0 0 \"A=twoport(S,'S','A')\" 1 \"ZL=real(sqrt(A[1,2]/A[2,1]))\" 1 \"yes\" 0>\n";
s += "</Components>\n";
s += "<Wires>\n";
s += " <90 100 150 100 \"\" 0 0 0 \"\">\n";
s += " <90 100 90 120 \"\" 0 0 0 \"\">\n";
s += " <210 100 270 100 \"\" 0 0 0 \"\">\n";
s += " <270 100 270 120 \"\" 0 0 0 \"\">\n";
s += "</Wires>\n";
created++;
}
// put resulting transmission line schematic into clipboard
QClipboard *cb = QApplication::clipboard();
cb->setText(s);

View File

@ -39,7 +39,7 @@ class transline;
// Current limit defintions.
#define MAX_TRANS_BOXES 4
#define MAX_TRANS_TYPES 4
#define MAX_TRANS_TYPES 6
#define MAX_TRANS_RESULTS 7
// Types of transmission line properties.
@ -98,10 +98,12 @@ struct TransResult {
// Transmission line types.
enum TransMode {
ModeMicrostrip,
ModeCoupledMicrostrip,
ModeRectangular,
ModeCoaxial,
ModeMicrostrip = 0,
ModeCoplanar = 1,
ModeGroundedCoplanar = 2,
ModeRectangular = 3,
ModeCoaxial = 4,
ModeCoupledMicrostrip = 5,
ModeNone
};
@ -109,6 +111,7 @@ enum TransMode {
struct TransType {
int type; // type of transmission line (see TransMode)
const char * description; // description
const char * bitmap; // bitmap file name
transline * line; // transmission line instance
struct TransArray array[MAX_TRANS_BOXES];
int results; // number of extraneous results

View File

@ -31,11 +31,8 @@ class rectwaveguide : public transline {
private:
double er; /* dielectric constant */
double mur; /* mag. permeability */
double sigma; /* Conductivity of the metal */
double tand; /* Dielectric Loss Tangent */
double tanm; /* Magnetic Loss Tangent */
double f; /* Frequency of operation */
double a; /* width of waveguide */
double b; /* height of waveguide */
double l; /* length of waveguide */
@ -45,7 +42,6 @@ class rectwaveguide : public transline {
double mur_eff; /* Effective mag. permeability */
double atten_dielectric; /* Loss in dielectric (dB) */
double atten_cond; /* Loss in conductors (dB) */
double skindepth; /* Skin depth in mils */
double fc10; /* Cutoff frequency for TE10 mode */
public:

View File

@ -58,6 +58,7 @@ static double conv_ang[2][2] = {
/* Constructor creates a transmission line instance. */
transline::transline () {
app = 0;
mur = 1.0;
}
/* Destructor destroys a transmission line instance. */
@ -174,3 +175,13 @@ int transline::translateUnit (char * text) {
else if (!strcmp (text, "Rad")) return ANG_RAD;
return -1;
}
/*
* skin_depth - calculate skin depth
*/
double transline::skin_depth()
{
double depth;
depth = 1.0 / (sqrt(M_PI * f * mur * MU0 * sigma));
return depth;
}

View File

@ -45,6 +45,13 @@ class transline {
virtual void synthesize () { };
virtual void analyze () { };
protected:
double f; /* Frequency of operation */
double sigma; /* Conductivity of the metal */
double mur; /* mag. permeability */
double skindepth; /* Skin depth */
double skin_depth();
private:
QucsTranscalc * app;
};

View File

@ -847,7 +847,7 @@
</message>
<message>
<source>Available transmission lines are: Microstrip, Rectangular Waveguide, Coaxial Line and Coupled Microstrips.</source>
<translation>Les línees de transmissió disponibles son: Microstrip, Guiaones rectangular, Línea coaxial i Microstrips acoplades</translation>
<translation type="obsolete">Les línees de transmissió disponibles son: Microstrip, Guiaones rectangular, Línea coaxial i Microstrips acoplades</translation>
</message>
<message>
<source>Dismiss</source>
@ -10654,7 +10654,7 @@ abrir els fitxers amb el programa apropiado.</translation>
</message>
<message>
<source>Microstrip</source>
<translation>Microstrip</translation>
<translation type="obsolete">Microstrip</translation>
</message>
<message>
<source>Rectangular Waveguide</source>
@ -10932,6 +10932,24 @@ abrir els fitxers amb el programa apropiado.</translation>
<source>ErEff Odd</source>
<translation>ErEff impar</translation>
</message>
<message>
<source>Microstrip Line</source>
<translation type="unfinished">Línea Microstrip</translation>
</message>
<message>
<source>Coplanar Waveguide</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Grounded Coplanar</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Copyright (C) 2008 by Michael Margraf
</source>
<translation type="unfinished">Copyright (C) 2008 por Michael Margraf
</translation>
</message>
</context>
<context>
<name>QucsView</name>

View File

@ -903,7 +903,7 @@
</message>
<message>
<source>Available transmission lines are: Microstrip, Rectangular Waveguide, Coaxial Line and Coupled Microstrips.</source>
<translation>Dostupné typy vodičů jsou: mikropáskové vedení, čtvercový dutý vodič, koaxální kabel a svázaný mikropáskový vodič.</translation>
<translation type="obsolete">Dostupné typy vodičů jsou: mikropáskové vedení, čtvercový dutý vodič, koaxální kabel a svázaný mikropáskový vodič.</translation>
</message>
<message>
<source>Dismiss</source>
@ -12712,7 +12712,7 @@ soubory automaticky otevírat s odpovídajícími programy.</translation>
</message>
<message>
<source>Microstrip</source>
<translation>Mikropáskové vedení</translation>
<translation type="obsolete">Mikropáskové vedení</translation>
</message>
<message>
<source>Rectangular Waveguide</source>
@ -12990,6 +12990,25 @@ soubory automaticky otevírat s odpovídajícími programy.</translation>
<source>ErEff Odd</source>
<translation>Efektivní Er nesouhlasné</translation>
</message>
<message>
<source>Microstrip Line</source>
<translation type="unfinished">Mikropáskové vedení</translation>
</message>
<message>
<source>Coplanar Waveguide</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Grounded Coplanar</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Copyright (C) 2008 by Michael Margraf
</source>
<translation type="unfinished">Copyright (C) 2008 von Michael Margraf
</translation>
</message>
</context>
<context>
<name>QucsView</name>

View File

@ -907,7 +907,7 @@
</message>
<message>
<source>Available transmission lines are: Microstrip, Rectangular Waveguide, Coaxial Line and Coupled Microstrips.</source>
<translation>Die verfügbaren Leitungsarten sind: Mikrostreifenleitung, Hohlleiter, Koaxialkabel und gekoppelte Mikrostreifen.</translation>
<translation type="obsolete">Die verfügbaren Leitungsarten sind: Mikrostreifenleitung, Hohlleiter, Koaxialkabel und gekoppelte Mikrostreifen.</translation>
</message>
<message>
<source>Dismiss</source>
@ -12760,7 +12760,7 @@ mit einem entsprechendem Programm zu assoziieren.</translation>
</message>
<message>
<source>Microstrip</source>
<translation>Mikrostreifenleitung</translation>
<translation type="obsolete">Mikrostreifenleitung</translation>
</message>
<message>
<source>Rectangular Waveguide</source>
@ -13038,6 +13038,25 @@ mit einem entsprechendem Programm zu assoziieren.</translation>
<source>ErEff Odd</source>
<translation>Effektives Er Gegentakt</translation>
</message>
<message>
<source>Microstrip Line</source>
<translation type="unfinished">Mikrostreifenleitung</translation>
</message>
<message>
<source>Coplanar Waveguide</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Grounded Coplanar</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Copyright (C) 2008 by Michael Margraf
</source>
<translation type="unfinished">Copyright (C) 2008 von Michael Margraf
</translation>
</message>
</context>
<context>
<name>QucsView</name>

View File

@ -847,7 +847,7 @@
</message>
<message>
<source>Available transmission lines are: Microstrip, Rectangular Waveguide, Coaxial Line and Coupled Microstrips.</source>
<translation>Las líneas de transmisión disponibles son: Microstrip, Guiaondas rectángular, Línea coaxial y Microstrips acopladas.</translation>
<translation type="obsolete">Las líneas de transmisión disponibles son: Microstrip, Guiaondas rectángular, Línea coaxial y Microstrips acopladas.</translation>
</message>
<message>
<source>Dismiss</source>
@ -10663,7 +10663,7 @@ abrir los archivos con el programa apropiado.</translation>
</message>
<message>
<source>Microstrip</source>
<translation>Microstrip</translation>
<translation type="obsolete">Microstrip</translation>
</message>
<message>
<source>Rectangular Waveguide</source>
@ -10941,6 +10941,24 @@ abrir los archivos con el programa apropiado.</translation>
<source>ErEff Odd</source>
<translation>ErEff impar</translation>
</message>
<message>
<source>Microstrip Line</source>
<translation type="unfinished">Línea Microstrip</translation>
</message>
<message>
<source>Coplanar Waveguide</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Grounded Coplanar</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Copyright (C) 2008 by Michael Margraf
</source>
<translation type="unfinished">Copyright (C) 2008 por Michael Margraf
</translation>
</message>
</context>
<context>
<name>QucsView</name>

View File

@ -850,7 +850,7 @@
</message>
<message>
<source>Available transmission lines are: Microstrip, Rectangular Waveguide, Coaxial Line and Coupled Microstrips.</source>
<translation>Les lignes disponibles sont : microruban, guide rectangulaire, coax et microruban couplé.</translation>
<translation type="obsolete">Les lignes disponibles sont : microruban, guide rectangulaire, coax et microruban couplé.</translation>
</message>
<message>
<source>Dismiss</source>
@ -10870,7 +10870,7 @@ ouvrir ceux-ci avec le programme ad-hoc.</translation>
</message>
<message>
<source>Microstrip</source>
<translation>Microruban</translation>
<translation type="obsolete">Microruban</translation>
</message>
<message>
<source>Rectangular Waveguide</source>
@ -11148,6 +11148,24 @@ ouvrir ceux-ci avec le programme ad-hoc.</translation>
<source>ErEff Odd</source>
<translation>Er(Eff)(impair)</translation>
</message>
<message>
<source>Microstrip Line</source>
<translation type="unfinished">Ligne microruban</translation>
</message>
<message>
<source>Coplanar Waveguide</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Grounded Coplanar</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Copyright (C) 2008 by Michael Margraf
</source>
<translation type="unfinished">© Copyright 2008 par Michael Margraf
</translation>
</message>
</context>
<context>
<name>QucsView</name>

View File

@ -822,10 +822,6 @@
<source>Help</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Available transmission lines are: Microstrip, Rectangular Waveguide, Coaxial Line and Coupled Microstrips.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Dismiss</source>
<translation type="unfinished"></translation>
@ -10264,10 +10260,6 @@ open files with an appropriate program.</source>
<source>Transmission Line Type</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Microstrip</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Rectangular Waveguide</source>
<translation type="unfinished"></translation>
@ -10540,6 +10532,24 @@ open files with an appropriate program.</source>
<source>ErEff Odd</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Microstrip Line</source>
<translation type="unfinished">קו microstrip</translation>
</message>
<message>
<source>Coplanar Waveguide</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Grounded Coplanar</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Copyright (C) 2008 by Michael Margraf
</source>
<translation type="unfinished">Copyright (C) 2008 by Michael Margraf
</translation>
</message>
</context>
<context>
<name>QucsView</name>

View File

@ -848,7 +848,7 @@
</message>
<message>
<source>Available transmission lines are: Microstrip, Rectangular Waveguide, Coaxial Line and Coupled Microstrips.</source>
<translation>Lehetséges átviteli vonalak: Mikroszalag, Négyszögjel, Coax vonal és Páros Mikroszalag.</translation>
<translation type="obsolete">Lehetséges átviteli vonalak: Mikroszalag, Négyszögjel, Coax vonal és Páros Mikroszalag.</translation>
</message>
<message>
<source>Dismiss</source>
@ -10795,7 +10795,7 @@ a fájlt a megfelelő program nyissa meg.</translation>
</message>
<message>
<source>Microstrip</source>
<translation>Mikrosztrip</translation>
<translation type="obsolete">Mikrosztrip</translation>
</message>
<message>
<source>Rectangular Waveguide</source>
@ -11078,6 +11078,24 @@ a fájlt a megfelelő program nyissa meg.</translation>
<source>ErEff Odd</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Microstrip Line</source>
<translation type="unfinished">Mikrosztrip Vonal</translation>
</message>
<message>
<source>Coplanar Waveguide</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Grounded Coplanar</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Copyright (C) 2008 by Michael Margraf
</source>
<translation type="unfinished">Copyright (C) 2008 by Michael Margraf
</translation>
</message>
</context>
<context>
<name>QucsView</name>

View File

@ -911,7 +911,7 @@
</message>
<message>
<source>Available transmission lines are: Microstrip, Rectangular Waveguide, Coaxial Line and Coupled Microstrips.</source>
<translation>Le linee di trasmissione disponibili sono: Microstrip, Guida d&apos;onda rettangolare Linea Coassiale and Microstrip accoppiate.</translation>
<translation type="obsolete">Le linee di trasmissione disponibili sono: Microstrip, Guida d&apos;onda rettangolare Linea Coassiale and Microstrip accoppiate.</translation>
</message>
<message>
<source>Dismiss</source>
@ -11239,7 +11239,7 @@ fine di aprirli utilizzando il programma appropriato.</translation>
</message>
<message>
<source>Microstrip</source>
<translation>Microstrip</translation>
<translation type="obsolete">Microstrip</translation>
</message>
<message>
<source>Rectangular Waveguide</source>
@ -11517,6 +11517,24 @@ fine di aprirli utilizzando il programma appropriato.</translation>
<source>ErEff Odd</source>
<translation>ErEff Dispari</translation>
</message>
<message>
<source>Microstrip Line</source>
<translation type="unfinished">Linea Microstrip</translation>
</message>
<message>
<source>Coplanar Waveguide</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Grounded Coplanar</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Copyright (C) 2008 by Michael Margraf
</source>
<translation type="unfinished">Copyright (C) 2008 by Michael Margraf
</translation>
</message>
</context>
<context>
<name>QucsView</name>

View File

@ -847,7 +847,7 @@
</message>
<message>
<source>Available transmission lines are: Microstrip, Rectangular Waveguide, Coaxial Line and Coupled Microstrips.</source>
<translation>有効なトランスミッションラインは: マイクロストリップ, , , </translation>
<translation type="obsolete">有効なトランスミッションラインは: マイクロストリップ, , , </translation>
</message>
<message>
<source>Dismiss</source>
@ -10467,7 +10467,7 @@ open files with an appropriate program.</source>
</message>
<message>
<source>Microstrip</source>
<translation></translation>
<translation type="obsolete"></translation>
</message>
<message>
<source>Rectangular Waveguide</source>
@ -10741,6 +10741,23 @@ open files with an appropriate program.</source>
<source>ErEff Odd</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Microstrip Line</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Coplanar Waveguide</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Grounded Coplanar</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Copyright (C) 2008 by Michael Margraf
</source>
<translation type="unfinished">Copyright (C) 2008 by Michael Margraf</translation>
</message>
</context>
<context>
<name>QucsView</name>

View File

@ -841,7 +841,7 @@
</message>
<message>
<source>Available transmission lines are: Microstrip, Rectangular Waveguide, Coaxial Line and Coupled Microstrips.</source>
<translation>Dostępne linie transmisyjne to: Linia mikropaskowa, Falowód prostokątny, Linia koncentryczna oraz Sprzężona linia mikropaskowa.</translation>
<translation type="obsolete">Dostępne linie transmisyjne to: Linia mikropaskowa, Falowód prostokątny, Linia koncentryczna oraz Sprzężona linia mikropaskowa.</translation>
</message>
<message>
<source>Dismiss</source>
@ -10699,7 +10699,7 @@ otworzyć ten plik odpowiednim programem.</translation>
</message>
<message>
<source>Microstrip</source>
<translation>Mikropaskowa</translation>
<translation type="obsolete">Mikropaskowa</translation>
</message>
<message>
<source>Rectangular Waveguide</source>
@ -10977,6 +10977,24 @@ otworzyć ten plik odpowiednim programem.</translation>
<source>Transmission line type not available.</source>
<translation>Niedostępny rodzaj linii transmisyjnej.</translation>
</message>
<message>
<source>Microstrip Line</source>
<translation type="unfinished">Linia mikropaskowa</translation>
</message>
<message>
<source>Coplanar Waveguide</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Grounded Coplanar</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Copyright (C) 2008 by Michael Margraf
</source>
<translation type="unfinished">Copyright (C) 2008 by Michael Margraf
</translation>
</message>
</context>
<context>
<name>QucsView</name>

View File

@ -813,10 +813,6 @@
<source>For each type of transmission line, using dialog boxes, you can enter values for the various parameters, and either calculate its electrical properties, or use the given electrical requirements to synthesize physical parameters of the required transmission line.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Available transmission lines are: Microstrip, Rectangular Waveguide, Coaxial Line and Coupled Microstrips.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Dismiss</source>
<translation type="unfinished"></translation>
@ -8562,10 +8558,6 @@ open files with an appropriate program.</source>
<source>Transmission Line Type</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Microstrip</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Rectangular Waveguide</source>
<translation type="unfinished"></translation>
@ -8838,6 +8830,24 @@ open files with an appropriate program.</source>
<source>Transmission line type not available.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Microstrip Line</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Coplanar Waveguide</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Grounded Coplanar</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Copyright (C) 2008 by Michael Margraf
</source>
<translation type="unfinished">Copyright (C) 2008 by Michael Margraf
</translation>
</message>
</context>
<context>
<name>SaveDialog</name>

View File

@ -809,10 +809,6 @@
<source>Help</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Available transmission lines are: Microstrip, Rectangular Waveguide, Coaxial Line and Coupled Microstrips.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Dismiss</source>
<translation type="unfinished"></translation>
@ -10353,10 +10349,6 @@ open files with an appropriate program.</source>
<source>Transmission Line Type</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Microstrip</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Rectangular Waveguide</source>
<translation type="unfinished"></translation>
@ -10629,6 +10621,24 @@ open files with an appropriate program.</source>
<source>ErEff Odd</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Microstrip Line</source>
<translation type="unfinished">Linie Microstrip</translation>
</message>
<message>
<source>Coplanar Waveguide</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Grounded Coplanar</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Copyright (C) 2008 by Michael Margraf
</source>
<translation type="unfinished">Copyright (C) 2008 de Michael Margraf
</translation>
</message>
</context>
<context>
<name>QucsView</name>

View File

@ -907,7 +907,7 @@
</message>
<message>
<source>Available transmission lines are: Microstrip, Rectangular Waveguide, Coaxial Line and Coupled Microstrips.</source>
<translation>Имеющиеся линии передачи: микрополосковая, прямоугольный волновод, коаксиальная линия и связанные микрополосковые линии.</translation>
<translation type="obsolete">Имеющиеся линии передачи: микрополосковая, прямоугольный волновод, коаксиальная линия и связанные микрополосковые линии.</translation>
</message>
<message>
<source>Dismiss</source>
@ -12741,7 +12741,7 @@ open files with an appropriate program.</source>
</message>
<message>
<source>Microstrip</source>
<translation>Микрополосковая линия</translation>
<translation type="obsolete">Микрополосковая линия</translation>
</message>
<message>
<source>Rectangular Waveguide</source>
@ -13019,6 +13019,25 @@ open files with an appropriate program.</source>
<source>ErEff Odd</source>
<translation>Эффективная Er для нечетной моды</translation>
</message>
<message>
<source>Microstrip Line</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Coplanar Waveguide</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Grounded Coplanar</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Copyright (C) 2008 by Michael Margraf
</source>
<translation type="unfinished">Copyright (C) 2008 Michael Margraf
</translation>
</message>
</context>
<context>
<name>QucsView</name>

View File

@ -800,7 +800,7 @@
</message>
<message>
<source>Available transmission lines are: Microstrip, Rectangular Waveguide, Coaxial Line and Coupled Microstrips.</source>
<translation>Tillgängliha transmissionsledningstyper är: mikrostrip, rektangulär vågledare, koaxialledning och kopplade mikrostrip.</translation>
<translation type="obsolete">Tillgängliha transmissionsledningstyper är: mikrostrip, rektangulär vågledare, koaxialledning och kopplade mikrostrip.</translation>
</message>
<message>
<source>Dismiss</source>
@ -10394,7 +10394,7 @@ open files with an appropriate program.</source>
</message>
<message>
<source>Microstrip</source>
<translation>Mikrostrip</translation>
<translation type="obsolete">Mikrostrip</translation>
</message>
<message>
<source>Rectangular Waveguide</source>
@ -10671,6 +10671,24 @@ open files with an appropriate program.</source>
<source>Transmission line type not available.</source>
<translation>Transmissionsledningstyp ej tillgänglig.</translation>
</message>
<message>
<source>Microstrip Line</source>
<translation type="unfinished">Mikrostripledning</translation>
</message>
<message>
<source>Coplanar Waveguide</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Grounded Coplanar</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Copyright (C) 2008 by Michael Margraf
</source>
<translation type="unfinished">Copyright (C) 2004, 2008 by Michael Margraf
</translation>
</message>
</context>
<context>
<name>QucsView</name>

View File

@ -796,7 +796,7 @@
</message>
<message>
<source>Available transmission lines are: Microstrip, Rectangular Waveguide, Coaxial Line and Coupled Microstrips.</source>
<translation>Kullanılabilecek iletim hatları: Mikrostrip, Dik Dörtgen Dalga kılavuzu, Eşeksenli Hat ve Çiftlenmiş Mikrostrip.</translation>
<translation type="obsolete">Kullanılabilecek iletim hatları: Mikrostrip, Dik Dörtgen Dalga kılavuzu, Eşeksenli Hat ve Çiftlenmiş Mikrostrip.</translation>
</message>
<message>
<source>Dismiss</source>
@ -10407,7 +10407,7 @@ uygun bir uygulama ile açılabilsinler.</translation>
</message>
<message>
<source>Microstrip</source>
<translation>Mikrostrip</translation>
<translation type="obsolete">Mikrostrip</translation>
</message>
<message>
<source>Rectangular Waveguide</source>
@ -10685,6 +10685,24 @@ uygun bir uygulama ile açılabilsinler.</translation>
<source>Transmission line type not available.</source>
<translation>İletim hattı çeşidi kullanılabilir değil.</translation>
</message>
<message>
<source>Microstrip Line</source>
<translation type="unfinished">Mikrostrip Hat</translation>
</message>
<message>
<source>Coplanar Waveguide</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Grounded Coplanar</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Copyright (C) 2008 by Michael Margraf
</source>
<translation type="unfinished">Çoğaltma hakkı/Telif (Ç) 2008, Michael Margraf
</translation>
</message>
</context>
<context>
<name>QucsView</name>

View File

@ -777,7 +777,7 @@
</message>
<message>
<source>Available transmission lines are: Microstrip, Rectangular Waveguide, Coaxial Line and Coupled Microstrips.</source>
<translation>Наявні лінії передачі: мікросмугова, прямокутний хвилевід, коаксіальна лінія та пов&apos;язані мікросмугові лінії.</translation>
<translation type="obsolete">Наявні лінії передачі: мікросмугова, прямокутний хвилевід, коаксіальна лінія та пов&apos;язані мікросмугові лінії.</translation>
</message>
<message>
<source>Dismiss</source>
@ -9243,7 +9243,7 @@ open files with an appropriate program.</source>
</message>
<message>
<source>Microstrip</source>
<translation>Мікросмугова лінія</translation>
<translation type="obsolete">Мікросмугова лінія</translation>
</message>
<message>
<source>Rectangular Waveguide</source>
@ -9537,6 +9537,24 @@ open files with an appropriate program.</source>
<source>Copyright (C) 2005 by Stefan Jahn
</source>
<translation>Copyright (C) 2005 Stefan Jahn
</translation>
</message>
<message>
<source>Microstrip Line</source>
<translation type="unfinished">Мікросмугова лінія</translation>
</message>
<message>
<source>Coplanar Waveguide</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Grounded Coplanar</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Copyright (C) 2008 by Michael Margraf
</source>
<translation type="unfinished">Copyright (С) 2008 Michael Margraf
</translation>
</message>
</context>