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>
97 lines
3.6 KiB
C++
97 lines
3.6 KiB
C++
/***************************************************************************
|
|
sp_disto.cpp
|
|
------------
|
|
begin : Wed May 20 2015
|
|
copyright : (C) 2015 by Vadim Kuznetsov
|
|
email : ra3xdh@gmail.com
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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 "sp_disto.h"
|
|
#include "misc.h"
|
|
#include "extsimkernels/spicecompat.h"
|
|
#include <cmath>
|
|
|
|
SpiceDisto::SpiceDisto()
|
|
{
|
|
isSimulation = true;
|
|
Description = QObject::tr("Distortion simulation");
|
|
Simulator = spicecompat::simNgspice | spicecompat::simSpiceOpus;
|
|
initSymbol(Description);
|
|
Model = ".DISTO";
|
|
Name = "DISTO";
|
|
SpiceModel = ".DISTO";
|
|
|
|
// The index of the first 4 properties must not changed. Used in recreate().
|
|
Props.append(new Property("Type", "lin", true,
|
|
QObject::tr("sweep type")+" [lin, oct, dec]"));
|
|
Props.append(new Property("Start", "1 Hz", true,
|
|
QObject::tr("start frequency in Hertz")));
|
|
Props.append(new Property("Stop", "10 kHz", true,
|
|
QObject::tr("stop frequency in Hertz")));
|
|
Props.append(new Property("Points", "100", true,
|
|
QObject::tr("number of simulation steps")));
|
|
Props.append(new Property("f2overf1","",false,
|
|
QObject::tr("Second frequency parameter")));
|
|
|
|
}
|
|
|
|
SpiceDisto::~SpiceDisto()
|
|
{
|
|
}
|
|
|
|
Component* SpiceDisto::newOne()
|
|
{
|
|
return new SpiceDisto();
|
|
}
|
|
|
|
Element* SpiceDisto::info(QString& Name, char* &BitmapFile, bool getNewOne)
|
|
{
|
|
Name = QObject::tr("Distortion simulation");
|
|
BitmapFile = (char *) "sp_disto";
|
|
|
|
if(getNewOne) return new SpiceDisto();
|
|
return 0;
|
|
}
|
|
|
|
QString SpiceDisto::spice_netlist(spicecompat::SpiceDialect dialect /* = spicecompat::SPICEDefault */)
|
|
{
|
|
QString s;
|
|
if (dialect != spicecompat::SPICEXyce) {
|
|
QString fstart = spicecompat::normalize_value(Props.at(1)->Value); // Start freq.
|
|
QString fstop = spicecompat::normalize_value(Props.at(2)->Value); // Stop freq.
|
|
QString swp = spicecompat::convert_sweep_type(Props.at(0)->Value); // Sweep mode (lin,dec,etc.)
|
|
|
|
QString points;
|
|
if (swp=="dec") { // convert points number for spice compatibility
|
|
double Np,Fstart,Fstop,fac = 1.0;
|
|
QString unit;
|
|
misc::str2num(Props.at(3)->Value,Np,unit,fac); // Points number
|
|
Np *= fac;
|
|
misc::str2num(Props.at(1)->Value,Fstart,unit,fac);
|
|
Fstart *= fac;
|
|
misc::str2num(Props.at(2)->Value,Fstop,unit,fac);
|
|
Fstop *= fac;
|
|
double Nd = std::ceil(std::log10(Fstop/Fstart)); // number of decades
|
|
double Npd = std::ceil((Np - 1)/Nd); // points per decade
|
|
points = QString::number(Npd);
|
|
} else {
|
|
points = Props.at(3)->Value;
|
|
}
|
|
|
|
s = QStringLiteral("disto %1 %2 %3 %4 %5\n").arg(swp).arg(points).arg(fstart).arg(fstop)
|
|
.arg(Props.at(4)->Value.simplified());
|
|
} else {
|
|
s.clear();
|
|
}
|
|
|
|
return s;
|
|
}
|