Fix Xyce IC for Tline

This commit is contained in:
Vadim Kuznetsov 2025-03-21 16:16:03 +03:00
parent 36c29e226e
commit b058169b94

View File

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