mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
commit
801da6c1a0
@ -123,6 +123,7 @@ void Ngspice::createNetlist(QTextStream &stream, int ,
|
|||||||
|
|
||||||
stream << "\n.control\n\n"; //execute simulations
|
stream << "\n.control\n\n"; //execute simulations
|
||||||
|
|
||||||
|
if (QucsMain != nullptr) { // if not run from CLI
|
||||||
if (!QucsMain->ProjName.isEmpty()) {
|
if (!QucsMain->ProjName.isEmpty()) {
|
||||||
// always load osdi from the project directory
|
// always load osdi from the project directory
|
||||||
QStringList osdi_ext;
|
QStringList osdi_ext;
|
||||||
@ -134,6 +135,7 @@ void Ngspice::createNetlist(QTextStream &stream, int ,
|
|||||||
stream<<QString("pre_osdi '%1'\n").arg(abs_file);
|
stream<<QString("pre_osdi '%1'\n").arg(abs_file);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// determine which simulations are in use
|
// determine which simulations are in use
|
||||||
unsigned int dcSims = 0;
|
unsigned int dcSims = 0;
|
||||||
|
@ -369,6 +369,7 @@ Schematic *openSchematic(QString schematic)
|
|||||||
int doNetlist(QString schematic, QString netlist)
|
int doNetlist(QString schematic, QString netlist)
|
||||||
{
|
{
|
||||||
QucsSettings.DefaultSimulator = spicecompat::simQucsator;
|
QucsSettings.DefaultSimulator = spicecompat::simQucsator;
|
||||||
|
Module::registerModules();
|
||||||
Schematic *sch = openSchematic(schematic);
|
Schematic *sch = openSchematic(schematic);
|
||||||
if (sch == NULL) {
|
if (sch == NULL) {
|
||||||
return 1;
|
return 1;
|
||||||
@ -473,6 +474,7 @@ int runXyce(QString schematic, QString dataset)
|
|||||||
int doNgspiceNetlist(QString schematic, QString netlist)
|
int doNgspiceNetlist(QString schematic, QString netlist)
|
||||||
{
|
{
|
||||||
QucsSettings.DefaultSimulator = spicecompat::simNgspice;
|
QucsSettings.DefaultSimulator = spicecompat::simNgspice;
|
||||||
|
Module::registerModules();
|
||||||
Schematic *sch = openSchematic(schematic);
|
Schematic *sch = openSchematic(schematic);
|
||||||
if (sch == NULL) {
|
if (sch == NULL) {
|
||||||
return 1;
|
return 1;
|
||||||
@ -488,6 +490,7 @@ int doNgspiceNetlist(QString schematic, QString netlist)
|
|||||||
int doXyceNetlist(QString schematic, QString netlist)
|
int doXyceNetlist(QString schematic, QString netlist)
|
||||||
{
|
{
|
||||||
QucsSettings.DefaultSimulator = spicecompat::simXyce;
|
QucsSettings.DefaultSimulator = spicecompat::simXyce;
|
||||||
|
Module::registerModules();
|
||||||
Schematic *sch = openSchematic(schematic);
|
Schematic *sch = openSchematic(schematic);
|
||||||
if (sch == NULL) {
|
if (sch == NULL) {
|
||||||
return 1;
|
return 1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user