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>
80 lines
2.9 KiB
C++
80 lines
2.9 KiB
C++
/***************************************************************************
|
|
hb_sim.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 "hb_sim.h"
|
|
#include "extsimkernels/spicecompat.h"
|
|
#include <QRegularExpression>
|
|
|
|
|
|
HB_Sim::HB_Sim()
|
|
{
|
|
Description = QObject::tr("Harmonic balance simulation");
|
|
Simulator = spicecompat::simXyce | spicecompat::simQucsator;
|
|
|
|
QString s = Description;
|
|
initSymbol(Description);
|
|
Model = ".HB";
|
|
Name = "HB";
|
|
SpiceModel = ".HB";
|
|
isSimulation = true;
|
|
|
|
Props.append(new Property("f", "1 GHz", false,
|
|
QObject::tr("frequency in Hertz")));
|
|
Props.append(new Property("n", "4", true,
|
|
QObject::tr("number of harmonics")));
|
|
Props.append(new Property("iabstol", "1 pA", false,
|
|
QObject::tr("absolute tolerance for currents")));
|
|
Props.append(new Property("vabstol", "1 uV", false,
|
|
QObject::tr("absolute tolerance for voltages")));
|
|
Props.append(new Property("reltol", "0.001", false,
|
|
QObject::tr("relative tolerance for convergence")));
|
|
Props.append(new Property("MaxIter", "150", false,
|
|
QObject::tr("maximum number of iterations until error")));
|
|
}
|
|
|
|
HB_Sim::~HB_Sim()
|
|
{
|
|
}
|
|
|
|
Component* HB_Sim::newOne()
|
|
{
|
|
return new HB_Sim();
|
|
}
|
|
|
|
Element* HB_Sim::info(QString& Name, char* &BitmapFile, bool getNewOne)
|
|
{
|
|
Name = QObject::tr("Harmonic balance");
|
|
BitmapFile = (char *) "hb";
|
|
|
|
if(getNewOne) return new HB_Sim();
|
|
return 0;
|
|
}
|
|
|
|
QString HB_Sim::spice_netlist(spicecompat::SpiceDialect dialect /* = spicecompat::SPICEDefault */)
|
|
{
|
|
QString s="";
|
|
if (dialect == spicecompat::SPICEXyce) { // Only in Xyce
|
|
s += QStringLiteral(".options hbint numfreq=%1 STARTUPPERIODS=2\n").arg(Props.at(1)->Value);
|
|
QStringList freqs = Props.at(0)->Value.split(QRegularExpression("\\s+(?=[0-9])"));
|
|
// split frequencyes list by space before digit
|
|
for (QStringList::iterator it = freqs.begin();it != freqs.end(); it++) {
|
|
(*it) = spicecompat::normalize_value(*it);
|
|
}
|
|
s += QStringLiteral(".HB %1\n").arg(freqs.join(" "));
|
|
}
|
|
return s;
|
|
}
|