From c935e68432501f45c655460d41839ce869526bee Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Thu, 24 Oct 2024 11:40:27 +0200 Subject: [PATCH] Don't limit the resulting deltaVGS (to allow better analysis) --- src/spicelib/devices/relmodel/relmodelcalcaging.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/spicelib/devices/relmodel/relmodelcalcaging.c b/src/spicelib/devices/relmodel/relmodelcalcaging.c index 6caa6a0ab..22aabda9d 100644 --- a/src/spicelib/devices/relmodel/relmodelcalcaging.c +++ b/src/spicelib/devices/relmodel/relmodelcalcaging.c @@ -155,10 +155,10 @@ RELMODELcalculateAging (GENinstance *inInstance, int modType, CKTcircuit *ckt, d here->relStruct->deltaVth = relmodel->RELMODELalpha_new * delta_Vth_fast + (1 - relmodel->RELMODELalpha_new) * delta_Vth_slow ; // Saturation at 10% of the Average Vgs - This is not in the original aging model - if (here->relStruct->deltaVth > here->relStruct->Vstress * 0.5) + /*if (here->relStruct->deltaVth > here->relStruct->Vstress * 0.5) { here->relStruct->deltaVth = here->relStruct->Vstress * 0.5 ; - } + } */ } else { for (i = 0 ; i < t_aging ; i += t_step) {