mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
commit
801da6c1a0
@ -123,15 +123,17 @@ void Ngspice::createNetlist(QTextStream &stream, int ,
|
|||||||
|
|
||||||
stream << "\n.control\n\n"; //execute simulations
|
stream << "\n.control\n\n"; //execute simulations
|
||||||
|
|
||||||
if (!QucsMain->ProjName.isEmpty()) {
|
if (QucsMain != nullptr) { // if not run from CLI
|
||||||
// always load osdi from the project directory
|
if (!QucsMain->ProjName.isEmpty()) {
|
||||||
QStringList osdi_ext;
|
// always load osdi from the project directory
|
||||||
osdi_ext<<"*.osdi";
|
QStringList osdi_ext;
|
||||||
QStringList osdi_files = QucsSettings.QucsWorkDir.entryList(osdi_ext,QDir::Files);
|
osdi_ext<<"*.osdi";
|
||||||
for(const auto &file : osdi_files) {
|
QStringList osdi_files = QucsSettings.QucsWorkDir.entryList(osdi_ext,QDir::Files);
|
||||||
QString abs_file = QucsSettings.QucsWorkDir.absolutePath() +
|
for(const auto &file : osdi_files) {
|
||||||
QDir::separator() + file;
|
QString abs_file = QucsSettings.QucsWorkDir.absolutePath() +
|
||||||
stream<<QString("pre_osdi '%1'\n").arg(abs_file);
|
QDir::separator() + file;
|
||||||
|
stream<<QString("pre_osdi '%1'\n").arg(abs_file);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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