qucs_s/qucs/extsimkernels/externsimdialog.cpp

303 lines
10 KiB
C++
Raw Normal View History

2014-11-09 14:59:34 +04:00
/***************************************************************************
abstractspicekernel.cpp
2014-11-09 14:59:34 +04:00
----------------
begin : Sat Jan 10 2015
copyright : (C) 2015 by Vadim Kuznetsov
2014-11-09 14:59:34 +04:00
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
2015-01-14 19:30:27 +03:00
#include "externsimdialog.h"
#include "simsettingsdialog.h"
#include "main.h"
2014-11-07 10:11:12 +04:00
2015-01-13 11:16:20 +03:00
ExternSimDialog::ExternSimDialog(Schematic *sch,QWidget *parent) :
2014-11-07 10:11:12 +04:00
QDialog(parent)
{
Sch = sch;
wasSimulated = false;
2014-11-09 14:48:51 +04:00
2015-07-13 09:09:26 +03:00
workdir = QucsSettings.S4Qworkdir;
2014-11-12 11:31:15 +04:00
QFileInfo inf(workdir);
if (!inf.exists()) {
QDir dir;
dir.mkpath(workdir);
}
ngspice = new Ngspice(sch,this);
2015-01-17 11:03:29 +03:00
xyce = new Xyce(sch,this);
2014-11-09 14:48:51 +04:00
buttonSimulate = new QPushButton(tr("Simulate"),this);
connect(buttonSimulate,SIGNAL(clicked()),this,SLOT(slotStart()));
2015-01-17 11:03:29 +03:00
2014-11-09 14:48:51 +04:00
buttonStopSim = new QPushButton(tr("Stop"),this);
connect(buttonStopSim,SIGNAL(clicked()),ngspice,SLOT(killThemAll()));
2015-07-12 13:29:19 +03:00
connect(buttonStopSim,SIGNAL(clicked()),xyce,SLOT(killThemAll()));
2014-11-09 14:48:51 +04:00
buttonStopSim->setEnabled(false);
buttonSaveNetlist = new QPushButton(tr("Save netlist"),this);
2015-04-21 15:38:38 +03:00
connect(buttonSaveNetlist,SIGNAL(clicked()),this,SLOT(slotSaveNetlist()));
2015-07-12 13:29:19 +03:00
buttonExit = new QPushButton(tr("Exit"),this);
connect(buttonExit,SIGNAL(clicked()),this,SLOT(reject()));
connect(buttonExit,SIGNAL(clicked()),ngspice,SLOT(killThemAll()));
connect(buttonExit,SIGNAL(clicked()),xyce,SLOT(killThemAll()));
2022-02-20 16:25:39 +01:00
QGroupBox *grp_1 = new QGroupBox(tr("Simulation console"),this);
2014-11-09 14:48:51 +04:00
QVBoxLayout *vbl1 = new QVBoxLayout;
2015-01-17 11:03:29 +03:00
editSimConsole = new QPlainTextEdit(this);
QFont font;
font.setFamily("monospace");
font.setPointSize(10);
editSimConsole->setFont(font);
2014-11-09 14:48:51 +04:00
editSimConsole->setReadOnly(true);
vbl1->addWidget(editSimConsole);
2022-02-20 16:25:39 +01:00
grp_1->setLayout(vbl1);
2014-11-09 14:48:51 +04:00
2015-05-04 12:18:45 +03:00
simProgress = new QProgressBar(this);
connect(ngspice,SIGNAL(progress(int)),simProgress,SLOT(setValue(int)));
connect(xyce,SIGNAL(progress(int)),simProgress,SLOT(setValue(int)));
2014-11-09 14:48:51 +04:00
QVBoxLayout *vl_top = new QVBoxLayout;
2022-02-20 16:25:39 +01:00
vl_top->addWidget(grp_1);
2015-05-04 12:18:45 +03:00
vl_top->addWidget(simProgress);
2014-11-09 14:48:51 +04:00
QHBoxLayout *hl1 = new QHBoxLayout;
hl1->addWidget(buttonSimulate);
hl1->addWidget(buttonStopSim);
2015-04-21 15:38:38 +03:00
hl1->addWidget(buttonSaveNetlist);
2015-07-12 13:29:19 +03:00
hl1->addWidget(buttonExit);
2014-11-09 14:48:51 +04:00
vl_top->addLayout(hl1);
this->setLayout(vl_top);
this->setWindowTitle(tr("Simulate with external simulator"));
2015-01-17 11:03:29 +03:00
slotSetSimulator();
buttonSimulate->click(); // Start simulation
}
2015-01-13 11:16:20 +03:00
ExternSimDialog::~ExternSimDialog()
{
ngspice->killThemAll();
}
2015-01-17 11:03:29 +03:00
void ExternSimDialog::slotSetSimulator()
{
switch (QucsSettings.DefaultSimulator) {
case spicecompat::simNgspice: {
2015-04-26 11:07:00 +03:00
xyce->setParallel(false);
connect(ngspice,SIGNAL(started()),this,SLOT(slotNgspiceStarted()));
connect(ngspice,SIGNAL(finished()),this,SLOT(slotProcessOutput()));
connect(ngspice,SIGNAL(errors(QProcess::ProcessError)),this,SLOT(slotNgspiceStartError(QProcess::ProcessError)));
connect(buttonSimulate,SIGNAL(clicked()),ngspice,SLOT(slotSimulate()));
ngspice->setSimulatorCmd(QucsSettings.NgspiceExecutable);
ngspice->setSimulatorParameters(QucsSettings.SimParameters);
2015-01-17 11:03:29 +03:00
}
break;
case spicecompat::simXyceSer: {
2015-04-26 11:07:00 +03:00
xyce->setParallel(false);
2015-01-17 11:03:29 +03:00
connect(xyce,SIGNAL(started()),this,SLOT(slotNgspiceStarted()));
connect(xyce,SIGNAL(finished()),this,SLOT(slotProcessOutput()));
2015-06-13 13:01:11 +03:00
connect(xyce,SIGNAL(errors(QProcess::ProcessError)),this,SLOT(slotNgspiceStartError(QProcess::ProcessError)));
2015-01-17 11:03:29 +03:00
connect(buttonSimulate,SIGNAL(clicked()),xyce,SLOT(slotSimulate()));
xyce->setSimulatorParameters(QucsSettings.SimParameters);
2015-01-17 11:03:29 +03:00
}
break;
case spicecompat::simXycePar: {
#ifdef Q_OS_UNIX
2015-04-26 11:07:00 +03:00
xyce->setParallel(true);
#else
xyce->setParallel(false);
#endif
2015-03-11 10:46:37 +03:00
connect(xyce,SIGNAL(started()),this,SLOT(slotNgspiceStarted()));
connect(xyce,SIGNAL(finished()),this,SLOT(slotProcessOutput()));
2015-06-13 13:01:11 +03:00
connect(xyce,SIGNAL(errors(QProcess::ProcessError)),this,SLOT(slotNgspiceStartError(QProcess::ProcessError)));
2015-03-11 10:46:37 +03:00
connect(buttonSimulate,SIGNAL(clicked()),xyce,SLOT(slotSimulate()));
xyce->setSimulatorParameters(QucsSettings.SimParameters);
2015-01-17 11:03:29 +03:00
}
break;
case spicecompat::simSpiceOpus: {
xyce->setParallel(false);
connect(ngspice,SIGNAL(started()),this,SLOT(slotNgspiceStarted()),Qt::UniqueConnection);
connect(ngspice,SIGNAL(finished()),this,SLOT(slotProcessOutput()),Qt::UniqueConnection);
connect(ngspice,SIGNAL(errors(QProcess::ProcessError)),this,SLOT(slotNgspiceStartError(QProcess::ProcessError)),Qt::UniqueConnection);
connect(buttonSimulate,SIGNAL(clicked()),ngspice,SLOT(slotSimulate()),Qt::UniqueConnection);
ngspice->setSimulatorCmd(QucsSettings.SpiceOpusExecutable);
ngspice->setSimulatorParameters(QucsSettings.SimParameters);
}
break;
2015-01-17 11:03:29 +03:00
default: break;
}
}
2014-11-09 14:48:51 +04:00
void ExternSimDialog::slotProcessOutput()
2014-11-09 14:48:51 +04:00
{
2015-04-21 15:38:38 +03:00
buttonSaveNetlist->setEnabled(true);
2014-11-09 14:48:51 +04:00
buttonStopSim->setEnabled(false);
QString out;
// Set temporary safe output name
QString ext;
switch (QucsSettings.DefaultSimulator) {
case spicecompat::simNgspice:
ext = ".dat.ngspice";
out = ngspice->getOutput();
break;
case spicecompat::simXycePar:
case spicecompat::simXyceSer:
ext = ".dat.xyce";
out = xyce->getOutput();
break;
case spicecompat::simSpiceOpus:
out = ngspice->getOutput();
ext = ".dat.spopus";
break;
default:
out = "dummy";
ext = ".dat";
break;
}
if (out.contains("warning",Qt::CaseInsensitive)||
out.contains("error",Qt::CaseInsensitive)) {
emit warnings();
} else emit success();
2014-11-12 15:51:40 +04:00
//editSimConsole->clear();
editSimConsole->insertPlainText(out);
editSimConsole->moveCursor(QTextCursor::End);
2015-07-12 14:06:27 +03:00
saveLog();
editSimConsole->insertPlainText("Simulation finished\n");
2014-11-12 15:51:40 +04:00
QFileInfo inf(Sch->DocName);
//QString qucs_dataset = inf.canonicalPath()+QDir::separator()+inf.baseName()+"_ngspice.dat";
QString qucs_dataset = inf.canonicalPath()+QDir::separator()+inf.baseName()+ext;
switch (QucsSettings.DefaultSimulator) {
case spicecompat::simNgspice:
case spicecompat::simSpiceOpus:
ngspice->convertToQucsData(qucs_dataset);
break;
case spicecompat::simXycePar:
case spicecompat::simXyceSer:
xyce->convertToQucsData(qucs_dataset);
break;
default:break;
}
emit simulated();
wasSimulated = true;
if (Sch->showBias>0) this->close();
2014-11-12 15:51:40 +04:00
}
2015-01-17 18:04:33 +03:00
2015-01-13 11:16:20 +03:00
void ExternSimDialog::slotNgspiceStarted()
2014-11-12 15:51:40 +04:00
{
editSimConsole->clear();
2015-07-12 10:43:04 +03:00
QString sim;
switch (QucsSettings.DefaultSimulator) {
case spicecompat::simNgspice: sim = "Ngspice";
2015-07-12 10:43:04 +03:00
break;
case spicecompat::simXyceSer: sim = "Xyce (serial) ";
2015-07-12 10:43:04 +03:00
break;
case spicecompat::simXycePar: sim = "Xyce (parallel) ";
2015-07-12 10:43:04 +03:00
break;
default: sim = "Simulator "; // Some other simulators could be added ...
break;
}
editSimConsole->insertPlainText(sim + tr(" started...\n"));
2014-11-12 15:51:40 +04:00
}
2015-06-13 13:01:11 +03:00
void ExternSimDialog::slotNgspiceStartError(QProcess::ProcessError err)
2014-11-12 15:51:40 +04:00
{
2015-06-13 13:01:11 +03:00
QString msg;
switch (err) {
case QProcess::FailedToStart : msg = tr("Failed to start simulator!");
break;
case QProcess::Crashed : msg = tr("Simulator crashed!");
break;
default : msg = tr("Simulator error!");
2015-06-13 13:01:11 +03:00
}
QMessageBox::critical(this,tr("Simulate with SPICE"),msg,QMessageBox::Ok);
2015-07-13 10:40:05 +03:00
QString sim;
switch (QucsSettings.DefaultSimulator) {
case spicecompat::simNgspice: sim = "Ngspice";
2015-07-13 10:40:05 +03:00
break;
case spicecompat::simXyceSer: sim = "Xyce (serial) ";
2015-07-13 10:40:05 +03:00
break;
case spicecompat::simXycePar: sim = "Xyce (parallel) ";
2015-07-13 10:40:05 +03:00
break;
default: sim = "Simulator "; // Some other simulators could be added ...
break;
}
editSimConsole->insertPlainText(sim + tr(" error..."));
}
2015-01-13 11:16:20 +03:00
void ExternSimDialog::slotStart()
{
buttonStopSim->setEnabled(true);
2015-04-21 15:38:38 +03:00
buttonSaveNetlist->setEnabled(false);
2014-11-07 10:11:12 +04:00
}
2015-01-13 11:16:20 +03:00
void ExternSimDialog::slotStop()
{
buttonStopSim->setEnabled(false);
2015-04-21 15:38:38 +03:00
buttonSaveNetlist->setEnabled(true);
ngspice->killThemAll();
}
2015-04-21 15:38:38 +03:00
void ExternSimDialog::slotSaveNetlist()
{
2015-07-14 08:58:58 +03:00
QFileInfo inf(Sch->DocName);
QString filename = QFileDialog::getSaveFileName(this,tr("Save netlist"),inf.path()+QDir::separator()+"netlist.cir",
2015-04-21 15:38:38 +03:00
"All files (*)");
2015-06-13 13:16:43 +03:00
if (filename.isEmpty()) return;
2015-04-21 15:38:38 +03:00
switch (QucsSettings.DefaultSimulator) {
2016-05-10 13:38:00 +03:00
case spicecompat::simNgspice:
case spicecompat::simSpiceOpus: {
2015-04-21 15:38:38 +03:00
ngspice->SaveNetlist(filename);
}
break;
case spicecompat::simXyceSer:
case spicecompat::simXycePar: {
2015-04-21 15:38:38 +03:00
xyce->SaveNetlist(filename);
}
break;
default: break;
}
if (!QFile::exists(filename)) {
QMessageBox::critical(0, QObject::tr("Save netlist"),
QObject::tr("Disk write error!"), QMessageBox::Ok);
}
}
2014-11-10 16:15:44 +04:00
2015-07-12 14:06:27 +03:00
void ExternSimDialog::saveLog()
{
QString filename = QucsSettings.QucsHomeDir.filePath("log.txt");
QFile log(filename);
if (log.open(QIODevice::WriteOnly)) {
QTextStream ts_log(&log);
ts_log<<editSimConsole->toPlainText();
log.flush();
log.close();
}
}