Corrected an issue in ext2spice in which devices extracted as

ideal, unmodeled capacitors or resistors are missing a space
between the 2nd terminal and the device value in the output
netlist.  This affects the ability to produce correct output
for, for example, a metal fingered capacitor using the
"device" property to generate an ideal capacitor in the
netlist.
This commit is contained in:
R. Timothy Edwards 2026-03-15 15:40:10 -04:00
parent 04e91d640d
commit fee4b887c0
2 changed files with 3 additions and 1 deletions

View File

@ -1 +1 @@
8.3.620
8.3.621

View File

@ -3140,6 +3140,7 @@ spcdevVisit(
if (!has_model)
{
fprintf(esSpiceF, " ");
esSIvalue(esSpiceF, 1.0E-15 * (double)sdM * (double)dev->dev_cap);
spcWriteParams(dev, hierName, scale, l, w, sdM, FALSE);
}
@ -3186,6 +3187,7 @@ spcdevVisit(
if (!has_model)
{
fprintf(esSpiceF, " ");
esSIvalue(esSpiceF, 1.0E-15 * (double)sdM * (double)dev->dev_cap);
spcWriteParams(dev, hierName, scale, l, w, sdM, FALSE);
}