Set shorted value to Ngspice minR

This commit is contained in:
Vadim Kuznetsov 2024-12-29 10:06:57 +03:00
parent 930c532427
commit 91c21c193d

View File

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