Add gate resistor to AC calculation 2
Add matrix entries for gate resistor
This commit is contained in:
parent
a64d4c1484
commit
87e8b366ad
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue