mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Make DC SENS working for Xyce
This commit is contained in:
parent
4f0100030e
commit
c69673fe02
@ -73,7 +73,7 @@ ComponentDialog::ComponentDialog(Component *c, Schematic *d)
|
||||
(Comp->Model != ".Digi") && (Comp->Model != ".ETR") &&
|
||||
(Comp->Model != ".FOURIER") &&
|
||||
(Comp->Model != ".PZ") && (Comp->Model != ".SENS") &&
|
||||
(Comp->Model != ".SENS_AC")) {
|
||||
(Comp->Model != ".SENS_AC") && (Comp->Model != ".SENS_XYCE")) {
|
||||
QTabWidget *t = new QTabWidget(this);
|
||||
all->addWidget(t);
|
||||
|
||||
|
@ -52,6 +52,7 @@ void Xyce::determineUsedSimulations()
|
||||
if (sim_typ==".NOISE") simulationsQueue.append("noise");
|
||||
if (sim_typ==".TR") simulationsQueue.append("tran");
|
||||
if (sim_typ==".HB") simulationsQueue.append("hb");
|
||||
if (sim_typ==".SENS_XYCE") simulationsQueue.append("sens");
|
||||
if (sim_typ==".XYCESCR") simulationsQueue.append(pc->Name); // May be >= XYCE scripts
|
||||
if ((sim_typ==".SW")&&
|
||||
(pc->Props.at(0)->Value.startsWith("DC"))) simulationsQueue.append("dc");
|
||||
@ -153,6 +154,7 @@ void Xyce::createNetlist(QTextStream &stream, int , QStringList &simulations,
|
||||
QString s = pc->getSpiceNetlist(true);
|
||||
if ((sim_typ==".AC")&&(sim=="ac")) stream<<s;
|
||||
if ((sim_typ==".NOISE")&&(sim=="noise")) stream<<s;
|
||||
if ((sim_typ==".SENS_XYCE")&&(sim=="sens")) stream<<s;
|
||||
if (sim==pc->Name) stream<<s; // Xyce scripts
|
||||
if ((sim_typ==".TR")&&(sim=="tran")){
|
||||
stream<<s;
|
||||
@ -216,6 +218,9 @@ void Xyce::createNetlist(QTextStream &stream, int , QStringList &simulations,
|
||||
filename += "_std";
|
||||
write_str = QString(".PRINT noise file=%1 inoise onoise\n").arg(filename);
|
||||
outputs.append(filename);
|
||||
} else if (sim=="sens") {
|
||||
write_str.clear();
|
||||
outputs.append("spice4qucs.sens.cir.SENS.prn");
|
||||
} else {
|
||||
write_str = QString(".PRINT %1 format=raw file=%2 %3\n").arg(sim).arg(filename).arg(nods);
|
||||
outputs.append(filename);
|
||||
|
Loading…
x
Reference in New Issue
Block a user