Add gate resistor to AC calculation 2

Add matrix entries for gate resistor
This commit is contained in:
Holger Vogt 2018-04-22 13:44:44 +02:00 committed by rlar
parent a64d4c1484
commit 87e8b366ad
1 changed files with 6 additions and 1 deletions

View File

@ -95,7 +95,12 @@ VDMOSacLoad(GENmodel *inModel, CKTcircuit *ckt)
*(here->VDMOSSPbPtr) -= here->VDMOSgbs+(xnrm-xrev)*here->VDMOSgmbs;
*(here->VDMOSSPdpPtr) -= here->VDMOSgds+
xrev*(here->VDMOSgm+here->VDMOSgmbs);
/* gate resistor */
*(here->VDMOSGgPtr) += (here->VDMOSgateConductance);
*(here->VDMOSGPgpPtr) +=
(here->VDMOSgateConductance)/* + ?? FIXME */;
*(here->VDMOSGgpPtr) -= here->VDMOSgateConductance;
*(here->VDMOSGPgPtr) -= here->VDMOSgateConductance;
}
}
return(OK);