================================== HiSIM_HV 1.2.0 Bug-fix Information ================================== December 5, 2009 HiSIM Research Center, Hiroshima University [ Known Bug(s) ] : Bug-fixes will be done in the next release. (1) Temperature dependence of the maximum Vbs value for the Vbs clamping should be added. Please apply following patch to fix it: /*-------------------------------------------------------------------------------*/ hsmhveval.c --- HiSIM_HV 1.2.0 +++ bug-fixed version @@ -970,6 +970,10 @@ * Determine clamping limits for too large Vbs (internal). *-----------------*/ + if ( Pb2 - model->HSMHV_vzadd0 < Vbs_max ) { + Vbs_max = Pb2 - model->HSMHV_vzadd0 ; + Vbs_max_dT = Pb2_dT ; + } if ( Pb20 - model->HSMHV_vzadd0 < Vbs_max ) { Vbs_max = Pb20 - model->HSMHV_vzadd0 ; Vbs_max_dT = 0.0 ; /*-------------------------------------------------------------------------------*/ Thank you, HiSIM_HV developers