mestemp.c
来自「ngspice又一个电子CAD仿真软件代码.功能更全」· C语言 代码 · 共 51 行
C
51 行
/**********Copyright 1990 Regents of the University of California. All rights reserved.Author: 1985 S. Hwang**********/#include "ngspice.h"#include "smpdefs.h"#include "cktdefs.h"#include "mesdefs.h"#include "const.h"#include "sperror.h"#include "suffix.h"/* ARGSUSED */intMEStemp(GENmodel *inModel, CKTcircuit *ckt) /* load the mes structure with those pointers needed later * for fast matrix loading */{ MESmodel *model = (MESmodel*)inModel; double xfc, temp; /* loop through all the diode models */ for( ; model != NULL; model = model->MESnextModel ) { if(model->MESdrainResist != 0) { model->MESdrainConduct = 1/model->MESdrainResist; } else { model->MESdrainConduct = 0; } if(model->MESsourceResist != 0) { model->MESsourceConduct = 1/model->MESsourceResist; } else { model->MESsourceConduct = 0; } model->MESdepletionCap = model->MESdepletionCapCoeff * model->MESgatePotential; xfc = (1 - model->MESdepletionCapCoeff); temp = sqrt(xfc); model->MESf1 = model->MESgatePotential * (1 - temp)/(1-.5); model->MESf2 = temp * temp * temp; model->MESf3 = 1 - model->MESdepletionCapCoeff * (1 + .5); model->MESvcrit = CONSTvt0 * log(CONSTvt0/ (CONSTroot2 * model->MESgateSatCurrent)); } return(OK);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?