mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Fix qucsator simulation for AC source
This commit is contained in:
parent
f1a1445022
commit
43eebdb71e
@ -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';
|
||||
}
|
||||
|
@ -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
|
||||
|
@ -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';
|
||||
|
Loading…
x
Reference in New Issue
Block a user