⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bjt2sset.c

📁 ngspice又一个电子CAD仿真软件代码.功能更全
💻 C
字号:
/**********Copyright 1990 Regents of the University of California.  All rights reserved.Author: 1985 Thomas L. QuarlesModified: Alan GillespieThis function is obsolete (was used by an old sensitivity analysis)**********//* loop through all the devices and  * allocate parameter #s to design parameters  */#include "ngspice.h"#include "cktdefs.h"#include "smpdefs.h"#include "bjt2defs.h"#include "const.h"#include "sperror.h"#include "ifsim.h"#include "suffix.h"intBJT2sSetup(SENstruct *info, GENmodel *inModel){    BJT2model *model = (BJT2model*)inModel;    BJT2instance *here;#ifdef STEPDEBUG    printf(" BJT2sensetup \n");#endif /* STEPDEBUG */    /*  loop through all the diode models */    for( ; model != NULL; model = model->BJT2nextModel ) {        /* loop through all the instances of the model */        for (here = model->BJT2instances; here != NULL ;                here=here->BJT2nextInstance) {            if (here->BJT2owner != ARCHme) continue;            if(here->BJT2senParmNo){                here->BJT2senParmNo = ++(info->SENparms);                here->BJT2senPertFlag = OFF;            }            if((here->BJT2sens = (double *)MALLOC(55*sizeof(double))) ==                NULL) return(E_NOMEM);        }    }    return(OK);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -