Exclude B voltage source, whan '.probe alli' is used.
It already gets a bxx#branch for current measurement.
This commit is contained in:
parent
2813a943a7
commit
75a8037f0c
|
|
@ -240,6 +240,10 @@ void inp_probe(struct card* deck)
|
||||||
if (strchr("ehvk", *instname))
|
if (strchr("ehvk", *instname))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
/* exclude B voltage source */
|
||||||
|
if (strchr("b", *instname) && strstr(curr_line, "v="))
|
||||||
|
continue;
|
||||||
|
|
||||||
/* exclude a devices (code models may have special characters in their instance line.
|
/* exclude a devices (code models may have special characters in their instance line.
|
||||||
digital nodes should not get V sources in series anyway.) */
|
digital nodes should not get V sources in series anyway.) */
|
||||||
if ('a' == *instname)
|
if ('a' == *instname)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue