2015-01-10 17:26:25 +03:00
|
|
|
/***************************************************************************
|
|
|
|
abstractspicekernel.h
|
|
|
|
----------------
|
|
|
|
begin : Sat Jan 10 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. *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "abstractspicekernel.h"
|
2015-03-01 16:49:15 +03:00
|
|
|
#include "misc.h"
|
2015-07-13 10:18:26 +03:00
|
|
|
#include "main.h"
|
2015-03-01 16:49:15 +03:00
|
|
|
#include "../paintings/id_text.h"
|
2015-06-05 13:58:01 +03:00
|
|
|
#include <QPlainTextEdit>
|
2015-01-10 17:26:25 +03:00
|
|
|
|
2015-04-25 13:31:40 +03:00
|
|
|
/*!
|
2015-05-18 14:39:00 +03:00
|
|
|
\file abstractspicekernel.cpp
|
|
|
|
\brief Implementation of the AbstractSpiceKernel class
|
2015-04-25 13:31:40 +03:00
|
|
|
*/
|
|
|
|
|
2015-01-10 17:26:25 +03:00
|
|
|
|
2015-04-24 13:37:56 +03:00
|
|
|
/*!
|
|
|
|
* \brief AbstractSpiceKernel::AbstractSpiceKernel class constructor
|
|
|
|
* \param sch_ Schematic that schould be simualted with Spice-comaptibele
|
|
|
|
* simulator
|
|
|
|
* \param parent Parent object
|
|
|
|
*/
|
2015-01-17 12:55:26 +03:00
|
|
|
AbstractSpiceKernel::AbstractSpiceKernel(Schematic *sch_, QObject *parent) :
|
2015-01-10 17:26:25 +03:00
|
|
|
QObject(parent)
|
|
|
|
{
|
|
|
|
Sch = sch_;
|
|
|
|
|
2015-07-13 10:18:26 +03:00
|
|
|
workdir = QucsSettings.S4Qworkdir;
|
2015-01-10 17:26:25 +03:00
|
|
|
QFileInfo inf(workdir);
|
|
|
|
if (!inf.exists()) {
|
|
|
|
QDir dir;
|
|
|
|
dir.mkpath(workdir);
|
|
|
|
}
|
|
|
|
|
|
|
|
SimProcess = new QProcess(this);
|
|
|
|
SimProcess->setProcessChannelMode(QProcess::MergedChannels);
|
|
|
|
connect(SimProcess,SIGNAL(finished(int)),this,SLOT(slotFinished()));
|
2015-05-04 12:18:45 +03:00
|
|
|
connect(SimProcess,SIGNAL(readyRead()),this,SLOT(slotProcessOutput()));
|
2015-06-13 13:01:11 +03:00
|
|
|
connect(SimProcess,SIGNAL(error(QProcess::ProcessError)),this,SLOT(slotErrors(QProcess::ProcessError)));
|
2015-01-10 17:26:25 +03:00
|
|
|
connect(this,SIGNAL(destroyed()),this,SLOT(killThemAll()));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
AbstractSpiceKernel::~AbstractSpiceKernel()
|
|
|
|
{
|
|
|
|
killThemAll();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AbstractSpiceKernel::killThemAll()
|
|
|
|
{
|
|
|
|
if (SimProcess->state()!=QProcess::NotRunning) {
|
|
|
|
SimProcess->kill();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-24 13:37:56 +03:00
|
|
|
/*!
|
|
|
|
* \brief AbstractSpiceKernel::prepareSpiceNetlist Fill components nodes
|
|
|
|
* with approate node numbers
|
|
|
|
* \param stream QTextStream that associated with spice netlist file
|
|
|
|
* \param xyce Default is false. Should be set in true if netlist is
|
|
|
|
* prepared for Xyce simulator. For Ngspice should be false.
|
|
|
|
* \return Returns true if success, false if netlist preparation fails
|
|
|
|
*/
|
2015-02-01 14:46:43 +03:00
|
|
|
bool AbstractSpiceKernel::prepareSpiceNetlist(QTextStream &stream, bool xyce)
|
2015-01-31 10:22:13 +03:00
|
|
|
{
|
|
|
|
QStringList collect;
|
2015-06-05 13:58:01 +03:00
|
|
|
QPlainTextEdit *err = new QPlainTextEdit;
|
2015-07-14 09:57:17 +03:00
|
|
|
if (Sch->prepareNetlist(stream,collect,err,true,xyce)==-10) { // Broken netlist
|
|
|
|
output.append(err->toPlainText());
|
|
|
|
delete err;
|
|
|
|
return false;
|
|
|
|
}
|
2015-01-31 10:22:13 +03:00
|
|
|
delete err;
|
2015-02-01 11:33:49 +03:00
|
|
|
Sch->clearSignalsAndFileList(); // for proper build of subckts
|
2015-01-31 10:22:13 +03:00
|
|
|
return true; // TODO: Add feature to determine ability of spice simulation
|
|
|
|
}
|
|
|
|
|
2015-07-13 10:18:26 +03:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* \brief AbstractSpiceKernel::checkSchematic Check SPICE-compatibility of
|
|
|
|
* all components.
|
|
|
|
* \param incompat[out] QStringList filled by incompatible components names
|
|
|
|
* \return true --- All components are SPICE-compatible; false --- otherwise
|
|
|
|
*/
|
|
|
|
bool AbstractSpiceKernel::checkSchematic(QStringList &incompat)
|
|
|
|
{
|
|
|
|
incompat.clear();
|
|
|
|
for(Component *pc = Sch->DocComps.first(); pc != 0; pc = Sch->DocComps.next()) {
|
|
|
|
if ((!pc->isEquation)&&!(pc->isProbe)) {
|
|
|
|
if (pc->SpiceModel.isEmpty()) incompat.append(pc->Name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return incompat.isEmpty();
|
|
|
|
}
|
|
|
|
|
2015-04-24 13:37:56 +03:00
|
|
|
/*!
|
|
|
|
* \brief AbstractSpiceKernel::startNetlist Outputs .PARAM , .GLOABAL_PARAM,
|
|
|
|
* and .OPTIONS sections to netlist. These sections are placed on schematic
|
|
|
|
* directly or converted form Equation components. Then outputs common
|
|
|
|
* components to netlist.
|
|
|
|
* \param stream QTextStream that associated with spice netlist file
|
|
|
|
* \param xyce Default is false. Should be set in true if netlist is
|
|
|
|
* prepared for Xyce simulator. For Ngspice should be false.
|
|
|
|
*/
|
2015-03-01 12:15:22 +03:00
|
|
|
void AbstractSpiceKernel::startNetlist(QTextStream &stream, bool xyce)
|
|
|
|
{
|
|
|
|
QString s;
|
|
|
|
for(Component *pc = Sch->DocComps.first(); pc != 0; pc = Sch->DocComps.next()) {
|
|
|
|
if (pc->isEquation) {
|
|
|
|
s = pc->getExpression(xyce);
|
|
|
|
stream<<s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for(Component *pc = Sch->DocComps.first(); pc != 0; pc = Sch->DocComps.next()) {
|
|
|
|
if(Sch->isAnalog &&
|
|
|
|
!(pc->isSimulation) &&
|
|
|
|
!(pc->isEquation)) {
|
|
|
|
s = pc->getSpiceNetlist(xyce);
|
|
|
|
stream<<s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-24 13:37:56 +03:00
|
|
|
/*!
|
|
|
|
* \brief AbstractSpiceKernel::createNetlist Writes netlist in stream TextStream.
|
|
|
|
* This is overloaded method. Should be reimplemted for Ngspice and Xyce.
|
|
|
|
*/
|
2015-04-18 14:12:23 +03:00
|
|
|
void AbstractSpiceKernel::createNetlist(QTextStream&, int ,QStringList&,
|
|
|
|
QStringList&, QStringList &)
|
2015-01-10 17:26:25 +03:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-04-24 13:37:56 +03:00
|
|
|
/*!
|
|
|
|
* \brief AbstractSpiceKernel::createSubNetlsit Output Netlist with
|
|
|
|
* Subcircuit header .SUBCKT
|
|
|
|
* \param stream QTextStream that associated with spice netlist file
|
|
|
|
* \param xyce Default is false. Should be set in true if netlist is
|
|
|
|
* prepared for Xyce simulator. For Ngspice should be false.
|
|
|
|
*/
|
2015-03-01 12:15:22 +03:00
|
|
|
void AbstractSpiceKernel::createSubNetlsit(QTextStream &stream, bool xyce)
|
|
|
|
{
|
2015-03-01 16:49:15 +03:00
|
|
|
QString header;
|
2015-03-05 19:12:30 +03:00
|
|
|
QString f = misc::properFileName(Sch->DocName);
|
|
|
|
header = QString(".SUBCKT %1 ").arg(misc::properName(f));
|
2015-03-01 16:49:15 +03:00
|
|
|
|
|
|
|
QList< QPair<int,QString> > ports;
|
2015-07-14 09:57:17 +03:00
|
|
|
if(!prepareSpiceNetlist(stream,xyce)) {
|
|
|
|
emit finished();
|
|
|
|
emit errors(QProcess::FailedToStart);
|
|
|
|
return;
|
|
|
|
} // Unable to perform spice simulation
|
2015-03-01 12:15:22 +03:00
|
|
|
for(Component *pc = Sch->DocComps.first(); pc != 0; pc = Sch->DocComps.next()) {
|
|
|
|
if (pc->Model=="Port") {
|
2015-03-01 16:49:15 +03:00
|
|
|
ports.append(qMakePair(pc->Props.first()->Value.toInt(),
|
|
|
|
pc->Ports.first()->Connection->Name));
|
2015-03-01 12:15:22 +03:00
|
|
|
}
|
|
|
|
}
|
2015-03-01 16:49:15 +03:00
|
|
|
qSort(ports);
|
|
|
|
QPair<int,QString> pp;
|
|
|
|
foreach(pp,ports) {
|
|
|
|
header += pp.second + " ";
|
|
|
|
}
|
|
|
|
|
|
|
|
Painting *pi;
|
|
|
|
for(pi = Sch->SymbolPaints.first(); pi != 0; pi = Sch->SymbolPaints.next())
|
|
|
|
if(pi->Name == ".ID ") {
|
|
|
|
ID_Text *pid = (ID_Text*)pi;
|
|
|
|
QList<SubParameter *>::const_iterator it;
|
|
|
|
for(it = pid->Parameter.constBegin(); it != pid->Parameter.constEnd(); it++) {
|
|
|
|
header += (*it)->Name + " "; // keep 'Name' unchanged
|
|
|
|
//(*tstream) << " " << s.replace("=", "=\"") << '"';
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2015-03-01 12:15:22 +03:00
|
|
|
header += "\n";
|
|
|
|
stream<<header;
|
|
|
|
startNetlist(stream,xyce);
|
|
|
|
stream<<".ENDS\n";
|
|
|
|
}
|
|
|
|
|
2015-04-24 13:37:56 +03:00
|
|
|
/*!
|
|
|
|
* \brief AbstractSpiceKernel::slotSimulate Executes simulator
|
|
|
|
*/
|
2015-01-10 17:26:25 +03:00
|
|
|
void AbstractSpiceKernel::slotSimulate()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-04-24 13:37:56 +03:00
|
|
|
/*!
|
|
|
|
* \brief AbstractSpiceKernel::parseNgSpiceSimOutput This method parses text raw spice
|
|
|
|
* output. Extracts a simulation points array and variables names and types (Real
|
|
|
|
* or Complex) from output.
|
|
|
|
* \param ngspice_file Spice output file name
|
|
|
|
* \param sim_points 2D array in which simulation points should be extracted
|
|
|
|
* \param var_list This list is filled by simualtion variables. There is a list of dependent
|
|
|
|
* and independent varibales. An independent variable is the first in list.
|
|
|
|
* \param isComplex Type of variables. True if complex. False if real.
|
|
|
|
*/
|
2015-01-10 17:26:25 +03:00
|
|
|
void AbstractSpiceKernel::parseNgSpiceSimOutput(QString ngspice_file,QList< QList<double> > &sim_points,QStringList &var_list, bool &isComplex)
|
|
|
|
{
|
|
|
|
isComplex = false;
|
|
|
|
QFile ofile(ngspice_file);
|
|
|
|
if (ofile.open(QFile::ReadOnly)) {
|
|
|
|
QTextStream ngsp_data(&ofile);
|
|
|
|
sim_points.clear();
|
|
|
|
bool start_values_sec = false;
|
|
|
|
int NumVars=0; // Number of dep. and indep.variables
|
|
|
|
while (!ngsp_data.atEnd()) {
|
|
|
|
QRegExp sep("[ \t,]");
|
|
|
|
QString lin = ngsp_data.readLine();
|
|
|
|
if (lin.isEmpty()) continue;
|
|
|
|
if (lin.contains("Flags")&&lin.contains("complex")) { // output consists of
|
|
|
|
isComplex = true; // complex numbers
|
|
|
|
continue; // maybe ac_analysis
|
|
|
|
}
|
|
|
|
if (lin.contains("No. Variables")) { // get number of variables
|
2015-04-20 12:53:19 +03:00
|
|
|
NumVars=lin.section(sep,2,2,QString::SectionSkipEmpty).toInt();
|
2015-01-10 17:26:25 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (lin=="Variables:") {
|
|
|
|
var_list.clear();
|
2015-04-20 12:53:19 +03:00
|
|
|
QString indep_var = ngsp_data.readLine().section(sep,1,1,QString::SectionSkipEmpty);
|
2015-01-10 17:26:25 +03:00
|
|
|
var_list.append(indep_var);
|
|
|
|
|
|
|
|
for (int i=1;i<NumVars;i++) {
|
|
|
|
lin = ngsp_data.readLine();
|
2015-04-20 12:53:19 +03:00
|
|
|
QString dep_var = lin.section(sep,1,1,QString::SectionSkipEmpty);
|
2015-01-10 17:26:25 +03:00
|
|
|
var_list.append(dep_var);
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (lin=="Values:") {
|
|
|
|
start_values_sec = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (start_values_sec) {
|
|
|
|
QList<double> sim_point;
|
2015-04-20 12:53:19 +03:00
|
|
|
double indep_val = lin.section(sep,1,1,QString::SectionSkipEmpty).toDouble();
|
2015-01-10 17:26:25 +03:00
|
|
|
sim_point.append(indep_val);
|
|
|
|
for (int i=0;i<NumVars;i++) {
|
|
|
|
if (isComplex) {
|
|
|
|
QStringList lst = ngsp_data.readLine().split(sep,QString::SkipEmptyParts);
|
|
|
|
if (lst.count()==2) {
|
|
|
|
double re_dep_val = lst.at(0).toDouble(); // for complex sim results
|
|
|
|
double im_dep_val = lst.at(1).toDouble(); // imaginary part follows
|
|
|
|
sim_point.append(re_dep_val); // real part
|
|
|
|
sim_point.append(im_dep_val);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
double dep_val = ngsp_data.readLine().remove(sep).toDouble();
|
|
|
|
sim_point.append(dep_val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sim_points.append(sim_point);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ofile.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-24 13:37:56 +03:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* \brief AbstractSpiceKernel::parseHBOutput Parse Xyce Harmonic balance (HB) simulation output.
|
|
|
|
* \param ngspice_file Spice output file name
|
|
|
|
* \param sim_points 2D array in which simulation points should be extracted
|
|
|
|
* \param var_list This list is filled by simualtion variables. There is a list of dependent
|
|
|
|
* varibales. Independent hbfrequency variable is always the first in this list.
|
|
|
|
*/
|
2015-01-19 18:19:44 +03:00
|
|
|
void AbstractSpiceKernel::parseHBOutput(QString ngspice_file,
|
|
|
|
QList<QList<double> > &sim_points, QStringList &var_list)
|
|
|
|
{
|
2015-01-20 15:03:24 +03:00
|
|
|
var_list.clear();
|
|
|
|
sim_points.clear();
|
2015-01-20 19:21:44 +03:00
|
|
|
int NumVars=0;
|
|
|
|
QFile ofile(ngspice_file);
|
|
|
|
if (ofile.open(QFile::ReadOnly)) {
|
|
|
|
QTextStream hb_data(&ofile);
|
|
|
|
var_list.append("hbfrequency");
|
|
|
|
bool first_head = true;
|
|
|
|
while (!hb_data.atEnd()) {
|
|
|
|
QRegExp sep("[ \t,]");
|
|
|
|
QRegExp heading("^[a-zA-Z_][a-zA-Z0-9]{1,},");
|
|
|
|
QRegExp dataline("^[0-9]{1,},");
|
|
|
|
QString lin = hb_data.readLine();
|
|
|
|
if (lin.isEmpty()) continue;
|
|
|
|
if (lin.startsWith("Index")) { // CSV heading
|
|
|
|
if (first_head) {
|
|
|
|
QStringList vars1 = lin.split(" ",QString::SkipEmptyParts);
|
|
|
|
vars1.removeFirst();
|
|
|
|
vars1.removeFirst();
|
|
|
|
var_list.append(vars1);
|
|
|
|
NumVars = var_list.count();
|
|
|
|
}
|
|
|
|
first_head = false;
|
|
|
|
}
|
|
|
|
if ((lin.contains(QRegExp("\\d*\\.\\d+[+-]*[eE]*[\\d]*")))&&(!first_head)) { // CSV dataline
|
|
|
|
QStringList vals = lin.split(" ",QString::SkipEmptyParts);
|
|
|
|
QList <double> sim_point;
|
|
|
|
sim_point.clear();
|
|
|
|
for (int i=NumVars+1;i<vals.count();i++) {
|
|
|
|
sim_point.append(vals.at(i).toDouble());
|
|
|
|
}
|
|
|
|
sim_points.append(sim_point);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ofile.close();
|
|
|
|
}
|
2015-01-19 18:19:44 +03:00
|
|
|
}
|
|
|
|
|
2015-05-18 11:39:58 +03:00
|
|
|
/*!
|
|
|
|
* \brief AbstractSpiceKernel::parseFourierOutput Parse output of fourier simulation.
|
|
|
|
* \param ngspice_file[in] Spice output file name
|
|
|
|
* \param sim_points[out] 2D array in which simulation points should be extracted
|
|
|
|
* \param var_list[out] This list is filled by simualtion variables. There is a list of dependent
|
|
|
|
* and independent varibales. An independent variable is the first in list.
|
|
|
|
*/
|
|
|
|
void AbstractSpiceKernel::parseFourierOutput(QString ngspice_file, QList<QList<double> > &sim_points,
|
2015-05-18 14:39:00 +03:00
|
|
|
QStringList &var_list, bool xyce)
|
2015-05-18 11:39:58 +03:00
|
|
|
{
|
|
|
|
QFile ofile(ngspice_file);
|
|
|
|
if (ofile.open(QFile::ReadOnly)) {
|
|
|
|
QTextStream ngsp_data(&ofile);
|
|
|
|
sim_points.clear();
|
|
|
|
var_list.clear();
|
|
|
|
var_list.append("fourierfreq");
|
|
|
|
int Nharm; // number of harmonics
|
2015-05-18 14:24:16 +03:00
|
|
|
bool firstgroup = false;
|
2015-05-18 11:39:58 +03:00
|
|
|
while (!ngsp_data.atEnd()) {
|
|
|
|
QRegExp sep("[ \t,]");
|
|
|
|
QString lin = ngsp_data.readLine();
|
|
|
|
if (lin.isEmpty()) continue;
|
|
|
|
if (lin.contains("Fourier analysis for")) {
|
|
|
|
QString var = lin.split(sep,QString::SkipEmptyParts).last();
|
|
|
|
if (var.endsWith(':')) var.chop(1);
|
|
|
|
var_list.append("magnitude("+var+")");
|
|
|
|
var_list.append("phase("+var+")");
|
2015-05-19 15:29:21 +03:00
|
|
|
var_list.append("norm(mag("+var+"))");
|
|
|
|
var_list.append("norm(phase("+var+"))");
|
2015-05-18 11:39:58 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (lin.contains("No. Harmonics:")) {
|
|
|
|
QString ss = lin.section(sep,2,2,QString::SectionSkipEmpty);
|
|
|
|
if (ss.endsWith(',')) ss.chop(1);
|
|
|
|
Nharm = ss.toInt();
|
|
|
|
while (!ngsp_data.readLine().contains(QRegExp("Harmonic\\s+Frequency")));
|
2015-05-18 14:39:00 +03:00
|
|
|
if (!xyce) lin = ngsp_data.readLine(); // dummy line
|
2015-05-18 11:39:58 +03:00
|
|
|
for (int i=0;i<Nharm;i++) {
|
|
|
|
lin = ngsp_data.readLine();
|
2015-05-18 14:24:16 +03:00
|
|
|
if (!firstgroup) {
|
|
|
|
QList<double> sim_point;
|
|
|
|
sim_point.append(lin.section(sep,1,1,QString::SectionSkipEmpty).toDouble()); // freq
|
|
|
|
sim_point.append(lin.section(sep,2,2,QString::SectionSkipEmpty).toDouble()); // magnitude
|
|
|
|
sim_point.append(lin.section(sep,3,3,QString::SectionSkipEmpty).toDouble()); // phase
|
2015-05-19 15:29:21 +03:00
|
|
|
sim_point.append(lin.section(sep,4,4,QString::SectionSkipEmpty).toDouble()); // normalized magnitude
|
|
|
|
sim_point.append(lin.section(sep,5,5,QString::SectionSkipEmpty).toDouble()); // normalized phase
|
2015-05-18 14:24:16 +03:00
|
|
|
sim_points.append(sim_point);
|
|
|
|
} else {
|
|
|
|
sim_points[i].append(lin.section(sep,2,2,QString::SectionSkipEmpty).toDouble()); // magnitude
|
|
|
|
sim_points[i].append(lin.section(sep,3,3,QString::SectionSkipEmpty).toDouble()); // phase
|
2015-05-19 15:29:21 +03:00
|
|
|
sim_points[i].append(lin.section(sep,4,4,QString::SectionSkipEmpty).toDouble()); // normalized magnitude
|
|
|
|
sim_points[i].append(lin.section(sep,5,5,QString::SectionSkipEmpty).toDouble()); // normalized phase
|
2015-05-18 14:24:16 +03:00
|
|
|
}
|
2015-05-18 11:39:58 +03:00
|
|
|
}
|
2015-05-18 14:24:16 +03:00
|
|
|
firstgroup = true;
|
2015-05-18 11:39:58 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
ofile.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-26 17:52:37 +03:00
|
|
|
/*!
|
|
|
|
* \brief AbstractSpiceKernel::parseNoiseOutput Parse output of .NOISE simulation.
|
2015-05-29 15:56:22 +03:00
|
|
|
* \param[in] ngspice_file Spice output file name
|
|
|
|
* \param[out] sim_points 2D array in which simulation points should be extracted. All simulation
|
2015-05-26 17:52:37 +03:00
|
|
|
* points from all sweep variable steps are extracted in a single array
|
2015-05-29 15:56:22 +03:00
|
|
|
* \param[out] var_list This list is filled by simualtion variables. There is a list of dependent
|
2015-05-26 17:52:37 +03:00
|
|
|
* and independent varibales. An independent variable is the first in list.
|
2015-05-29 15:56:22 +03:00
|
|
|
* \param[out] ParSwp Set to true if there was parameter sweep
|
2015-05-26 17:52:37 +03:00
|
|
|
*/
|
|
|
|
void AbstractSpiceKernel::parseNoiseOutput(QString ngspice_file, QList<QList<double> > &sim_points,
|
2015-05-29 15:56:22 +03:00
|
|
|
QStringList &var_list, bool &ParSwp)
|
2015-05-26 17:52:37 +03:00
|
|
|
{
|
2015-06-17 15:48:41 +03:00
|
|
|
var_list.clear();
|
2015-05-28 15:20:27 +03:00
|
|
|
var_list.append(""); // dummy indep var
|
|
|
|
var_list.append("inoise_total");
|
|
|
|
var_list.append("onoise_total");
|
2015-05-26 17:52:37 +03:00
|
|
|
|
2015-05-29 15:56:22 +03:00
|
|
|
ParSwp = false;
|
2015-05-28 15:20:27 +03:00
|
|
|
QFile ofile(ngspice_file);
|
|
|
|
if (ofile.open(QFile::ReadOnly)) {
|
|
|
|
QTextStream ngsp_data(&ofile);
|
|
|
|
sim_points.clear();
|
2015-05-29 15:56:22 +03:00
|
|
|
int cnt = 0;
|
2015-05-28 15:20:27 +03:00
|
|
|
while (!ngsp_data.atEnd()) {
|
|
|
|
QString line = ngsp_data.readLine();
|
|
|
|
if (line.contains('=')) {
|
|
|
|
QList <double> sim_point;
|
2015-06-05 09:02:34 +03:00
|
|
|
sim_point.append(0.0);
|
2015-05-28 15:20:27 +03:00
|
|
|
sim_point.append(line.section('=',1,1).toDouble());
|
|
|
|
line = ngsp_data.readLine();
|
|
|
|
sim_point.append(line.section('=',1,1).toDouble());
|
|
|
|
sim_points.append(sim_point);
|
2015-05-29 15:56:22 +03:00
|
|
|
cnt++;
|
2015-05-28 15:20:27 +03:00
|
|
|
}
|
|
|
|
}
|
2015-05-29 15:56:22 +03:00
|
|
|
if (cnt>1) ParSwp = true;
|
2015-05-28 15:20:27 +03:00
|
|
|
ofile.close();
|
|
|
|
}
|
2015-05-26 17:52:37 +03:00
|
|
|
}
|
|
|
|
|
2015-04-24 13:37:56 +03:00
|
|
|
/*!
|
|
|
|
* \brief AbstractSpiceKernel::parseSTEPOutput This method parses text raw spice
|
|
|
|
* output from Parameter sweep analysis. Can parse data that uses appedwrite.
|
|
|
|
* Extracts a simulation points array and variables names and types (Real
|
|
|
|
* or Complex) from output.
|
|
|
|
* \param ngspice_file Spice output file name
|
|
|
|
* \param sim_points 2D array in which simulation points should be extracted. All simulation
|
|
|
|
* points from all sweep variable steps are extracted in a single array
|
|
|
|
* \param var_list This list is filled by simualtion variables. There is a list of dependent
|
|
|
|
* and independent varibales. An independent variable is the first in list.
|
|
|
|
* \param isComplex Type of variables. True if complex. False if real.
|
|
|
|
*/
|
2015-01-19 18:19:44 +03:00
|
|
|
void AbstractSpiceKernel::parseSTEPOutput(QString ngspice_file,
|
|
|
|
QList< QList<double> > &sim_points,
|
|
|
|
QStringList &var_list, bool &isComplex)
|
|
|
|
{
|
2015-03-20 17:40:23 +03:00
|
|
|
isComplex = false;
|
|
|
|
|
|
|
|
QFile ofile(ngspice_file);
|
|
|
|
if (ofile.open(QFile::ReadOnly)) {
|
|
|
|
QTextStream ngsp_data(&ofile);
|
|
|
|
sim_points.clear();
|
|
|
|
bool start_values_sec = false;
|
|
|
|
bool header_parsed = false;
|
|
|
|
int NumVars=0; // Number of dep. and indep.variables
|
|
|
|
while (!ngsp_data.atEnd()) {
|
|
|
|
QRegExp sep("[ \t,]");
|
|
|
|
QString lin = ngsp_data.readLine();
|
|
|
|
if (lin.isEmpty()) continue;
|
|
|
|
if (lin.contains("Plotname:")&& // skip operating point
|
|
|
|
(lin.contains("DC operating point"))) {
|
|
|
|
for(bool t = false; !t; t = (ngsp_data.readLine().startsWith("Plotname:")));
|
|
|
|
}
|
|
|
|
if (!header_parsed) {
|
|
|
|
if (lin.contains("Flags")&&lin.contains("complex")) { // output consists of
|
|
|
|
isComplex = true; // complex numbers
|
|
|
|
continue; // maybe ac_analysis
|
|
|
|
}
|
|
|
|
if (lin.contains("No. Variables")) { // get number of variables
|
2015-04-20 12:53:19 +03:00
|
|
|
NumVars=lin.section(sep,2,2,QString::SectionSkipEmpty).toInt();
|
2015-03-20 17:40:23 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (lin=="Variables:") {
|
|
|
|
var_list.clear();
|
2015-04-20 12:53:19 +03:00
|
|
|
QString indep_var = ngsp_data.readLine().section(sep,1,1,QString::SectionSkipEmpty);
|
2015-03-20 17:40:23 +03:00
|
|
|
var_list.append(indep_var);
|
|
|
|
|
|
|
|
for (int i=1;i<NumVars;i++) {
|
|
|
|
lin = ngsp_data.readLine();
|
2015-04-20 12:53:19 +03:00
|
|
|
QString dep_var = lin.section(sep,1,1,QString::SectionSkipEmpty);
|
2015-03-20 17:40:23 +03:00
|
|
|
var_list.append(dep_var);
|
|
|
|
}
|
|
|
|
header_parsed = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lin=="Values:") {
|
|
|
|
start_values_sec = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (start_values_sec) {
|
|
|
|
QList<double> sim_point;
|
|
|
|
bool ok = false;
|
2015-03-23 16:27:46 +03:00
|
|
|
QRegExp dataline_patter("^ *[0-9]+[ \t]+.*");
|
2015-03-20 17:40:23 +03:00
|
|
|
if (!dataline_patter.exactMatch(lin)) continue;
|
2015-04-20 12:53:19 +03:00
|
|
|
double indep_val = lin.section(sep,1,1,QString::SectionSkipEmpty).toDouble(&ok);
|
|
|
|
//double indep_val = lin.split(sep,QString::SkipEmptyParts).at(1).toDouble(&ok); // only real indep vars
|
2015-03-20 17:40:23 +03:00
|
|
|
if (!ok) continue;
|
|
|
|
sim_point.append(indep_val);
|
|
|
|
for (int i=0;i<NumVars;i++) {
|
|
|
|
if (isComplex) {
|
|
|
|
QStringList lst = ngsp_data.readLine().split(sep,QString::SkipEmptyParts);
|
|
|
|
if (lst.count()==2) {
|
|
|
|
double re_dep_val = lst.at(0).toDouble(); // for complex sim results
|
|
|
|
double im_dep_val = lst.at(1).toDouble(); // imaginary part follows
|
|
|
|
sim_point.append(re_dep_val); // real part
|
|
|
|
sim_point.append(im_dep_val);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
double dep_val = ngsp_data.readLine().remove(sep).toDouble();
|
|
|
|
sim_point.append(dep_val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sim_points.append(sim_point);
|
|
|
|
}
|
2015-01-19 18:19:44 +03:00
|
|
|
|
2015-03-20 17:40:23 +03:00
|
|
|
}
|
|
|
|
ofile.close();
|
|
|
|
}
|
2015-01-19 18:19:44 +03:00
|
|
|
}
|
|
|
|
|
2015-04-18 14:12:23 +03:00
|
|
|
void AbstractSpiceKernel::parseHBSTEPOutput(QString , QList<QList<double> >&,
|
|
|
|
QStringList&, bool&)
|
2015-04-01 19:30:34 +03:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-04-24 13:37:56 +03:00
|
|
|
/*!
|
|
|
|
* \brief AbstractSpiceKernel::parseResFile Extract sweep variable name and
|
|
|
|
* values from Ngspice or Xyce *.res output
|
|
|
|
* \param resfile A name of a *.res file
|
|
|
|
* \param var QString in which war is stored
|
|
|
|
* \param values String list in which values are extracted
|
|
|
|
*/
|
2015-03-19 19:46:34 +03:00
|
|
|
void AbstractSpiceKernel::parseResFile(QString resfile, QString &var, QStringList &values)
|
|
|
|
{
|
|
|
|
var.clear();
|
|
|
|
values.clear();
|
|
|
|
|
|
|
|
QFile ofile(resfile);
|
|
|
|
if (ofile.open(QFile::ReadOnly)) {
|
|
|
|
QTextStream swp_data(&ofile);
|
|
|
|
while (!swp_data.atEnd()) {
|
|
|
|
QRegExp point_pattern("^\\s*[0-9]+ .*");
|
|
|
|
QRegExp var_pattern("^STEP\\s+.*");
|
|
|
|
QRegExp sep("\\s");
|
|
|
|
QString lin = swp_data.readLine();
|
|
|
|
if (var_pattern.exactMatch(lin)) {
|
|
|
|
var = lin.split(sep,QString::SkipEmptyParts).last();
|
|
|
|
}
|
|
|
|
if (point_pattern.exactMatch(lin)) {
|
|
|
|
values.append(lin.split(sep,QString::SkipEmptyParts).last());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ofile.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-19 09:37:33 +03:00
|
|
|
/*!
|
|
|
|
* \brief AbstractSpiceKernel::checkRawOutupt Determine Ngspice Raw output contains
|
|
|
|
* parameter sweep.
|
|
|
|
* \param ngspice_file[in] Raw output file name
|
|
|
|
* \param values[out] Numbers of parameter sweep steps
|
|
|
|
* \return true if parameter sweep presents, false otherwise
|
|
|
|
*/
|
|
|
|
bool AbstractSpiceKernel::checkRawOutupt(QString ngspice_file, QStringList &values)
|
|
|
|
{
|
|
|
|
values.clear();
|
|
|
|
|
|
|
|
QFile ofile(ngspice_file);
|
|
|
|
int plots_cnt = 0;
|
|
|
|
if (ofile.open(QFile::ReadOnly)) {
|
|
|
|
QTextStream ngsp_data(&ofile);
|
|
|
|
while (!ngsp_data.atEnd()) {
|
|
|
|
QString lin = ngsp_data.readLine();
|
|
|
|
if (lin.startsWith("Plotname: ")) {
|
|
|
|
plots_cnt++;
|
|
|
|
values.append(QString::number(plots_cnt));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ofile.close();
|
|
|
|
}
|
|
|
|
if (plots_cnt>1) return true;
|
|
|
|
else return false;
|
|
|
|
}
|
|
|
|
|
2015-04-24 13:37:56 +03:00
|
|
|
/*!
|
|
|
|
* \brief AbstractSpiceKernel::convertToQucsData Put data extracted from spice raw
|
|
|
|
* text output files (given in outputs_files property) into single XML
|
|
|
|
* Qucs Dataset.
|
|
|
|
* \param qucs_dataset A file name of Qucs Dataset to create
|
|
|
|
* \param xyce True if Xyce simulator was used.
|
|
|
|
*/
|
2015-03-23 16:12:08 +03:00
|
|
|
void AbstractSpiceKernel::convertToQucsData(const QString &qucs_dataset, bool xyce)
|
2015-01-10 17:26:25 +03:00
|
|
|
{
|
|
|
|
QFile dataset(qucs_dataset);
|
|
|
|
if (dataset.open(QFile::WriteOnly)) {
|
|
|
|
QTextStream ds_stream(&dataset);
|
|
|
|
|
|
|
|
ds_stream<<"<Qucs Dataset " PACKAGE_VERSION ">\n";
|
|
|
|
|
|
|
|
QString sim,indep;
|
|
|
|
QStringList indep_vars;
|
|
|
|
|
2015-05-16 10:40:41 +03:00
|
|
|
QString swp_var,swp_var2;
|
|
|
|
QStringList swp_var_val,swp_var2_val;
|
2015-03-19 19:46:34 +03:00
|
|
|
swp_var.clear();
|
2015-05-16 10:40:41 +03:00
|
|
|
swp_var2.clear();
|
2015-03-19 19:46:34 +03:00
|
|
|
swp_var_val.clear();
|
2015-05-16 10:40:41 +03:00
|
|
|
swp_var2_val.clear();
|
2015-03-19 19:46:34 +03:00
|
|
|
|
2015-01-10 17:26:25 +03:00
|
|
|
QList< QList<double> > sim_points;
|
|
|
|
QStringList var_list;
|
|
|
|
bool isComplex = false;
|
2015-03-20 12:38:04 +03:00
|
|
|
bool hasParSweep = false;
|
2015-05-16 10:40:41 +03:00
|
|
|
bool hasDblParSweep = false;
|
2015-01-10 17:26:25 +03:00
|
|
|
|
|
|
|
QString ngspice_output_filename;
|
|
|
|
foreach(ngspice_output_filename,output_files) { // For every simulation convert results to Qucs dataset
|
2015-03-19 11:25:55 +03:00
|
|
|
QString full_outfile = workdir+QDir::separator()+ngspice_output_filename;
|
2015-01-20 15:03:24 +03:00
|
|
|
if (ngspice_output_filename.endsWith("_hb.txt")) {
|
2015-03-19 11:25:55 +03:00
|
|
|
parseHBOutput(full_outfile,sim_points,var_list);
|
2015-01-20 19:21:44 +03:00
|
|
|
isComplex = true;
|
2015-05-18 11:39:58 +03:00
|
|
|
} else if (ngspice_output_filename.endsWith(".four")) {
|
2015-05-31 13:08:11 +03:00
|
|
|
isComplex=false;
|
2015-05-18 14:39:00 +03:00
|
|
|
parseFourierOutput(full_outfile,sim_points,var_list,xyce);
|
2015-05-28 15:20:27 +03:00
|
|
|
} else if (ngspice_output_filename.endsWith(".noise")) {
|
|
|
|
isComplex = false;
|
2015-05-29 15:56:22 +03:00
|
|
|
parseNoiseOutput(full_outfile,sim_points,var_list,hasParSweep);
|
|
|
|
if (hasParSweep) {
|
|
|
|
QString res_file = QDir::convertSeparators(workdir + QDir::separator()
|
|
|
|
+ "spice4qucs.noise.cir.res");
|
|
|
|
parseResFile(res_file,swp_var,swp_var_val);
|
|
|
|
}
|
2015-03-19 11:25:55 +03:00
|
|
|
} else if (ngspice_output_filename.endsWith("_swp.txt")) {
|
2015-03-20 12:38:04 +03:00
|
|
|
hasParSweep = true;
|
2015-03-19 19:46:34 +03:00
|
|
|
QString simstr = full_outfile;
|
|
|
|
simstr.remove("_swp.txt");
|
2015-05-16 10:40:41 +03:00
|
|
|
if (ngspice_output_filename.endsWith("_swp_swp.txt")) { // 2-var parameter sweep
|
|
|
|
hasDblParSweep = true;
|
|
|
|
simstr.chop(4);
|
|
|
|
simstr = simstr.split('_').last();
|
|
|
|
QString res2_file = QDir::convertSeparators(workdir + QDir::separator()
|
|
|
|
+ "spice4qucs." + simstr + ".cir.res1");
|
|
|
|
parseResFile(res2_file,swp_var2,swp_var2_val);
|
|
|
|
} else {
|
|
|
|
simstr = simstr.split('_').last();
|
|
|
|
}
|
|
|
|
|
2015-05-05 15:24:06 +03:00
|
|
|
QString res_file = QDir::convertSeparators(workdir + QDir::separator()
|
2015-03-23 16:12:08 +03:00
|
|
|
+ "spice4qucs." + simstr + ".cir.res");
|
2015-03-19 19:46:34 +03:00
|
|
|
parseResFile(res_file,swp_var,swp_var_val);
|
|
|
|
|
2015-04-01 19:30:34 +03:00
|
|
|
if (ngspice_output_filename.endsWith("_hb_swp.txt")) {
|
|
|
|
parseHBSTEPOutput(full_outfile,sim_points,var_list,isComplex);
|
|
|
|
} else {
|
|
|
|
parseSTEPOutput(full_outfile,sim_points,var_list,isComplex);
|
|
|
|
}
|
|
|
|
|
2015-05-16 10:40:41 +03:00
|
|
|
|
2015-01-20 15:03:24 +03:00
|
|
|
} else {
|
2015-05-19 09:37:33 +03:00
|
|
|
hasParSweep = checkRawOutupt(full_outfile,swp_var_val);
|
|
|
|
if (hasParSweep) {
|
|
|
|
swp_var = "Number";
|
|
|
|
parseSTEPOutput(full_outfile,sim_points,var_list,isComplex);
|
|
|
|
} else {
|
|
|
|
parseNgSpiceSimOutput(full_outfile,sim_points,var_list,isComplex);
|
|
|
|
}
|
2015-01-20 15:03:24 +03:00
|
|
|
}
|
2015-01-18 11:21:25 +03:00
|
|
|
if (var_list.isEmpty()) continue; // notning to convert
|
2015-01-17 18:34:44 +03:00
|
|
|
normalizeVarsNames(var_list);
|
2015-03-20 17:40:23 +03:00
|
|
|
|
2015-01-10 17:26:25 +03:00
|
|
|
QString indep = var_list.first();
|
|
|
|
QList<double> sim_point;
|
2015-03-20 17:40:23 +03:00
|
|
|
|
|
|
|
|
2015-03-20 12:38:04 +03:00
|
|
|
if (hasParSweep) {
|
2015-05-16 10:40:41 +03:00
|
|
|
int indep_cnt;
|
|
|
|
if (hasDblParSweep) indep_cnt = sim_points.count()/(swp_var_val.count()*swp_var2_val.count());
|
|
|
|
else indep_cnt = sim_points.count()/swp_var_val.count();
|
2015-05-29 15:56:22 +03:00
|
|
|
if (!indep.isEmpty()) {
|
|
|
|
ds_stream<<QString("<indep %1 %2>\n").arg(indep).arg(indep_cnt); // output indep var: TODO: parameter sweep
|
|
|
|
for (int i=0;i<indep_cnt;i++) {
|
|
|
|
ds_stream<<QString::number(sim_points.at(i).at(0),'e',12)<<endl;
|
|
|
|
}
|
|
|
|
ds_stream<<"</indep>\n";
|
2015-03-20 17:40:23 +03:00
|
|
|
}
|
|
|
|
|
2015-03-20 12:38:04 +03:00
|
|
|
ds_stream<<QString("<indep %1 %2>\n").arg(swp_var).arg(swp_var_val.count());
|
|
|
|
foreach (QString val,swp_var_val) {
|
|
|
|
ds_stream<<val<<endl;
|
|
|
|
}
|
|
|
|
ds_stream<<"</indep>\n";
|
2015-05-29 15:56:22 +03:00
|
|
|
if (indep.isEmpty()) indep = swp_var;
|
|
|
|
else indep += " " + swp_var;
|
2015-05-16 10:40:41 +03:00
|
|
|
if (hasDblParSweep) {
|
|
|
|
ds_stream<<QString("<indep %1 %2>\n").arg(swp_var2).arg(swp_var2_val.count());
|
|
|
|
foreach (QString val,swp_var2_val) {
|
|
|
|
ds_stream<<val<<endl;
|
|
|
|
}
|
|
|
|
ds_stream<<"</indep>\n";
|
|
|
|
indep += " " + swp_var2;
|
|
|
|
}
|
2015-05-28 15:20:27 +03:00
|
|
|
} else if (!indep.isEmpty()) {
|
2015-03-20 17:40:23 +03:00
|
|
|
ds_stream<<QString("<indep %1 %2>\n").arg(indep).arg(sim_points.count()); // output indep var: TODO: parameter sweep
|
|
|
|
foreach (sim_point,sim_points) {
|
|
|
|
ds_stream<<QString::number(sim_point.at(0),'e',12)<<endl;
|
|
|
|
}
|
|
|
|
ds_stream<<"</indep>\n";
|
2015-03-20 12:38:04 +03:00
|
|
|
}
|
2015-03-20 17:40:23 +03:00
|
|
|
|
2015-01-10 17:26:25 +03:00
|
|
|
for(int i=1;i<var_list.count();i++) { // output dep var
|
2015-05-28 15:20:27 +03:00
|
|
|
if (indep.isEmpty()) ds_stream<<QString("<indep %1 %2>\n").arg(var_list.at(i)).arg(sim_points.count());
|
|
|
|
else ds_stream<<QString("<dep %1 %2>\n").arg(var_list.at(i)).arg(indep);
|
2015-01-10 17:26:25 +03:00
|
|
|
foreach (sim_point,sim_points) {
|
|
|
|
if (isComplex) {
|
|
|
|
double re=sim_point.at(2*(i-1)+1);
|
|
|
|
double im = sim_point.at(2*i);
|
|
|
|
QString s;
|
|
|
|
s += QString::number(re,'e',12);
|
|
|
|
if (im<0) s += "-j";
|
|
|
|
else s += "+j";
|
|
|
|
s += QString::number(fabs(im),'e',12) + "\n";
|
|
|
|
ds_stream<<s;
|
|
|
|
} else {
|
|
|
|
ds_stream<<QString::number(sim_point.at(i),'e',12)<<endl;
|
|
|
|
}
|
|
|
|
}
|
2015-05-28 15:20:27 +03:00
|
|
|
if (indep.isEmpty()) ds_stream<<"</indep>\n";
|
|
|
|
else ds_stream<<"</dep>\n";
|
2015-01-10 17:26:25 +03:00
|
|
|
}
|
2015-03-20 12:38:04 +03:00
|
|
|
hasParSweep = false;
|
2015-01-10 17:26:25 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
dataset.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-24 13:37:56 +03:00
|
|
|
/*!
|
|
|
|
* \brief AbstractSpiceKernel::normalizeVarsNames Convert spice-style variable names to
|
|
|
|
* Qucs style and add simualation type prefix (i.e. AC, TRAN, DC). Conversion
|
|
|
|
* for harmonic balance variable and current probes variables are supported.
|
|
|
|
* \param var_list This list contains variable names that need normalization.
|
|
|
|
*/
|
2015-01-17 18:34:44 +03:00
|
|
|
void AbstractSpiceKernel::normalizeVarsNames(QStringList &var_list)
|
|
|
|
{
|
|
|
|
QString prefix="";
|
2015-03-22 17:11:27 +03:00
|
|
|
QString iprefix="";
|
2015-01-17 18:34:44 +03:00
|
|
|
QString indep = var_list.first();
|
2015-01-20 19:21:44 +03:00
|
|
|
bool HB = false;
|
2015-01-17 18:34:44 +03:00
|
|
|
indep = indep.toLower();
|
|
|
|
if (indep=="time") {
|
|
|
|
prefix = "tran.";
|
2015-03-22 17:11:27 +03:00
|
|
|
iprefix = "i(tran.";
|
2015-01-17 18:34:44 +03:00
|
|
|
} else if (indep=="frequency") {
|
|
|
|
prefix = "ac.";
|
2015-03-22 17:11:27 +03:00
|
|
|
iprefix = "i(ac.";
|
2015-01-20 19:21:44 +03:00
|
|
|
} else if (indep=="hbfrequency") {
|
|
|
|
HB = true;
|
2015-01-17 18:34:44 +03:00
|
|
|
}
|
|
|
|
|
2015-03-22 17:11:27 +03:00
|
|
|
QStringList::iterator it=var_list.begin();
|
|
|
|
|
|
|
|
for (it++;it!=var_list.end();it++) {
|
|
|
|
if ((!(it->startsWith(prefix)||it->startsWith(iprefix)))||(HB)) {
|
|
|
|
if (HB) {
|
|
|
|
int idx = it->indexOf('('); // Add .Vb suffix for correct display
|
|
|
|
int cnt = it->count();
|
|
|
|
*it = it->right(cnt-idx-1); // Only node.Vb is displayed correctly
|
|
|
|
it->remove(')');
|
|
|
|
*it += ".Vb";
|
|
|
|
} else {
|
|
|
|
*it = prefix + *it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
QStringList lst = it->split('(');
|
|
|
|
if (lst.count()>1) {
|
|
|
|
QRegExp ivprobe_pattern("^[Vv][Pp][Rr][0-9]+.*");
|
|
|
|
QRegExp ivprobe_pattern_ngspice("^(ac\\.|tran\\.)[Vv][Pp][Rr][0-9]+.*");
|
|
|
|
if (ivprobe_pattern.exactMatch(lst.at(1))) {
|
|
|
|
lst[1].remove(0,1);
|
|
|
|
*it = lst.join("(");
|
|
|
|
} else if (ivprobe_pattern_ngspice.exactMatch(lst.at(1))) {
|
|
|
|
lst[1].replace(".v",".",Qt::CaseInsensitive);
|
|
|
|
*it = lst.join("(");
|
2015-01-17 18:34:44 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-03-22 17:11:27 +03:00
|
|
|
|
2015-01-17 18:34:44 +03:00
|
|
|
}
|
2015-01-10 17:26:25 +03:00
|
|
|
|
2015-04-24 13:37:56 +03:00
|
|
|
/*!
|
|
|
|
* \brief AbstractSpiceKernel::slotErrors Simulator errors handler
|
|
|
|
* \param err
|
|
|
|
*/
|
2015-01-10 17:26:25 +03:00
|
|
|
void AbstractSpiceKernel::slotErrors(QProcess::ProcessError err)
|
|
|
|
{
|
|
|
|
emit errors(err);
|
|
|
|
}
|
|
|
|
|
2015-04-24 13:37:56 +03:00
|
|
|
/*!
|
|
|
|
* \brief AbstractSpiceKernel::slotFinished Simulation process normal finish handler
|
|
|
|
*/
|
2015-01-10 17:26:25 +03:00
|
|
|
void AbstractSpiceKernel::slotFinished()
|
|
|
|
{
|
2015-05-04 12:18:45 +03:00
|
|
|
//output.clear();
|
|
|
|
output += SimProcess->readAllStandardOutput();
|
2015-01-10 17:26:25 +03:00
|
|
|
emit finished();
|
2015-05-04 14:07:38 +03:00
|
|
|
emit progress(100);
|
2015-05-04 12:18:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* \brief AbstractSpiceKernel::slotProcessOutput Process SimProcess output and report progress
|
|
|
|
*/
|
|
|
|
void AbstractSpiceKernel::slotProcessOutput()
|
|
|
|
{
|
|
|
|
|
2015-01-10 17:26:25 +03:00
|
|
|
}
|
|
|
|
|
2015-04-24 13:37:56 +03:00
|
|
|
/*!
|
|
|
|
* \brief AbstractSpiceKernel::getOutput Get sdtout and stderr output of simulation
|
|
|
|
* process.
|
|
|
|
* \return Simulation process output
|
|
|
|
*/
|
2015-01-10 17:26:25 +03:00
|
|
|
QString AbstractSpiceKernel::getOutput()
|
|
|
|
{
|
|
|
|
return output;
|
|
|
|
}
|
2015-04-21 14:41:00 +03:00
|
|
|
|
2015-04-24 13:37:56 +03:00
|
|
|
/*!
|
|
|
|
* \brief AbstractSpiceKernel::setSimulatorCmd Set simualtor executable location
|
|
|
|
* \param cmd Simulator executable absolute path. For example /usr/bin/ngspice
|
|
|
|
*/
|
2015-04-21 14:41:00 +03:00
|
|
|
void AbstractSpiceKernel::setSimulatorCmd(QString cmd)
|
|
|
|
{
|
|
|
|
simulator_cmd = cmd;
|
|
|
|
}
|
2015-04-21 15:38:38 +03:00
|
|
|
|
2015-07-13 10:18:26 +03:00
|
|
|
/*!
|
|
|
|
* \brief AbstractSpiceKernel::setWorkdir Set simulator working directory path
|
|
|
|
* to store netlist and temp data.
|
|
|
|
* \param path[in] New working directory path
|
|
|
|
*/
|
|
|
|
void AbstractSpiceKernel::setWorkdir(QString path)
|
|
|
|
{
|
|
|
|
workdir = path;
|
|
|
|
QFileInfo inf(workdir);
|
|
|
|
if (!inf.exists()) {
|
|
|
|
QDir dir;
|
|
|
|
dir.mkpath(workdir);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-24 13:37:56 +03:00
|
|
|
/*!
|
|
|
|
* \brief AbstractSpiceKernel::SaveNetlist Save netlist to file. Reimplemented
|
|
|
|
* in Ngspice and Xyce classes.
|
|
|
|
*/
|
2015-04-21 15:38:38 +03:00
|
|
|
void AbstractSpiceKernel::SaveNetlist(QString)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2015-07-21 17:32:52 +03:00
|
|
|
|
|
|
|
bool AbstractSpiceKernel::waitEndOfSimulation()
|
|
|
|
{
|
|
|
|
return SimProcess->waitForFinished(10000);
|
|
|
|
}
|