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

153 lines
4.8 KiB
C++

/***************************************************************************
bjt.cpp
---------
begin : Fri Jun 4 2004
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 "bjt.h"
#include "node.h"
#include "extsimkernels/spicecompat.h"
BJT::BJT()
{
// properties obtained from "Basic_BJT" in bjtsub.cpp
Description = QObject::tr("bipolar junction transistor");
createSymbol();
tx = x2+4;
ty = y1+4;
Model = "_BJT";
SpiceModel="Q";
SpiceModelcards.append("NPN");
SpiceModelcards.append("PNP");
}
// -------------------------------------------------------
Component* BJT::newOne()
{
BJT* p = new BJT();
p->Props.front()->Value = Props.front()->Value;
p->recreate(0);
return p;
}
QString BJT::spice_netlist(spicecompat::SpiceDialect dialect /* = spicecompat::SPICEDefault */)
{
QString s = spicecompat::check_refdes(Name,SpiceModel);
QList<int> pin_seq;
pin_seq<<1<<0<<2; // Pin sequence: CBE
// output all node names
for (int pin : pin_seq) {
QString nam = Ports.at(pin)->Connection->Name;
if (nam=="gnd") nam = "0";
s += " "+ nam; // node names
}
QStringList spice_incompat,spice_tr;
spice_incompat<<"Type"<<"Area"<<"Temp"<<"Ffe"<<"Kb"<<"Ab"<<"Fb"<<"UseGlobTemp"; // spice-incompatible parameters
spice_tr.clear(); // parameters that need conversion of names
QString par_str = form_spice_param_list(spice_incompat,spice_tr);
const bool isDialectCDL(dialect == spicecompat::CDL);
if (getProperty("UseGlobTemp")->Value == "yes" || isDialectCDL) {
s += QStringLiteral(" QMOD_%1 %2=%3\n").arg(Name).arg(isDialectCDL ? "$EA" : "AREA").arg(getProperty("Area")->Value);
} else {
s += QStringLiteral(" QMOD_%1 AREA=%2 TEMP=%3\n").arg(Name).arg(getProperty("Area")->Value)
.arg(getProperty("Temp")->Value);
}
if (!isDialectCDL)
{
s += QStringLiteral(".MODEL QMOD_%1 %2 (%3)\n").arg(Name).arg(getProperty("Type")->Value).arg(par_str);
}
return s;
}
QString BJT::cdl_netlist()
{
return spice_netlist(spicecompat::CDL);
}
// -------------------------------------------------------
Element* BJT::info(QString& Name, char* &BitmapFile, bool getNewOne)
{
Name = QObject::tr("npn transistor");
BitmapFile = (char *) "npn";
if(getNewOne) return new BJT();
return 0;
}
// -------------------------------------------------------
Element* BJT::info_pnp(QString& Name, char* &BitmapFile, bool getNewOne)
{
Name = QObject::tr("pnp transistor");
BitmapFile = (char *) "pnp";
if(getNewOne) {
BJT* p = new BJT();
p->Props.at(0)->Value = "pnp";
p->recreate(0);
return p;
}
return 0;
}
// -------------------------------------------------------
void BJT::createSymbol()
{
Lines.append(new qucs::Line(-10,-15,-10, 15,QPen(Qt::darkBlue,3)));
Lines.append(new qucs::Line(-30, 0,-10, 0,QPen(Qt::darkBlue,2)));
Lines.append(new qucs::Line(-10, -5, 0,-15,QPen(Qt::darkBlue,2)));
Lines.append(new qucs::Line( 0,-15, 0,-30,QPen(Qt::darkBlue,2)));
Lines.append(new qucs::Line(-10, 5, 0, 15,QPen(Qt::darkBlue,2)));
Lines.append(new qucs::Line( 0, 15, 0, 30,QPen(Qt::darkBlue,2)));
if(Props.front()->Value == "npn") {
Lines.append(new qucs::Line( -6, 15, 0, 15,QPen(Qt::darkBlue,2)));
Lines.append(new qucs::Line( 0, 9, 0, 15,QPen(Qt::darkBlue,2)));
}
else {
Lines.append(new qucs::Line( -5, 10, -5, 16,QPen(Qt::darkBlue,2)));
Lines.append(new qucs::Line( -5, 10, 1, 10,QPen(Qt::darkBlue,2)));
}
Ports.append(new Port(-30, 0));
Ports.append(new Port( 0,-30));
Ports.append(new Port( 0, 30));
x1 = -30; y1 = -30;
x2 = 4; y2 = 30;
}
// -------------------------------------------------------
QString BJT::netlist()
{
QString s = "BJT:"+Name;
// output all node names
for (Port *p1 : Ports)
s += " "+p1->Connection->Name; // node names
s += " "+Ports.at(1)->Connection->Name; // connect substrate to collector
// output all properties
for(const auto& p2 : Props)
s += " "+p2->Name+"=\""+p2->Value+"\"";
return s + '\n';
}