qucs_s/qucs/components/logical_inv.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

169 lines
5.4 KiB
C++

/***************************************************************************
logical_inv.cpp
-----------------
begin : Wed Sep 28 2005
copyright : (C) 2005 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 "logical_inv.h"
#include "node.h"
#include "misc.h"
#include "extsimkernels/spicecompat.h"
Logical_Inv::Logical_Inv()
{
Type = isComponent; // both analog and digital
Description = QObject::tr("logical inverter");
// the list order must be preserved !!!
Props.append(new Property("V", "1 V", false,
QObject::tr("voltage of high level")));
Props.append(new Property("t", "1 ns", false,
QObject::tr("delay time")));
Props.append(new Property("TR", "10", false,
QObject::tr("transfer function scaling factor")));
// this must be the last property in the list !!!
Props.append(new Property("Symbol", "old", false,
QObject::tr("schematic symbol")+" [old, DIN40900]"));
createSymbol();
tx = x1+4;
ty = y2+4;
Model = "Inv";
Name = "Y";
SpiceModel = "A";
}
// -------------------------------------------------------
QString Logical_Inv::vhdlCode(int NumPorts)
{
QString s = " " + Ports.first()->Connection->Name + " <= not " +
Ports.last()->Connection->Name;
if(NumPorts <= 0) { // no truth table simulation ?
QString td = Props.at(1)->Value;
if(!misc::VHDL_Delay(td, Name)) return td;
s += td;
}
s += ";\n";
return s;
}
// -------------------------------------------------------
QString Logical_Inv::verilogCode(int NumPorts)
{
bool synthesize = true;
Port *pp = Ports.at(0);
QString s ("");
if (synthesize) {
s = " assign";
if(NumPorts <= 0) { // no truth table simulation ?
QString td = Props.at(1)->Value;
if(!misc::Verilog_Delay(td, Name)) return td;
s += td;
}
s += " ";
s += pp->Connection->Name + " = "; // output port
pp = Ports.at(1);
s += "~" + pp->Connection->Name; // input port
s += ";\n";
}
else {
s = " not";
if(NumPorts <= 0) { // no truth table simulation ?
QString td = Props.at(1)->Value;
if(!misc::Verilog_Delay(td, Name))
return td; // time has not VHDL format
s += td;
}
s += " " + Name + " (" + pp->Connection->Name; // output port
pp = Ports.at(1);
s += ", " + pp->Connection->Name; // first input port
s += ");\n";
}
return s;
}
// -------------------------------------------------------
void Logical_Inv::createSymbol()
{
int xr;
if(Props.back()->Value.at(0) == 'D') { // DIN symbol
Lines.append(new qucs::Line( 15,-20, 15, 20,QPen(Qt::darkBlue,2)));
Lines.append(new qucs::Line(-15,-20, 15,-20,QPen(Qt::darkBlue,2)));
Lines.append(new qucs::Line(-15, 20, 15, 20,QPen(Qt::darkBlue,2)));
Lines.append(new qucs::Line(-15,-20,-15, 20,QPen(Qt::darkBlue,2)));
Texts.append(new Text(-11,-17, "1", Qt::darkBlue, 15.0));
xr = 15;
}
else { // old symbol
Lines.append(new qucs::Line(-10,-20,-10,20, QPen(Qt::darkBlue,2)));
Arcs.append(new qucs::Arc(-30,-20, 40, 30, 0, 16*90,QPen(Qt::darkBlue,2)));
Arcs.append(new qucs::Arc(-30,-10, 40, 30, 0,-16*90,QPen(Qt::darkBlue,2)));
Lines.append(new qucs::Line( 10,-5, 10, 5,QPen(Qt::darkBlue,2)));
xr = 10;
}
Ellipses.append(new qucs::Ellips(xr,-4, 8, 8,
QPen(Qt::darkBlue,0), QBrush(Qt::darkBlue)));
Lines.append(new qucs::Line( xr, 0, 30, 0, QPen(Qt::darkBlue,2)));
Lines.append(new qucs::Line(-30, 0,-xr, 0, QPen(Qt::darkBlue,2)));
Ports.append(new Port( 30, 0));
Ports.append(new Port(-30, 0));
x1 = -30; y1 = -23;
x2 = 30; y2 = 23;
}
// -------------------------------------------------------
Component* Logical_Inv::newOne()
{
Logical_Inv* p = new Logical_Inv();
p->Props.back()->Value = Props.back()->Value;
p->recreate(0);
return p;
}
// -------------------------------------------------------
Element* Logical_Inv::info(QString& Name, char* &BitmapFile, bool getNewOne)
{
Name = QObject::tr("Inverter");
BitmapFile = (char *) "inverter";
if(getNewOne) return new Logical_Inv();
return 0;
}
QString Logical_Inv::spice_netlist(spicecompat::SpiceDialect dialect /* = spicecompat::SPICEDefault */)
{
if (dialect == spicecompat::SPICEXyce) return QString();
QString s = SpiceModel + Name;
QString tmp_model = "model_" + Name;
QString td = spicecompat::normalize_value(getProperty("t")->Value);
s += " " + Ports.at(1)->Connection->Name;
s += " " + Ports.at(0)->Connection->Name;
s += " " + tmp_model + "\n";
s += QStringLiteral(".model %1 d_inverter(rise_delay=%2 fall_delay=%2 input_load=5e-13)\n")
.arg(tmp_model).arg(td);
return s;
}