Tnom is not a instance parameter
This commit is contained in:
parent
7049d932e5
commit
d8f1c463fa
|
|
@ -68,7 +68,6 @@ typedef struct sVBICinstance {
|
|||
double VBICm; /* multiply factor for the vbic */
|
||||
|
||||
double VBICtVcrit;
|
||||
double VBICttnom; /* temperature adjusted model parameters per instance */
|
||||
double VBICtextCollResist;
|
||||
double VBICtintCollResist;
|
||||
double VBICtepiSatVoltage;
|
||||
|
|
|
|||
|
|
@ -101,7 +101,7 @@ VBICload(GENmodel *inModel, CKTcircuit *ckt)
|
|||
/*
|
||||
* dc model paramters
|
||||
*/
|
||||
p[0] = here->VBICttnom;
|
||||
p[0] = model->VBICtnom;
|
||||
p[1] = here->VBICtextCollResist;
|
||||
p[2] = here->VBICtintCollResist;
|
||||
p[3] = here->VBICtepiSatVoltage;
|
||||
|
|
|
|||
|
|
@ -153,7 +153,6 @@ VBICtemp(GENmodel *inModel, CKTcircuit *ckt)
|
|||
|
||||
iret = vbic_4T_it_cf_t(p,pnom,&TAMB);
|
||||
|
||||
here->VBICttnom = p[0];
|
||||
here->VBICtextCollResist = p[1];
|
||||
here->VBICtintCollResist = p[2];
|
||||
here->VBICtepiSatVoltage = p[3];
|
||||
|
|
|
|||
Loading…
Reference in New Issue