Added .INCLUDE directive processing

This commit is contained in:
Vadim Kuznetzov 2015-12-07 17:33:47 +03:00
parent 574ffd977d
commit 74ee769bef
2 changed files with 19 additions and 8 deletions

View File

@ -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;

View File

@ -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;
}
}
}