mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00

-introduced new type spicecompat::SpiceDialect to distinguish SPICE, Xyce and CDL -adapt dependent components accordingly Signed-off-by: ThomasZecha <zecha@ihp-microelectronics.com>
89 lines
2.8 KiB
C++
89 lines
2.8 KiB
C++
/***************************************************************************
|
|
volt_dc.cpp
|
|
-------------
|
|
begin : Sat Aug 23 2003
|
|
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 "volt_dc.h"
|
|
#include "node.h"
|
|
#include "extsimkernels/spicecompat.h"
|
|
|
|
|
|
Volt_dc::Volt_dc()
|
|
{
|
|
Description = QObject::tr("ideal dc voltage source");
|
|
|
|
Lines.append(new qucs::Line( 4,-13, 4, 13,QPen(Qt::darkBlue,2)));
|
|
Lines.append(new qucs::Line( -4, -6, -4, 6,QPen(Qt::darkBlue,4)));
|
|
Lines.append(new qucs::Line( 30, 0, 4, 0,QPen(Qt::darkBlue,2)));
|
|
Lines.append(new qucs::Line( -4, 0,-30, 0,QPen(Qt::darkBlue,2)));
|
|
Lines.append(new qucs::Line( 11, 5, 11, 11,QPen(Qt::red,1)));
|
|
Lines.append(new qucs::Line( 14, 8, 8, 8,QPen(Qt::red,1)));
|
|
Lines.append(new qucs::Line(-11, 5,-11, 11,QPen(Qt::black,1)));
|
|
|
|
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 = "Vdc";
|
|
Name = "V";
|
|
SpiceModel = "V";
|
|
|
|
Props.append(new Property("U", "1 V", true,
|
|
QObject::tr("voltage in Volts")));
|
|
|
|
rotate(); // fix historical flaw
|
|
}
|
|
|
|
Volt_dc::~Volt_dc()
|
|
{
|
|
}
|
|
|
|
Component* Volt_dc::newOne()
|
|
{
|
|
return new Volt_dc();
|
|
}
|
|
|
|
QString Volt_dc::spice_netlist(spicecompat::SpiceDialect dialect /* = spicecompat::SPICEDefault */)
|
|
{
|
|
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
|
|
}
|
|
|
|
s += QStringLiteral(" %1%2\n").arg(dialect == spicecompat::CDL ? "" : "DC ").arg(spicecompat::normalize_value(Props.at(0)->Value));
|
|
|
|
return s;
|
|
}
|
|
|
|
QString Volt_dc::cdl_netlist()
|
|
{
|
|
return spice_netlist(spicecompat::CDL);
|
|
}
|
|
|
|
Element* Volt_dc::info(QString& Name, char* &BitmapFile, bool getNewOne)
|
|
{
|
|
Name = QObject::tr("dc Voltage Source");
|
|
BitmapFile = (char *) "dc_voltage";
|
|
|
|
if(getNewOne) return new Volt_dc();
|
|
return 0;
|
|
}
|