*** empty log message ***

git-svn-id: https://qucs.svn.sourceforge.net/svnroot/qucs/trunk@1026 b5b04e8c-4942-46c9-ab4f-83783d557d1c
This commit is contained in:
margraf 2006-11-27 07:29:25 +00:00
parent 7e052bfc8a
commit d39b8a9dc8
12 changed files with 144 additions and 19 deletions

View File

@ -1,3 +1,8 @@
2006-11-25 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* new symbol for ideal transmission line and coax line
* new component: 4-port transmission line
2006-11-05 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* new main menu: Positioning

View File

@ -42,7 +42,7 @@ XPMS = ac_voltage.png arrow.png capacitor.png dc_current.png dc_voltage.png \
noise_iv.png or.png nor.png and.png nand.png xor.png xnor.png digi.png \
inverter.png digi_source.png timing.png truth.png rsflipflop.png \
dflipflop.png jkflipflop.png coupler.png coaxial.png am_mod.png pm_mod.png \
vhdlfile.png subcircuit.png optimize.png
vhdlfile.png subcircuit.png optimize.png tline_4port.png
# toolbar pictures
PNGS = fileopen.png filesave.png editdelete.png editcut.png editcopy.png \

Binary file not shown.

Before

Width:  |  Height:  |  Size: 234 B

After

Width:  |  Height:  |  Size: 237 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 237 B

After

Width:  |  Height:  |  Size: 211 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 251 B

View File

@ -45,7 +45,7 @@ libcomponents_a_SOURCES = phaseshifter.cpp gyrator.cpp componentdialog.cpp \
logical_xnor.cpp logical_inv.cpp digi_sim.cpp digi_source.cpp coupler.cpp \
rs_flipflop.cpp d_flipflop.cpp jk_flipflop.cpp coaxialline.cpp vprobe.cpp \
switch.cpp relais.cpp am_modulator.cpp pm_modulator.cpp opt_sim.cpp \
optimizedialog.cpp \
optimizedialog.cpp tline_4port.cpp \
hicumL2p1.cpp HBT_X.cpp
nodist_libcomponents_a_SOURCES = $(MOCFILES)
@ -64,7 +64,7 @@ noinst_HEADERS = $(MOCHEADERS) resistor.h components.h capacitor.h vccs.h \
noise_vv.h logical_or.h logical_nor.h logical_and.h logical_nand.h \
logical_xor.h logical_xnor.h logical_inv.h digi_sim.h digi_source.h \
coupler.h rs_flipflop.h d_flipflop.h jk_flipflop.h coaxialline.h vprobe.h \
switch.h relais.h am_modulator.h pm_modulator.h opt_sim.h \
switch.h relais.h am_modulator.h pm_modulator.h opt_sim.h tline_4port.h \
hicumL2p1.h HBT_X.h
INCLUDES = $(X11_INCLUDES) $(QT_INCLUDES) -I$(top_srcdir)/qucs

View File

@ -29,7 +29,6 @@ CoaxialLine::CoaxialLine()
Lines.append(new Line( 19, 0, 30, 0,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-16, -9, 16, -9,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-16, 9, 16, 9,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-11, 0, 19, 0,QPen(QPen::darkBlue,1,Qt::DotLine)));
Ports.append(new Port(-30, 0));
Ports.append(new Port( 30, 0));

View File

@ -52,6 +52,7 @@
#include "vcvs.h"
#include "ccvs.h"
#include "tline.h"
#include "tline_4port.h"
#include "coaxialline.h"
#include "substrate.h"
#include "msline.h"

View File

