mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
77 lines
2.7 KiB
C++
77 lines
2.7 KiB
C++
/***************************************************************************
|
|
sp_sim.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 "sp_sim.h"
|
|
#include "../main.h"
|
|
|
|
|
|
SP_Sim::SP_Sim()
|
|
{
|
|
Description = QObject::tr("S parameter simulation");
|
|
|
|
QString s = Description;
|
|
s[s.findRev(" ")] = '\n'; // break line before the word "simulation"
|
|
QFontMetrics metrics(QucsSettings.largeFont);
|
|
QRect r = metrics.boundingRect(0,0,0,0, Qt::AlignAuto, s);
|
|
int xb = (r.width() >> 1) + 6;
|
|
int yb = (r.height() >> 1) + 4;
|
|
|
|
Lines.append(new Line(-xb,-yb, xb,-yb,QPen(QPen::darkBlue,2)));
|
|
Lines.append(new Line(-xb, yb, xb, yb,QPen(QPen::darkBlue,2)));
|
|
Lines.append(new Line(-xb,-yb,-xb, yb,QPen(QPen::darkBlue,2)));
|
|
Lines.append(new Line( xb,-yb, xb, yb,QPen(QPen::darkBlue,2)));
|
|
|
|
Lines.append(new Line(-xb+5, yb+5, xb+4, yb+5,QPen(QPen::darkBlue,2)));
|
|
Lines.append(new Line(-xb, yb, -xb+5, yb+5,QPen(QPen::darkBlue,2)));
|
|
Lines.append(new Line( xb, yb, xb+4, yb+5,QPen(QPen::darkBlue,2)));
|
|
Lines.append(new Line( xb+4,-yb+5, xb+4, yb+5,QPen(QPen::darkBlue,2)));
|
|
Lines.append(new Line( xb, -yb, xb+4,-yb+5,QPen(QPen::darkBlue,2)));
|
|
|
|
x1 = -xb-4; y1 = -yb-4;
|
|
x2 = xb+8; y2 = yb+9;
|
|
|
|
tx = x1+4;
|
|
ty = y2+4;
|
|
Model = ".SP";
|
|
Name = "SP";
|
|
|
|
Props.append(new Property("Start", "1 GHz", true,
|
|
QObject::tr("start frequency in Hertz")));
|
|
Props.append(new Property("Stop", "10 GHz", true,
|
|
QObject::tr("stop frequency in Hertz")));
|
|
Props.append(new Property("Step", "1 GHz", true,
|
|
QObject::tr("frequency steps in Hertz")));
|
|
}
|
|
|
|
SP_Sim::~SP_Sim()
|
|
{
|
|
}
|
|
|
|
Component* SP_Sim::newOne()
|
|
{
|
|
return new SP_Sim();
|
|
}
|
|
|
|
Component* SP_Sim::info(QString& Name, char* &BitmapFile, bool getNewOne)
|
|
{
|
|
Name = QObject::tr("S-parameter simulation");
|
|
BitmapFile = "sparameter";
|
|
|
|
if(getNewOne) return new SP_Sim();
|
|
return 0;
|
|
}
|