mestemp.c

来自「支持数字元件仿真的SPICE插件」· C语言 代码 · 共 58 行

C
58
字号
/* * Copyright (c) 1985 S. Hwang */#include "prefix.h"#include <stdio.h>#include "util.h"#include "SMPdefs.h"#include "CKTdefs.h"#include "MESdefs.h"#include "CONST.h"#include <math.h>#include "SPerror.h"#include "suffix.h"RCSID("MEStemp.c $Revision: 1.1 $ on $Date: 90/10/11 12:44:09 $")/* ARGSUSED */intMEStemp(inModel,ckt)    GENmodel *inModel;    CKTcircuit *ckt;        /* load the diode structure with those pointers needed later          * for fast matrix loading          */{    register 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 + -
显示快捷键?