default m, W, L = 1

This commit is contained in:
Holger Vogt 2018-04-03 21:23:50 +02:00 committed by rlar
parent 1aa3196ed9
commit dee9dc370f
1 changed files with 3 additions and 3 deletions

View File

@ -145,16 +145,16 @@ VDMOStemp(GENmodel *inModel, CKTcircuit *ckt)
here->VDMOSdrainArea = ckt->CKTdefaultMosAD;
}
if(!here->VDMOSmGiven) {
here->VDMOSm = ckt->CKTdefaultMosM;
here->VDMOSm = 1;
}
if(!here->VDMOSlGiven) {
here->VDMOSl = ckt->CKTdefaultMosL;
here->VDMOSl = 1;
}
if(!here->VDMOSsourceAreaGiven) {
here->VDMOSsourceArea = ckt->CKTdefaultMosAS;
}
if(!here->VDMOSwGiven) {
here->VDMOSw = ckt->CKTdefaultMosW;
here->VDMOSw = 1;
}
if(here->VDMOSl - 2 * model->VDMOSlatDiff <=0) {