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
|
||||
|
||||
if (!QucsMain->ProjName.isEmpty()) {
|
||||
// always load osdi from the project directory
|
||||
QStringList osdi_ext;
|
||||
osdi_ext<<"*.osdi";
|
||||
QStringList osdi_files = QucsSettings.QucsWorkDir.entryList(osdi_ext,QDir::Files);
|
||||
for(const auto &file : osdi_files) {
|
||||
QString abs_file = QucsSettings.QucsWorkDir.absolutePath() +
|
||||
QDir::separator() + file;
|
||||
stream<<QString("pre_osdi '%1'\n").arg(abs_file);
|
||||
if (QucsMain != nullptr) { // if not run from CLI
|
||||
if (!QucsMain->ProjName.isEmpty()) {
|
||||
// always load osdi from the project directory
|
||||
QStringList osdi_ext;
|
||||
osdi_ext<<"*.osdi";
|
||||
QStringList osdi_files = QucsSettings.QucsWorkDir.entryList(osdi_ext,QDir::Files);
|
||||
for(const auto &file : osdi_files) {
|
||||
QString abs_file = QucsSettings.QucsWorkDir.absolutePath() +
|
||||
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)
|
||||
{
|
||||
QucsSettings.DefaultSimulator = spicecompat::simQucsator;
|
||||
Module::registerModules();
|
||||
Schematic *sch = openSchematic(schematic);
|
||||
if (sch == NULL) {
|
||||
return 1;
|
||||
@ -473,6 +474,7 @@ int runXyce(QString schematic, QString dataset)
|
||||
int doNgspiceNetlist(QString schematic, QString netlist)
|
||||
{
|
||||
QucsSettings.DefaultSimulator = spicecompat::simNgspice;
|
||||
Module::registerModules();
|
||||
Schematic *sch = openSchematic(schematic);
|
||||
if (sch == NULL) {
|
||||
return 1;
|
||||
@ -488,6 +490,7 @@ int doNgspiceNetlist(QString schematic, QString netlist)
|
||||
int doXyceNetlist(QString schematic, QString netlist)
|
||||
{
|
||||
QucsSettings.DefaultSimulator = spicecompat::simXyce;
|
||||
Module::registerModules();
|
||||
Schematic *sch = openSchematic(schematic);
|
||||
if (sch == NULL) {
|
||||
return 1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user