qucs_s/qucs/components/volt_dc.cpp
2023-01-15 01:17:09 +03:00

84 lines
2.6 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 "misc.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(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
}
s += QString(" DC %1\n").arg(spicecompat::normalize_value(Props.at(0)->Value));
return s;
}
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;
}