mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Set shorted value to Ngspice minR
This commit is contained in:
parent
930c532427
commit
91c21c193d
@ -804,9 +804,9 @@ QString Component::getSpiceNetlist(bool isXyce) {
|
||||
Port *pp = iport.next();
|
||||
QString Node1 = pp->Connection->Name;
|
||||
s = "";
|
||||
while (iport.hasNext())
|
||||
while (iport.hasNext()) // Add minR resistors
|
||||
s += "R" + Name + QString::number(z++) + " " +
|
||||
Node1 + " " + iport.next()->Connection->Name + " 0\n";
|
||||
Node1 + " " + iport.next()->Connection->Name + " 1e-12\n";
|
||||
|
||||
s.replace(" gnd ", " 0 ");
|
||||
return s;
|
||||
|
Loading…
x
Reference in New Issue
Block a user