📄 jfet2trun.c
字号:
/**********Based on jfettrunc.cCopyright 1990 Regents of the University of California. All rights reserved.Author: 1985 Thomas L. QuarlesModified to jfet2 for PS model definition ( Anthony E. Parker ) Copyright 1994 Macquarie University, Sydney Australia.**********//* */#include "ngspice.h"#include "cktdefs.h"#include "jfet2defs.h"#include "sperror.h"#include "suffix.h"intJFET2trunc(GENmodel *inModel, CKTcircuit *ckt, double *timeStep){ JFET2model *model = (JFET2model*)inModel; JFET2instance *here; for( ; model != NULL; model = model->JFET2nextModel) { for(here=model->JFET2instances;here!=NULL;here = here->JFET2nextInstance){ if (here->JFET2owner != ARCHme) continue; CKTterr(here->JFET2qgs,ckt,timeStep); CKTterr(here->JFET2qgd,ckt,timeStep); } } return(OK);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -