2023-01-15 01:17:09 +03:00

120 lines
4.3 KiB
C++

/***************************************************************************
S4Q_S.cpp - description
--------------------------------------
begin : Fri Mar 9 2007
copyright : (C) 2007 by Gunther Kraut
email : gn.kraut@t-online.de
spice4qucs code added Tue. 16 Sept. 2015
copyright : (C) 2015 by Mike Brinson
email : mbrin72043@yahoo.co.uk
***************************************************************************/
/***************************************************************************
* *
* 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 "S4Q_S.h"
#include "node.h"
#include "misc.h"
#include "extsimkernels/spicecompat.h"
S4Q_S::S4Q_S()
{
Description = QObject::tr("SPICE S:\nMultiple line ngspice or Xyce S specifications allowed using \"+\" continuation lines.\nLeave continuation lines blank when NOT in use. ");
Lines.append(new qucs::Line(-15, -15, -15, 15,QPen(Qt::darkRed,3)));
Lines.append(new qucs::Line(-15, 15, 15, 15,QPen(Qt::darkRed,3)));
Lines.append(new qucs::Line( 15, 15, 15,-15,QPen(Qt::darkRed,3)));
Lines.append(new qucs::Line( 15, -15, -15, -15,QPen(Qt::darkRed,3)));
Lines.append(new qucs::Line(-30, 0, -15, 0,QPen(Qt::darkBlue,2)));
Lines.append(new qucs::Line(-15, 0, -5, 0,QPen(Qt::darkRed,3)));
Lines.append(new qucs::Line( 30, 0, 15, 0,QPen(Qt::darkBlue,2)));
Lines.append(new qucs::Line( 15, 0, 5, 0,QPen(Qt::darkRed,3)));
Lines.append(new qucs::Line( 5, 0, 0, 8,QPen(Qt::darkRed,3)));
Lines.append(new qucs::Line(-10, -30, -10, -15,QPen(Qt::darkBlue,2)));
Lines.append(new qucs::Line( 10, -30, 10, -15,QPen(Qt::darkBlue,2)));
Lines.append(new qucs::Line(22, -20, 18, -20,QPen(Qt::red,2)));
Lines.append(new qucs::Line(20, -22, 20,-18,QPen(Qt::red,2)));
Lines.append(new qucs::Line(-20, -22, -20,-18,QPen(Qt::black,2)));
Ports.append(new Port(-30, 0)); // Ps+
Ports.append(new Port( 30, 0)); // Ps-
Ports.append(new Port( 10,-30)); // Pc+
Ports.append(new Port(-10,-30)); // Pc-
x1 = -30; y1 = -15;
x2 = 40; y2 = 15;
tx = x1+4;
ty = y2+4;
Model = "S4Q_S";
SpiceModel = "S";
Name = "S";
Props.append(new Property("S", "", true,"S param list and\n .model spec."));
Props.append(new Property("S_Line 2", "", false,"+ continuation line 1"));
Props.append(new Property("S_Line 3", "", false,"+ continuation line 2"));
Props.append(new Property("S_Line 4", "", false,"+ continuation line 3"));
Props.append(new Property("S_Line 5", "", false,"+ continuation line 4"));
rotate(); // fix historical flaw
}
S4Q_S::~S4Q_S()
{
}
Component* S4Q_S::newOne()
{
return new S4Q_S();
}
Element* S4Q_S::info(QString& Name, char* &BitmapFile, bool getNewOne)
{
Name = QObject::tr(" S(SW)");
BitmapFile = (char *) "S4Q_S";
if(getNewOne) return new S4Q_S();
return 0;
}
//QString S4Q_S::netlist()
//{
// return QString("");
//}
QString S4Q_S::spice_netlist(bool)
{
QString s = spicecompat::check_refdes(Name,SpiceModel);
for (Port *p1 : Ports) {
QString nam = p1->Connection->Name;
if (nam=="gnd") nam = "0";
s += " "+ nam+" "; // node names
}
QString S= Props.at(0)->Value;
QString S_Line_2= Props.at(1)->Value;
QString S_Line_3= Props.at(2)->Value;
QString S_Line_4= Props.at(3)->Value;
QString S_Line_5= Props.at(4)->Value;
if( S.length() > 0) s += QString("%1").arg(S);
if( S_Line_2.length() > 0 ) s += QString("\n%1").arg(S_Line_2);
if( S_Line_3.length() > 0 ) s += QString("\n%1").arg(S_Line_3);
if( S_Line_4.length() > 0 ) s += QString("\n%1").arg(S_Line_4);
if( S_Line_5.length() > 0) s += QString("\n%1").arg(S_Line_5);
s += "\n";
return s;
}