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"
|
|
|
|
#include "../paintings/id_text.h"
|
2015-01-31 10:22:13 +03:00
|
|
|
#include <QTextEdit>
|
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_;
|
|
|
|
|
|
|
|
workdir = QDir::convertSeparators(QDir::homePath()+"/.qucs/spice4qucs");
|
|
|
|
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()));
|
|
|
|
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;
|
|
|
|
QTextEdit *err = new QTextEdit;
|
2015-02-01 14:46:43 +03:00
|
|
|
Sch->prepareNetlist(stream,collect,err,true,xyce);
|
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-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-03-01 12:15:22 +03:00
|
|
|
if(!prepareSpiceNetlist(stream,xyce)) return; // Unable to perform spice simulation
|
|
|
|
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
|
|
|
qDebug()<<NumVars;
|
|
|
|
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
|
|
|
qDebug()<<dep_var;
|
|
|
|
var_list.append(dep_var);
|
|
|
|
}
|
|
|
|
qDebug()<<var_list;
|
|
|
|
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();
|
|
|
|
qDebug()<<vars1;
|
|
|
|
}
|
|
|
|
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);
|
|
|
|
qDebug()<<sim_point;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ofile.close();
|
|
|
|
}
|
2015-01-19 18:19:44 +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
|
|
|
qDebug()<<NumVars;
|
|
|
|
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
|
|
|
qDebug()<<dep_var;
|
|
|
|
var_list.append(dep_var);
|
|
|
|
}
|
|
|
|
qDebug()<<var_list;
|
|
|
|
header_parsed = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lin=="Values:") {
|
|
|
|
start_values_sec = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (start_values_sec) {
|
|
|
|
QList<double> sim_point;
|
|
|
|
bool ok = false;
|
|
|
|
qDebug()<<lin;
|
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-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-03-19 19:46:34 +03:00
|
|
|
QString swp_var;
|
|
|
|
QStringList swp_var_val;
|
|
|
|
swp_var.clear();
|
|
|
|
swp_var_val.clear();
|
|
|
|
|
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-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-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");
|
|
|
|
simstr = simstr.split('_').last();
|
2015-03-23 16:12:08 +03:00
|
|
|
QString res_file;
|
|
|
|
if (xyce) res_file = QDir::convertSeparators(workdir + QDir::separator()
|
|
|
|
+ "spice4qucs." + simstr + ".cir.res");
|
|
|
|
else res_file = QDir::convertSeparators(workdir + QDir::separator()
|
|
|
|
+ "spice4qucs.cir.res");
|
2015-03-19 19:46:34 +03:00
|
|
|
qDebug()<<res_file;
|
|
|
|
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-01-20 15:03:24 +03:00
|
|
|
} else {
|
2015-03-19 11:25:55 +03:00
|
|
|
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-03-20 17:40:23 +03:00
|
|
|
|
|
|
|
int indep_cnt = sim_points.count()/swp_var_val.count();
|
|
|
|
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 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";
|
|
|
|
indep += " " + swp_var;
|
2015-03-20 17:40:23 +03:00
|
|
|
} else {
|
|
|
|
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
|
|
|
|
ds_stream<<QString("<dep %1 %2>\n").arg(var_list.at(i)).arg(indep);
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ds_stream<<"</dep>\n";
|
|
|
|
}
|
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
|
|
|
qDebug()<<"norm:"<<indep;
|
|
|
|
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()
|
|
|
|
{
|
|
|
|
output.clear();
|
|
|
|
output = SimProcess->readAllStandardOutput();
|
|
|
|
emit finished();
|
|
|
|
}
|
|
|
|
|
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-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)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|