2004-02-08 17:50:55 +00:00
|
|
|
/***************************************************************************
|
|
|
|
msmbend.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
|
2004-02-08 17:50:55 +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 "msmbend.h"
|
2023-06-09 13:54:29 +03:00
|
|
|
#include "extsimkernels/spicecompat.h"
|
2004-02-08 17:50:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
MSmbend::MSmbend()
|
|
|
|
{
|
|
|
|
Description = QObject::tr("microstrip mitered bend");
|
2023-06-09 13:54:29 +03:00
|
|
|
Simulator = spicecompat::simQucsator;
|
2004-02-08 17:50:55 +00:00
|
|
|
|
2022-02-20 15:43:44 +01:00
|
|
|
Lines.append(new qucs::Line(-30, 0,-18, 0,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line( 0, 18, 0, 30,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line(-18, -8, -8, -8,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line( -8, -8, 8, 8,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line(-18, 8, -8, 8,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line(-18, -8,-18, 8,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line( -8, 8, -8, 18,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line( 8, 8, 8, 18,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line( -8, 18, 8, 18,QPen(Qt::darkBlue,2)));
|
2004-02-08 17:50:55 +00:00
|
|
|
|
|
|
|
Ports.append(new Port(-30, 0));
|
|
|
|
Ports.append(new Port( 0,30));
|
|
|
|
|
2004-07-28 18:57:52 +00:00
|
|
|
x1 = -30; y1 =-11;
|
|
|
|
x2 = 11; y2 = 30;
|
2004-02-08 17:50:55 +00:00
|
|
|
|
2004-07-25 16:58:44 +00:00
|
|
|
tx = x2+4;
|
|
|
|
ty = y1+4;
|
2023-10-20 19:10:18 +03:00
|
|
|
icon_dx = 6;
|
|
|
|
icon_dy = -6;
|
2004-02-08 17:50:55 +00:00
|
|
|
Model = "MMBEND";
|
|
|
|
Name = "MS";
|
|
|
|
|
2004-06-06 14:13:59 +00:00
|
|
|
Props.append(new Property("Subst", "Subst1", true,
|
|
|
|
QObject::tr("substrate")));
|
2004-07-25 16:58:44 +00:00
|
|
|
Props.append(new Property("W", "1 mm", true,
|
|
|
|
QObject::tr("width of line")));
|
2004-02-08 17:50:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MSmbend::~MSmbend()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2004-06-06 14:13:59 +00:00
|
|
|
Component* MSmbend::newOne()
|
2004-02-08 17:50:55 +00:00
|
|
|
{
|
|
|
|
return new MSmbend();
|
|
|
|
}
|
2004-06-06 14:13:59 +00:00
|
|
|
|
2005-06-23 06:06:40 +00:00
|
|
|
Element* MSmbend::info(QString& Name, char* &BitmapFile, bool getNewOne)
|
2004-06-06 14:13:59 +00:00
|
|
|
{
|
|
|
|
Name = QObject::tr("Microstrip Mitered Bend");
|
2007-09-17 21:57:02 +00:00
|
|
|
BitmapFile = (char *) "msmbend";
|
2004-06-06 14:13:59 +00:00
|
|
|
|
|
|
|
if(getNewOne) return new MSmbend();
|
|
|
|
return 0;
|
|
|
|
}
|