Fix the source/drain typo for overlap cap's, for mos2 as well

This commit is contained in:
rlar 2011-10-31 10:48:27 +00:00
parent 85cee80ba6
commit e6c7a506ec
2 changed files with 8 additions and 2 deletions

View File

@ -1,9 +1,15 @@
2011-10-31 Robert Larice
* devices/mos2/mos2ask.c:
Fix the source/drain typo for overlap cap's, for mos2 as well
see https://sourceforge.net/tracker/?func=detail&atid=423915&aid=3429175&group_id=38962
see commit from 2000-09-05
2011-10-30 Holger Vogt
* DEVICES: update to hisim_hv 1.2.2
2011-10-30 Dietmar Warning
* devices/mos1/mos1ask.c: Fix the source/drain typo for overlap cap's
* devices/hisimhv/*.c, *.h, tests/hsimhv: Update to actual hisim_hv model version 1.2.2
* devices/hisimhv/*.c, *.h, tests/hsimhv: Update to actual hisim_hv model version 1.2.2
* tests/bin/ngspice.pm: remove .st0 files not needed for ngspice
2011-10-16 Robert Larice

View File

@ -195,7 +195,7 @@ MOS2ask(CKTcircuit *ckt, GENinstance *inst, int which, IFvalue *value,
case MOS2_CAPGD:
value->rValue = 2* *(ckt->CKTstate0 + here->MOS2capgd);
/* add overlap capacitance */
value->rValue += (here->MOS2modPtr->MOS2gateSourceOverlapCapFactor)
value->rValue += (here->MOS2modPtr->MOS2gateDrainOverlapCapFactor)
* here->MOS2m
* (here->MOS2w);
return(OK);