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

132 lines
4.5 KiB
C++

/***************************************************************************
ifile.cpp
-----------
begin : Fri April 07 2007
updated drawing : Wed October 03 2007
copyright : (C) 2007 by Gunther Kraut
email : gn.kraut@t-online.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 "ifile.h"
#include "node.h"
#include "misc.h"
#include "extsimkernels/spicecompat.h"
iFile::iFile()
{
Description = QObject::tr("file based current source");
Ellipses.append(new qucs::Ellips(-12,-12, 24, 24, QPen(Qt::darkBlue,2)));
// pins
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
Lines.append(new qucs::Line( -7, 0, 6, 0,QPen(Qt::darkBlue,3, Qt::SolidLine, Qt::FlatCap)));
Polylines.append(new qucs::Polyline(
std::vector<QPointF>{{0, -4},{6, 0}, {0, 4}}, QPen(Qt::darkBlue, 3, Qt::SolidLine, Qt::SquareCap, Qt::MiterJoin)));
// small "list" pictogram
Lines.append(new qucs::Line( -6,-17, -6,-21,QPen(Qt::darkBlue,1)));
Lines.append(new qucs::Line( -8,-17, -8,-21,QPen(Qt::darkBlue,1)));
Lines.append(new qucs::Line(-10,-17,-10,-21,QPen(Qt::darkBlue,1)));
Rects.append(new qucs::Rect(-13, -23, 10, 8,QPen(Qt::darkBlue,2, Qt::SolidLine, Qt::FlatCap, 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 = "Ifile";
Name = "I";
SpiceModel = "A";
Props.append(new Property("File", "ifile.dat", true,
QObject::tr("name of the sample file")));
Props.append(new Property("Interpolator", "linear", false,
QObject::tr("interpolation type")+" [hold, linear]"));
Props.append(new Property("Repeat", "no", false,
QObject::tr("repeat waveform")+" [no, yes]"));
Props.append(new Property("G", "1", false, QObject::tr("current gain")));
Props.append(new Property("T", "0", false, QObject::tr("delay time")));
rotate(); // fix historical flaw
}
iFile::~iFile()
{
}
Component* iFile::newOne()
{
return new iFile();
}
Element* iFile::info(QString& Name, char* &BitmapFile, bool getNewOne)
{
Name = QObject::tr("File Based Current Source");
BitmapFile = (char *) "ifile";
if(getNewOne) return new iFile();
return 0;
}
// -------------------------------------------------------
QString iFile::getSubcircuitFile()
{
// construct full filename
QString FileName = Props.front()->Value;
return misc::properAbsFileName(FileName);
}
// -------------------------------------------------------
QString iFile::netlist()
{
QString s = Model+":"+Name;
// output all node names
for (Port *p1 : Ports)
s += " "+p1->Connection->Name; // node names
// output file properties
s += " "+Props.at(0)->Name+"=\"{"+getSubcircuitFile()+"}\"";
// output all remaining properties
for(int i = 1; i < Props.size();i++)
s += " "+Props.at(i)->Name+"=\""+Props.at(i)->Value+"\"";
return s + "\n";
}
QString iFile::spice_netlist(spicecompat::SpiceDialect dialect /* = spicecompat::SPICEDefault */)
{
Q_UNUSED(dialect);
QString s = SpiceModel + Name;
QString modname = "mod_" + Model + Name;
QString p1 = spicecompat::normalize_node_name(Ports.at(0)->Connection->Name);
QString p2 = spicecompat::normalize_node_name(Ports.at(1)->Connection->Name);
s += QStringLiteral(" %id([%1 %2]) %3\n").arg(p2).arg(p1).arg(modname);
QString file = getSubcircuitFile();
QString sc = getProperty("G")->Value;
QString step = "false";
QString delay = getProperty("T")->Value;
if (getProperty("Interpolator")->Value != "linear") step = "true";
s += QStringLiteral(".MODEL %1 filesource (file=\"%2\" amplscale=[%3] amplstep=%4 "
"amploffset=[0] timeoffset=%5 timescale=1)\n")
.arg(modname).arg(file).arg(sc).arg(step).arg(delay);
return s;
}