mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Fix Xyce IC for Tline
This commit is contained in:
parent
36c29e226e
commit
b058169b94
@ -121,7 +121,11 @@ QString LTL_SPICE::spice_netlist(spicecompat::SpiceDialect dialect /* = spicecom
|
||||
s += QStringLiteral(" NL=%1").arg(Nl);
|
||||
}
|
||||
|
||||
s += QStringLiteral(" IC=%5, %6, %7, %8 \n").arg(V1).arg(I1).arg(V2).arg(I2);
|
||||
if (dialect == spicecompat::SPICEXyce) {
|
||||
s += "\n"; // Xyce doesn't support IC
|
||||
} else {
|
||||
s += QStringLiteral(" IC=%5, %6, %7, %8 \n").arg(V1).arg(I1).arg(V2).arg(I2);
|
||||
}
|
||||
|
||||
return s;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user