2004-10-02 16:21:06 +00:00
|
|
|
/***************************************************************************
|
2006-02-27 07:10:33 +00:00
|
|
|
vrect.cpp
|
|
|
|
-----------
|
2004-10-02 16:21:06 +00:00
|
|
|
begin : Sat Sep 18 2004
|
|
|
|
copyright : (C) 2004 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 "vrect.h"
|
2014-10-21 15:50:43 +04:00
|
|
|
#include "node.h"
|
2015-01-09 18:33:12 +03:00
|
|
|
#include "misc.h"
|
2015-02-20 18:42:16 +03:00
|
|
|
#include "extsimkernels/spicecompat.h"
|
2004-10-02 16:21:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
vRect::vRect()
|
|
|
|
{
|
|
|
|
Description = QObject::tr("ideal rectangle voltage source");
|
|
|
|
|
2022-02-20 15:43:44 +01:00
|
|
|
Arcs.append(new qucs::Arc(-12,-12, 24, 24, 0, 16*360,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line(-30, 0,-12, 0,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line( 30, 0, 12, 0,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line( 18, 5, 18, 11,QPen(Qt::red,1)));
|
|
|
|
Lines.append(new qucs::Line( 21, 8, 15, 8,QPen(Qt::red,1)));
|
|
|
|
Lines.append(new qucs::Line(-18, 5,-18, 11,QPen(Qt::black,1)));
|
|
|
|
|
|
|
|
Lines.append(new qucs::Line( -5, -7, -5, -5,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line( -5, -5, 5, -5,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line( 5, -5, 6, 0,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line( -5, 0, 6, 0,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line( -5, 0, -5, 5,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line( -5, 5, 5, 5,QPen(Qt::darkBlue,2)));
|
|
|
|
Lines.append(new qucs::Line( 5, 5, 5, 7,QPen(Qt::darkBlue,2)));
|
2004-10-02 16:21:06 +00:00
|
|
|
|
|
|
|
Ports.append(new Port( 30, 0));
|
|
|
|
Ports.append(new Port(-30, 0));
|
|
|
|
|
|
|
|
x1 = -30; y1 = -14;
|
|
|
|
x2 = 30; y2 = 14;
|
|
|
|
|
|
|
|
tx = x1+4;
|
|
|
|
ty = y2+4;
|
|
|
|
Model = "Vrect";
|
|
|
|
Name = "V";
|
2014-10-21 15:50:43 +04:00
|
|
|
SpiceModel = "V";
|
2004-10-02 16:21:06 +00:00
|
|
|
|
|
|
|
Props.append(new Property("U", "1 V", true,
|
|
|
|
QObject::tr("voltage of high signal")));
|
|
|
|
Props.append(new Property("TH", "1 ms", true,
|
|
|
|
QObject::tr("duration of high pulses")));
|
|
|
|
Props.append(new Property("TL", "1 ms", true,
|
|
|
|
QObject::tr("duration of low pulses")));
|
2006-08-21 12:49:34 +00:00
|
|
|
Props.append(new Property("Tr", "1 ns", false,
|
|
|
|
QObject::tr("rise time of the leading edge")));
|
|
|
|
Props.append(new Property("Tf", "1 ns", false,
|
|
|
|
QObject::tr("fall time of the trailing edge")));
|
|
|
|
Props.append(new Property("Td", "0 ns", false,
|
2006-10-20 09:22:56 +00:00
|
|
|
QObject::tr("initial delay time")));
|
2006-02-27 07:10:33 +00:00
|
|
|
|
|
|
|
rotate(); // fix historical flaw
|
2004-10-02 16:21:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
vRect::~vRect()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-04-18 14:12:23 +03:00
|
|
|
QString vRect::spice_netlist(bool)
|
2014-10-21 15:50:43 +04:00
|
|
|
{
|
2015-02-20 18:42:16 +03:00
|
|
|
QString s = spicecompat::check_refdes(Name,SpiceModel);
|
2014-11-05 14:15:42 +04:00
|
|
|
|
2023-01-15 01:17:09 +03:00
|
|
|
for (Port *p1 : Ports) {
|
2014-10-21 15:50:43 +04:00
|
|
|
QString nam = p1->Connection->Name;
|
|
|
|
if (nam=="gnd") nam = "0";
|
|
|
|
s += " "+ nam; // node names
|
2014-11-06 16:49:02 +04:00
|
|
|
}
|
2014-10-21 15:50:43 +04:00
|
|
|
|
2015-03-23 19:15:18 +00:00
|
|
|
double T, TL, TH, Trval, Tfval, fac;
|
2014-10-21 15:50:43 +04:00
|
|
|
QString unit;
|
2014-10-23 14:58:16 +04:00
|
|
|
|
2015-03-23 19:15:18 +00:00
|
|
|
QString U = spicecompat::normalize_value(Props.at(0)->Value); //VH
|
2015-02-21 13:56:15 +03:00
|
|
|
QString Td = spicecompat::normalize_value(Props.at(5)->Value); // Td
|
|
|
|
QString Tr = spicecompat::normalize_value(Props.at(3)->Value); // Tr
|
|
|
|
QString Tf = spicecompat::normalize_value(Props.at(4)->Value); //Tf
|
2015-03-05 19:12:30 +03:00
|
|
|
misc::str2num(Props.at(1)->Value,TH,unit,fac); //TH
|
2015-03-23 19:15:18 +00:00
|
|
|
TH *= fac; // TH = pw
|
2015-03-05 19:12:30 +03:00
|
|
|
misc::str2num(Props.at(2)->Value,TL,unit,fac);
|
2014-10-21 15:50:43 +04:00
|
|
|
T = TL*fac+TH;
|
2015-03-23 19:15:18 +00:00
|
|
|
misc::str2num(Props.at(3)->Value,Trval,unit,fac);
|
|
|
|
T = Trval*fac+T;
|
|
|
|
misc::str2num(Props.at(4)->Value,Tfval,unit,fac);
|
|
|
|
T = Tfval*fac+T;
|
|
|
|
|
|
|
|
s += QString(" DC 0 PULSE( 0 %1 %2 %3 %4 %5 %6) AC 0\n").arg(U).arg(Td).arg(Tr).arg(Tf).arg(TH).arg(T);
|
2014-10-21 15:50:43 +04:00
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2004-10-02 16:21:06 +00:00
|
|
|
Component* vRect::newOne()
|
|
|
|
{
|
|
|
|
return new vRect();
|
|
|
|
}
|
|
|
|
|
2005-06-23 06:06:40 +00:00
|
|
|
Element* vRect::info(QString& Name, char* &BitmapFile, bool getNewOne)
|
2004-10-02 16:21:06 +00:00
|
|
|
{
|
|
|
|
Name = QObject::tr("Rectangle Voltage");
|
2007-09-17 21:57:02 +00:00
|
|
|
BitmapFile = (char *) "vrect";
|
2004-10-02 16:21:06 +00:00
|
|
|
|
|
|
|
if(getNewOne) return new vRect();
|
|
|
|
return 0;
|
|
|
|
}
|