qucs_s/qucs/components/msmbend.cpp
2023-10-20 19:10:18 +03:00

73 lines
2.5 KiB
C++

/***************************************************************************
msmbend.cpp - description
-------------------
begin : Sat Aug 23 2003
copyright : (C) 2003 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 "msmbend.h"
#include "extsimkernels/spicecompat.h"
MSmbend::MSmbend()
{
Description = QObject::tr("microstrip mitered bend");
Simulator = spicecompat::simQucsator;
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)));
Ports.append(new Port(-30, 0));
Ports.append(new Port( 0,30));
x1 = -30; y1 =-11;
x2 = 11; y2 = 30;
tx = x2+4;
ty = y1+4;
icon_dx = 6;
icon_dy = -6;
Model = "MMBEND";
Name = "MS";
Props.append(new Property("Subst", "Subst1", true,
QObject::tr("substrate")));
Props.append(new Property("W", "1 mm", true,
QObject::tr("width of line")));
}
MSmbend::~MSmbend()
{
}
Component* MSmbend::newOne()
{
return new MSmbend();
}
Element* MSmbend::info(QString& Name, char* &BitmapFile, bool getNewOne)
{
Name = QObject::tr("Microstrip Mitered Bend");
BitmapFile = (char *) "msmbend";
if(getNewOne) return new MSmbend();
return 0;
}