Browse Source

Independent variable `temper' now returns the temperature in degree C

h_vogt 14 years ago
parent
commit
a820a7cba8
  1. 2
      src/spicelib/parser/ifeval.c

2
src/spicelib/parser/ifeval.c

@ -150,7 +150,7 @@ PTeval(INPparseNode * tree, double gmin, double *res, double *vals)
break;
case PT_TEMPERATURE:
*res = ((CKTcircuit*) tree->data) -> CKTtemp;
*res = ((CKTcircuit*) tree->data) -> CKTtemp - CONSTCtoK;
break;
case PT_FREQUENCY:

Loading…
Cancel
Save