diff --git a/ChangeLog b/ChangeLog index 0ce297fd6..18123823e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 diff --git a/src/spicelib/devices/mos2/mos2ask.c b/src/spicelib/devices/mos2/mos2ask.c index fd2bdcf52..8c1e2b94f 100644 --- a/src/spicelib/devices/mos2/mos2ask.c +++ b/src/spicelib/devices/mos2/mos2ask.c @@ -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);