Browse Source

model update to the last changes

pre-master-46
dwarning 15 years ago
parent
commit
ffbfe5b19e
  1. 1
      ChangeLog
  2. 6
      DEVICES
  3. 3
      src/spicelib/parser/inpdomod.c

1
ChangeLog

@ -1,4 +1,5 @@
2011-05-04 Dietmar Warning 2011-05-04 Dietmar Warning
* spicelib/parser/inpdomod.c: vbic now accept level 4 and 9
* DEVICES: update and include HiSIM HV model. * DEVICES: update and include HiSIM HV model.
2011-05-03 Holger Vogt 2011-05-03 Holger Vogt

6
DEVICES

@ -368,12 +368,12 @@ will be updated every time the device specific code is altered or changed to ref
Ver: N/A Ver: N/A
Class: Q Class: Q
Level: 4
Level: 4 & 9
Dir: devices/vbic Dir: devices/vbic
Status: Status:
This is the Vertical Bipolar InterCompany model. The author of VBIC is
Colin McAndrew mcandrew@ieee.org
This is the Vertical Bipolar InterCompany model in version 1.2. The author
of VBIC is Colin McAndrew mcandrew@ieee.org.
Spice3 Implementation: Dietmar Warning DAnalyse GmbH Spice3 Implementation: Dietmar Warning DAnalyse GmbH
Web Site: http://www.designers-guide.com/VBIC/index.html Web Site: http://www.designers-guide.com/VBIC/index.html

3
src/spicelib/parser/inpdomod.c

@ -56,6 +56,7 @@ char *INPdomodel(CKTcircuit *ckt, card * image, INPtables * tab)
} }
break; break;
case 4: case 4:
case 9:
type = INPtypelook("VBIC"); type = INPtypelook("VBIC");
if(type < 0) { if(type < 0) {
err = INPmkTemp( err = INPmkTemp(
@ -87,7 +88,7 @@ char *INPdomodel(CKTcircuit *ckt, card * image, INPtables * tab)
#endif #endif
default: /* placeholder; use level 4 for the next model */ default: /* placeholder; use level 4 for the next model */
err = INPmkTemp( err = INPmkTemp(
"Only BJT levels 1-2, 4,6,7,8 are supported in this binary\n");
"Only BJT levels 1-2, 4,6-9 are supported in this binary\n");
break; break;
} }

Loading…
Cancel
Save