qucs_s/qucs/components/msline.cpp

78 lines
2.7 KiB
C++
Raw Normal View History

2003-12-26 16:31:25 +00:00
/***************************************************************************
msline.cpp - description
-------------------
begin : Sat Aug 23 2003
copyright : (C) 2003 by Michael Margraf
2004-06-16 17:41:33 +00:00
email : michael.margraf@alumni.tu-berlin.de
2003-12-26 16:31:25 +00:00
***************************************************************************/
/***************************************************************************
* *
* 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 "msline.h"
2023-06-09 13:54:29 +03:00
#include "extsimkernels/spicecompat.h"
2003-12-26 16:31:25 +00:00
MSline::MSline()
{
2004-01-31 21:27:38 +00:00
Description = QObject::tr("microstrip line");
2023-06-09 13:54:29 +03:00
Simulator = spicecompat::simQucsator;
2003-12-26 16:31:25 +00:00
Lines.append(new qucs::Line(-30, 0,-18, 0,QPen(Qt::darkBlue,2)));
Lines.append(new qucs::Line( 18, 0, 30, 0,QPen(Qt::darkBlue,2)));
Lines.append(new qucs::Line(-13, -8, 23, -8,QPen(Qt::darkBlue,2)));
Lines.append(new qucs::Line(-23, 8, 13, 8,QPen(Qt::darkBlue,2)));
Lines.append(new qucs::Line(-13, -8,-23, 8,QPen(Qt::darkBlue,2)));
Lines.append(new qucs::Line( 23, -8, 13, 8,QPen(Qt::darkBlue,2)));
2003-12-26 16:31:25 +00:00
Ports.append(new Port(-30, 0));
Ports.append(new Port( 30, 0));
x1 = -30; y1 =-11;
x2 = 30; y2 = 11;
tx = x1+4;
ty = y2+4;
Model = "MLIN";
Name = "MS";
2004-06-06 14:13:59 +00:00
Props.append(new Property("Subst", "Subst1", true,
QObject::tr("name of substrate definition")));
2004-06-06 14:13:59 +00:00
Props.append(new Property("W", "1 mm", true,
QObject::tr("width of the line")));
2004-06-06 14:13:59 +00:00
Props.append(new Property("L", "10 mm", true,
QObject::tr("length of the line")));
2004-06-24 12:49:12 +00:00
Props.append(new Property("Model", "Hammerstad", false,
QObject::tr("quasi-static microstrip model")+
" [Hammerstad, Wheeler, Schneider]"));
2004-06-24 12:49:12 +00:00
Props.append(new Property("DispModel", "Kirschning", false,
QObject::tr("microstrip dispersion model")+" [Kirschning, Kobayashi, "
"Yamashita, Hammerstad, Getsinger, Schneider, Pramanick]"));
Props.append(new Property("Temp", "26.85", false,
QObject::tr("simulation temperature in degree Celsius")));
2003-12-26 16:31:25 +00:00
}
MSline::~MSline()
{
}
2004-06-06 14:13:59 +00:00
Component* MSline::newOne()
2003-12-26 16:31:25 +00:00
{
return new MSline();
}
2004-06-06 14:13:59 +00:00
2005-06-23 06:06:40 +00:00
Element* MSline::info(QString& Name, char* &BitmapFile, bool getNewOne)
2004-06-06 14:13:59 +00:00
{
Name = QObject::tr("Microstrip Line");
BitmapFile = (char *) "msline";
2004-06-06 14:13:59 +00:00
if(getNewOne) return new MSline();
return 0;
}