Tnom is not a instance parameter

This commit is contained in:
dwarning 2019-03-21 11:27:09 +01:00
parent 7049d932e5
commit d8f1c463fa
3 changed files with 1 additions and 3 deletions

View File

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

View File

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

View File

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