qucs_s/qucs/spicecomponents/PJF_SPICE.cpp
ThomasZecha 909f02340d New feature CDL netlist export
-introduced new type spicecompat::SpiceDialect to distinguish SPICE,
 Xyce and CDL
-adapt dependent components accordingly

Signed-off-by: ThomasZecha <zecha@ihp-microelectronics.com>
2024-12-30 16:52:35 +01:00

127 lines
4.4 KiB
C++

/***************************************************************************
PJF_SPICE.cpp - description
--------------------------------------
begin : Fri Mar 9 2007
copyright : (C) 2007 by Gunther Kraut
email : gn.kraut@t-online.de
spice4qucs code added Fri. 29 May 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 "PJF_SPICE.h"
#include "node.h"
#include "extsimkernels/spicecompat.h"
PJF_SPICE::PJF_SPICE()
{
Description = QObject::tr("J(PJF) JFET:\nMultiple line ngspice or Xyce J model specifications allowed using \"+\" continuation lines.\nLeave continuation lines blank when NOT in use.");
Simulator = spicecompat::simSpice;
Lines.append(new qucs::Line(-10,-15,-10, 15,QPen(Qt::darkRed,3)));
Lines.append(new qucs::Line(-30, 0,-20, 0,QPen(Qt::darkBlue,3)));
Lines.append(new qucs::Line(-20, 0,-10, 0,QPen(Qt::darkRed,3)));
Lines.append(new qucs::Line(-10,-10, 0,-10,QPen(Qt::darkRed,3)));
Lines.append(new qucs::Line( 0,-10, 0,-20,QPen(Qt::darkRed,3)));
Lines.append(new qucs::Line( 0,-20, 0,-30,QPen(Qt::darkBlue,3)));
Lines.append(new qucs::Line(-10, 10, 0, 10,QPen(Qt::darkRed,3)));
Lines.append(new qucs::Line( 0, 10, 0, 20,QPen(Qt::darkRed,3)));
Lines.append(new qucs::Line( 0, 20, 0, 30,QPen(Qt::darkBlue,3)));
Lines.append(new qucs::Line(-16, -5,-21, 0,QPen(Qt::darkRed,3)));
Lines.append(new qucs::Line(-16, 5,-21, 0,QPen(Qt::darkRed,3)));
Lines.append(new qucs::Line( -4, 24, 4, 20,QPen(Qt::darkRed,2)));
//Texts.append(new Text(30,12,"PJF",Qt::darkRed,10.0,0.0,-1.0));
Ports.append(new Port( 0,-30)); //D
Ports.append(new Port(-30, 0)); //G
Ports.append(new Port( 0, 30)); //S
x1 = -30; y1 = -30;
x2 = 4; y2 = 30;
tx = x1+4;
ty = y2+4;
Model = "PJF_SPICE";
SpiceModel = "J";
Name = "J";
Props.append(new Property("J", "", true,"Param list and\n .model spec."));
Props.append(new Property("J_Line 2", "", false,"+ continuation line 1"));
Props.append(new Property("J_Line 3", "", false,"+ continuation line 2"));
Props.append(new Property("J_Line 4", "", false,"+ continuation line 3"));
Props.append(new Property("J_Line 5", "", false,"+ continuation line 4"));
}
PJF_SPICE::~PJF_SPICE()
{
}
Component* PJF_SPICE::newOne()
{
return new PJF_SPICE();
}
Element* PJF_SPICE::info(QString& Name, char* &BitmapFile, bool getNewOne)
{
Name = QObject::tr("J(PJF) JFET");
BitmapFile = (char *) "PJF_SPICE";
if(getNewOne) return new PJF_SPICE();
return 0;
}
QString PJF_SPICE::netlist()
{
return QString();
}
QString PJF_SPICE::spice_netlist(spicecompat::SpiceDialect dialect /* = spicecompat::SPICEDefault */)
{
Q_UNUSED(dialect);
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 J= Props.at(0)->Value;
QString J_Line_2= Props.at(1)->Value;
QString J_Line_3= Props.at(2)->Value;
QString J_Line_4= Props.at(3)->Value;
QString J_Line_5= Props.at(4)->Value;
if( J.length() > 0) s += QStringLiteral("%1").arg(J);
if( J_Line_2.length() > 0 ) s += QStringLiteral("\n%1").arg(J_Line_2);
if( J_Line_3.length() > 0 ) s += QStringLiteral("\n%1").arg(J_Line_3);
if( J_Line_4.length() > 0 ) s += QStringLiteral("\n%1").arg(J_Line_4);
if( J_Line_5.length() > 0 ) s += QStringLiteral("\n%1").arg(J_Line_5);
s += "\n";
return s;
}
QString PJF_SPICE::cdl_netlist()
{
return spice_netlist(spicecompat::CDL);
}