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

📄 bjt2trun.c

📁 ngspice又一个电子CAD仿真软件代码.功能更全
💻 C
字号:
/**********Copyright 1990 Regents of the University of California.  All rights reserved.Author: 1985 Thomas L. QuarlesModified: Alan Gillespie**********//* *//* * This routine performs truncation error calculations for * BJT2s in the circuit. */#include "ngspice.h"#include "cktdefs.h"#include "bjt2defs.h"#include "sperror.h"#include "suffix.h"intBJT2trunc(GENmodel *inModel, CKTcircuit *ckt, double *timeStep){    BJT2model *model = (BJT2model*)inModel;    BJT2instance *here;    for( ; model != NULL; model = model->BJT2nextModel) {        for(here=model->BJT2instances;here!=NULL;here = here->BJT2nextInstance){            if (here->BJT2owner != ARCHme) continue;            CKTterr(here->BJT2qbe,ckt,timeStep);            CKTterr(here->BJT2qbc,ckt,timeStep);            CKTterr(here->BJT2qsub,ckt,timeStep);        }    }    return(OK);}

⌨️ 快捷键说明

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