From dee9dc370fbe160fce2155061b9060a49e17d40f Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Tue, 3 Apr 2018 21:23:50 +0200 Subject: [PATCH] default m, W, L = 1 --- src/spicelib/devices/vdmos/vdmostemp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/spicelib/devices/vdmos/vdmostemp.c b/src/spicelib/devices/vdmos/vdmostemp.c index cbe7c291d..cf8e915a5 100644 --- a/src/spicelib/devices/vdmos/vdmostemp.c +++ b/src/spicelib/devices/vdmos/vdmostemp.c @@ -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) {