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

90 lines
3.0 KiB
C++

/***************************************************************************
dcfeed.cpp - description
-------------------
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 "dcfeed.h"
#include "extsimkernels/spicecompat.h"
#include "node.h"
dcFeed::dcFeed()
{
Description = QObject::tr("dc feed");
Simulator = spicecompat::simAll;
Arcs.append(new qucs::Arc(-17, -6, 12, 12, 0, 16*180,QPen(Qt::darkBlue,2)));
Arcs.append(new qucs::Arc( -6, -6, 12, 12, 0, 16*180,QPen(Qt::darkBlue,2)));
Arcs.append(new qucs::Arc( 5, -6, 12, 12, 0, 16*180,QPen(Qt::darkBlue,2)));
Lines.append(new qucs::Line(-30, 0,-17, 0,QPen(Qt::darkBlue,2)));
Lines.append(new qucs::Line( 17, 0, 30, 0,QPen(Qt::darkBlue,2)));
Lines.append(new qucs::Line(-23,-13, 23,-13,QPen(Qt::darkBlue,1)));
Lines.append(new qucs::Line(-23, 13, 23, 13,QPen(Qt::darkBlue,1)));
Lines.append(new qucs::Line(-23,-13,-23, 13,QPen(Qt::darkBlue,1)));
Lines.append(new qucs::Line( 23,-13, 23, 13,QPen(Qt::darkBlue,1)));
Ports.append(new Port(-30, 0));
Ports.append(new Port( 30, 0));
x1 = -30; y1 = -15;
x2 = 30; y2 = 16;
tx = x1+4;
ty = y2+4;
Model = "DCFeed";
Name = "L";
SpiceModel = "L";
Props.append(new Property("L", "1 uH", false,
QObject::tr("for transient simulation: inductance in Henry")));
}
dcFeed::~dcFeed()
{
}
Component* dcFeed::newOne()
{
return new dcFeed();
}
Element* dcFeed::info(QString& Name, char* &BitmapFile, bool getNewOne)
{
Name = QObject::tr("dc Feed");
BitmapFile = (char *) "dcfeed";
if(getNewOne) return new dcFeed();
return 0;
}
QString dcFeed::spice_netlist(spicecompat::SpiceDialect dialect /* = spicecompat::SPICEDefault */)
{
Q_UNUSED(dialect);
QString p1 = spicecompat::normalize_node_name(Ports.at(0)->Connection->Name);
QString p2 = spicecompat::normalize_node_name(Ports.at(1)->Connection->Name);
QString val = spicecompat::normalize_value(getProperty("L")->Value);
QString s;
QString name = spicecompat::check_refdes(Name, SpiceModel);
s = QStringLiteral("%1 %2 %3 %4\n").arg(name, p1, p2, val);
return s;
}
QString dcFeed::cdl_netlist()
{
return spice_netlist(spicecompat::CDL);
}