Fix qucsator simulation for AC source

This commit is contained in:
Vadim Kuznetsov 2024-01-14 18:20:26 +03:00
parent f1a1445022
commit 43eebdb71e
3 changed files with 19 additions and 1 deletions

View File

@ -167,3 +167,19 @@ QString Source_ac::spice_netlist(bool isXyce)
return ngspice_netlist();
}
}
QString Source_ac::netlist()
{
QString s = Model+":"+Name;
// output all node names
for (Port *p1 : Ports)
s += " "+p1->Connection->Name; // node names
// output all properties
for(unsigned int i=0; i <= Props.count()-2; i++)
if(Props.at(i)->Name != "EnableTran")
s += " "+Props.at(i)->Name+"=\""+Props.at(i)->Value+"\"";
return s + '\n';
}

View File

@ -29,7 +29,9 @@ public:
~Source_ac();
Component* newOne();
static Element* info(QString&, char* &, bool getNewOne=false);
protected:
QString spice_netlist(bool isXyce);
QString netlist();
};
#endif

View File

@ -130,7 +130,7 @@ QString vRect::netlist()
// output all properties
for(unsigned int i=0; i <= Props.count()-2; i++)
if(Props.at(i)->Name != "Symbol")
if(Props.at(i)->Name != "U0")
s += " "+Props.at(i)->Name+"=\""+Props.at(i)->Value+"\"";
return s + '\n';