Enable tc conversion also for L and C
Even is PSPICE manual does not mention this, device model makers are using this option.
This commit is contained in:
parent
63b4cf05de
commit
6a1b6ced18
|
|
@ -7242,7 +7242,7 @@ pspice_compat(struct card *oldcard)
|
|||
continue;
|
||||
}
|
||||
|
||||
if (*cut_line == 'r') {
|
||||
if (*cut_line == 'r' || *cut_line == 'l' || *cut_line == 'c') {
|
||||
char *tctok = search_plain_identifier(cut_line, "tc");
|
||||
if (tctok) {
|
||||
char *tctok1 = strchr(tctok,'=');
|
||||
|
|
|
|||
Loading…
Reference in New Issue