mestemp.c

来自「linux平台下类似著名的电路板作图软件 Spice的源代码」· C语言 代码 · 共 56 行

C
56
字号
/**********Copyright 1990 Regents of the University of California.  All rights reserved.Author: 1985 S. Hwang**********/#include "spice.h"#include <stdio.h>#include "util.h"#include "smpdefs.h"#include "cktdefs.h"#include "mesdefs.h"#include "const.h"#include "sperror.h"#include "suffix.h"/* 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 + -
显示快捷键?