mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Added .INCLUDE directive processing
This commit is contained in:
parent
574ffd977d
commit
74ee769bef
@ -47,11 +47,11 @@ S4Q_Include::S4Q_Include()
|
||||
Name = "SpiceInclude";
|
||||
SpiceModel = ".INCLUDE";
|
||||
|
||||
Props.append(new Property("Filename_1", "~/home/user/library.inc", true,"SPICE file to include"));
|
||||
Props.append(new Property("Filename_2", "", false,"SPICE file to include"));
|
||||
Props.append(new Property("Filename_3", "", false,"SPICE file to include"));
|
||||
Props.append(new Property("Filename_4", "", false,"SPICE file to include"));
|
||||
Props.append(new Property("Filename_5", "", false,"SPICE file to include"));
|
||||
Props.append(new Property("File", "~/home/user/library.inc", true,"SPICE file to include"));
|
||||
Props.append(new Property("File", "", false,"SPICE file to include"));
|
||||
Props.append(new Property("File", "", false,"SPICE file to include"));
|
||||
Props.append(new Property("File", "", false,"SPICE file to include"));
|
||||
Props.append(new Property("File", "", false,"SPICE file to include"));
|
||||
}
|
||||
|
||||
S4Q_Include::~S4Q_Include()
|
||||
@ -80,7 +80,7 @@ QString S4Q_Include::getSpiceModel()
|
||||
|
||||
foreach (Property *pp, Props) {
|
||||
QString val = pp->Value;
|
||||
if (!val.isEmpty()) s += SpiceModel + " " + pp->Value;
|
||||
if (!val.isEmpty()) s += QString("%1 \"%2\"\n").arg(SpiceModel).arg(pp->Value);
|
||||
}
|
||||
|
||||
return s;
|
||||
|
@ -127,6 +127,15 @@ bool AbstractSpiceKernel::checkSchematic(QStringList &incompat)
|
||||
void AbstractSpiceKernel::startNetlist(QTextStream &stream, bool xyce)
|
||||
{
|
||||
QString s;
|
||||
|
||||
// Include Directives
|
||||
for(Component *pc = Sch->DocComps.first(); pc != 0; pc = Sch->DocComps.next()) {
|
||||
if (pc->SpiceModel==".INCLUDE") {
|
||||
s = pc->getSpiceModel();
|
||||
stream<<s;
|
||||
}
|
||||
}
|
||||
|
||||
// Parameters, Initial conditions, Options
|
||||
for(Component *pc = Sch->DocComps.first(); pc != 0; pc = Sch->DocComps.next()) {
|
||||
if (pc->isEquation) {
|
||||
@ -147,8 +156,10 @@ void AbstractSpiceKernel::startNetlist(QTextStream &stream, bool xyce)
|
||||
|
||||
// Modelcards
|
||||
for(Component *pc = Sch->DocComps.first(); pc != 0; pc = Sch->DocComps.next()) {
|
||||
s = pc->getSpiceModel();
|
||||
stream<<s;
|
||||
if (pc->SpiceModel==".MODEL") {
|
||||
s = pc->getSpiceModel();
|
||||
stream<<s;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user