Browse Source

if no bsim3 version given then use 3.30

pre-master-46
dwarning 19 years ago
parent
commit
95ff0a0277
  1. 1
      ChangeLog
  2. 3
      src/spicelib/parser/inpdomod.c

1
ChangeLog

@ -1,5 +1,6 @@
2007-12-09 Dietmar Warning
* src/frontend/numparam/xpression.c: placeholder for agauss (y=nominal_value)
* src/spicelib/parser/inpdomod.c: if no bsim3 version given then use 3.30
2007-12-09 Holger Vogt
* src/frontend/wdisp/windisp.c: better prototypes and some cosmetics

3
src/spicelib/parser/inpdomod.c

@ -279,7 +279,8 @@ char *INPdomodel(void *ckt, card * image, INPtables * tab)
(strstr(ver, "3.2.4")) || (strstr(ver, "3.24")) ) {
type = INPtypelook("BSIM3v32");
}
if ( (strstr(ver, "3.3")) || (strstr(ver, "3.3.0")) || (strstr(ver, "3.30")) ) {
if ( (strstr(ver, "default"))
|| (strstr(ver, "3.3")) || (strstr(ver, "3.3.0")) || (strstr(ver, "3.30")) ) {
type = INPtypelook("BSIM3");
}
if (type < 0) {

Loading…
Cancel
Save