model update to the last changes

This commit is contained in:
dwarning 2011-05-05 20:01:48 +00:00
parent b7e9112c2a
commit ffbfe5b19e
3 changed files with 6 additions and 4 deletions

View File

@ -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

View File

@ -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 This is the Vertical Bipolar InterCompany model in version 1.2. The author
Colin McAndrew mcandrew@ieee.org 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

View File

@ -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;
} }