@ -1,6 +1,6 @@
/***************************************************************************
tline.cpp - description
-------------------
tline.cpp
-----------
begin : Sat Aug 23 2003
copyright : (C) 2003 by Michael Margraf
email : michael.margraf@alumni.tu-berlin.de
@ -22,19 +22,23 @@ TLine::TLine()
{
Description = QObject::tr("ideal transmission line");
Arcs.append(new Arc(-20, -9, 8, 18, 0, 16*360,QPen(QPen::darkBlue,2)));
Arcs.append(new Arc( 11, -9, 8, 18,16*270, 16*180,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-30, 0, 30, 0,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-28, 7, 28, 7,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-30, 0,-16, 0,QPen(QPen::darkBlue,2)));
Lines.append(new Line( 19, 0, 30, 0,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-16, -9, 16, -9,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-16, 9, 16, 9,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-28, 14,-21, 7,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-21, 14,-14, 7,QPen(QPen::darkBlue,2)));
Lines.append(new Line(-14, 14, -7, 7,QPen(QPen::darkBlue,2)));
Lines.append(new Line( -7, 14, 0, 7,QPen(QPen::darkBlue,2)));
Lines.append(new Line( 0, 14, 7, 7,QPen(QPen::darkBlue,2)));
Lines.append(new Line( 7, 14, 14, 7,QPen(QPen::darkBlue,2)));
Lines.append(new Line( 14, 14, 21, 7,QPen(QPen::darkBlue,2)));
Lines.append(new Line( 21, 14, 28, 7,QPen(QPen::darkBlue,2)));
Ports.append(new Port(-30, 0));
Ports.append(new Port( 30, 0));
x1 = -30; y1 =-12;
x2 = 30; y2 = 12;
x1 = -30; y1 = -4;
x2 = 30; y2 = 16;
tx = x1+4;
ty = y2+4;

View File

@ -0,0 +1,84 @@
/***************************************************************************
tline_4port.cpp
-----------------
begin : Nov 12 2006
copyright : (C) 2006 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. *
* *
***************************************************************************/
#include "tline_4port.h"
TLine_4Port::TLine_4Port()
{
Description = QObject::tr("ideal 4-port transmission line");
Arcs.append(new Arc(-25,-36, 18, 38,16*230, 16*68,QPen(QPen::darkBlue,1)));
Arcs.append(new Arc(-25, -2, 18, 38, 16*62, 16*68,QPen(QPen::darkBlue,1)));
Arcs.append(new Arc(-17,-36, 18, 38,16*242, 16*56,QPen(QPen::darkBlue,1)));
Arcs.append(new Arc(-17, -2, 18, 38, 16*62, 16*56,QPen(QPen::darkBlue,1)));
Arcs.append(new Arc( -9,-36, 18, 38,16*242, 16*56,QPen(QPen::darkBlue,1)));
Arcs.append(new Arc( -9, -2, 18, 38, 16*62, 16*56,QPen(QPen::darkBlue,1)));
Arcs.append(new Arc( -1,-36, 18, 38,16*242, 16*56,QPen(QPen::darkBlue,1)));
Arcs.append(new Arc( -1, -2, 18, 38, 16*62, 16*56,QPen(QPen::darkBlue,1)));
Arcs.append(new Arc( 7,-36, 18, 38,16*242, 16*68,QPen(QPen::darkBlue,1)));
Arcs.append(new Arc( 7, -2, 18, 38, 16*50, 16*68,QPen(QPen::darkBlue,1)));
Arcs.append(new Arc(-40,-10, 20, 33, 16*32, 16*58,QPen(QPen::darkBlue,2)));
Arcs.append(new Arc(-40,-23, 20, 33,16*270, 16*58,QPen(QPen::darkBlue,2)));
Arcs.append(new Arc( 20,-10, 20, 33, 16*90, 16*58,QPen(QPen::darkBlue,2)));
Arcs.append(new Arc( 20,-23, 20, 33,16*212, 16*58,QPen(QPen::darkBlue,2)));
Ports.append(new Port(-30,-10));
Ports.append(new Port( 30,-10));
Ports.append(new Port( 30, 10));
Ports.append(new Port(-30, 10));
x1 = -30; y1 =-12;
x2 = 30; y2 = 12;
tx = x1+4;
ty = y2+4;
Model = "TLIN4P";
Name = "Line";
Props.append(new Property("Z", "50 Ohm", true,
QObject::tr("characteristic impedance")));
Props.append(new Property("L", "1 mm", true,
QObject::tr("electrical length of the line")));
Props.append(new Property("Alpha", "0 dB", false,
QObject::tr("attenuation factor per length in 1/m")));
Props.append(new Property("Temp", "26.85", false,
QObject::tr("simulation temperature in degree Celsius")));
}
TLine_4Port::~TLine_4Port()
{
}
Component* TLine_4Port::newOne()
{
return new TLine_4Port();
}
Element* TLine_4Port::info(QString& Name, char* &BitmapFile, bool getNewOne)
{
Name = QObject::tr("4-Port Transmission Line");
BitmapFile = "tline_4port";
if(getNewOne) return new TLine_4Port();
return 0;
}

View File

@ -0,0 +1,32 @@
/***************************************************************************
tline_4port.h
---------------
begin : Nov 15 2006
copyright : (C) 2006 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 TLINE_4PORT_H
#define TLINE_4PORT_H
#include "component.h"
class TLine_4Port : public Component {
public:
TLine_4Port();
~TLine_4Port();
Component* newOne();
static Element* info(QString&, char* &, bool getNewOne=false);
};
#endif

View File

@ -316,11 +316,11 @@ pInfoFunc Sources[] =
&Noise_iv::info, &AM_Modulator::info, &PM_Modulator::info, 0};
pInfoFunc TransmissionLines[] =
{&TLine::info, &CoaxialLine::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, &CPWshort::info, &CPWgap::info,
&CPWstep::info, 0};
{&TLine::info, &TLine_4Port::info, &CoaxialLine::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, &CPWshort::info,
&CPWgap::info, &CPWstep::info, 0};
pInfoFunc nonlinearComps[] =
{&Diode::info, &BJT::info, &BJT::info_pnp, &BJTsub::info,