BSIM vsn 4.6.5 can now be recognized as either "4.6.5" or "4.65",

like all the other BSIM3/4 models.
This commit is contained in:
mhx 2017-01-07 01:47:23 +01:00
parent 011b6cea3f
commit 1cf2de3d88
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ FILE *fplog;
fprintf(fplog, "\n");
fprintf(fplog, "++++++++++ BSIM4v6 PARAMETER CHECKING BELOW ++++++++++\n");
if (strcmp(model->BSIM4v6version, "4.6.5") != 0)
if ((strcmp(model->BSIM4v6version, "4.6.5")) && (strcmp(model->BSIM4v6version, "4.65")))
{ fprintf(fplog, "Warning: This model is BSIM4.6.5; you specified a wrong version number.\n");
printf("Warning: This model is BSIM4.6.5; you specified a wrong version number.\n");
}