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>
92 lines
2.8 KiB
C++
92 lines
2.8 KiB
C++
/***************************************************************************
|
|
ampere_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 "ampere_dc.h"
|
|
#include "node.h"
|
|
#include "extsimkernels/spicecompat.h"
|
|
|
|
|
|
Ampere_dc::Ampere_dc()
|
|
{
|
|
Description = QObject::tr("ideal dc current source");
|
|
|
|
Arcs.append(new qucs::Arc(-12,-12, 24, 24, 0, 16*360,QPen(Qt::darkBlue,2)));
|
|
Lines.append(new qucs::Line(-30, 0,-12, 0,QPen(Qt::darkBlue,2)));
|
|
Lines.append(new qucs::Line( 30, 0, 12, 0,QPen(Qt::darkBlue,2)));
|
|
|
|
// arrow stem
|
|
Lines.append(new qucs::Line( -8.5, 0, 6, 0,QPen(Qt::darkBlue,3, Qt::SolidLine, Qt::FlatCap)));
|
|
// arrow head
|
|
Polylines.append(new qucs::Polyline(
|
|
std::vector<QPointF>{{0, -4},{6, 0}, {0, 4}}, QPen(Qt::darkBlue, 3, Qt::SolidLine, Qt::SquareCap, Qt::MiterJoin)));
|
|
|
|
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 = "Idc";
|
|
Name = "I";
|
|
SpiceModel = "I";
|
|
|
|
Props.append(new Property("I", "1 mA", true,
|
|
QObject::tr("current in Ampere")));
|
|
|
|
rotate(); // fix historical flaw
|
|
}
|
|
|
|
Ampere_dc::~Ampere_dc()
|
|
{
|
|
}
|
|
|
|
QString Ampere_dc::spice_netlist(spicecompat::SpiceDialect dialect /* = spicecompat::SPICEDefault */)
|
|
{
|
|
Q_UNUSED(dialect);
|
|
|
|
QString s = spicecompat::check_refdes(Name,SpiceModel);
|
|
|
|
QString plus = Ports.at(1)->Connection->Name;
|
|
if (plus=="gnd") plus = "0";
|
|
QString minus = Ports.at(0)->Connection->Name;
|
|
if (minus=="gnd") minus = "0";
|
|
s += QStringLiteral(" %1 %2 DC %3\n").arg(plus).arg(minus)
|
|
.arg(spicecompat::normalize_value(Props.at(0)->Value));
|
|
return s;
|
|
}
|
|
|
|
QString Ampere_dc::cdl_netlist()
|
|
{
|
|
return spice_netlist(spicecompat::CDL);
|
|
}
|
|
|
|
Component* Ampere_dc::newOne()
|
|
{
|
|
return new Ampere_dc();
|
|
}
|
|
|
|
Element* Ampere_dc::info(QString& Name, char* &BitmapFile, bool getNewOne)
|
|
{
|
|
Name = QObject::tr("dc Current Source");
|
|
BitmapFile = (char *) "dc_current";
|
|
|
|
if(getNewOne) return new Ampere_dc();
|
|
return 0;
|
|
}
|