| Geoffrey_Coram 
 | 
			You didn't post the drawn length, but since it's a BSIM4 model, you can compute Lnew = here->BSIM4l  + model->BSIM4xl ;
 T0 = pow(Lnew, model->BSIM4Lln);
 T1 = pow(Wnew, model->BSIM4Lwn);
 tmp1 = model->BSIM4Ll / T0 + model->BSIM4Lw / T1
 + model->BSIM4Lwl / (T0 * T1);
 pParam->BSIM4dl = model->BSIM4Lint + tmp1;
 pParam->BSIM4leff = Lnew - 2.0 * pParam->BSIM4dl;
 
 I see
 + ...     lint    = 2.7e-009
 +ll      = 0
 +lw      = 0
 +lwl     = 0
 +xl         = -14e-9
 
 So, Leff = L + (-14e-9) - 2.0 * (2.7e-009 + 0)
 |