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

📄 b3v0getic.c

📁 ngspice又一个电子CAD仿真软件代码.功能更全
💻 C
字号:
/**********Copyright 1990 Regents of the University of California.  All rights reserved.Author: 1995 Min-Chie Jeng and Mansun Chan.File: b3v0getic.c**********/#include "ngspice.h"#include "cktdefs.h"#include "bsim3v0def.h"#include "sperror.h"#include "suffix.h"intBSIM3v0getic(GENmodel *inModel, CKTcircuit *ckt){BSIM3v0model *model = (BSIM3v0model*)inModel;BSIM3v0instance *here;    for (; model ; model = model->BSIM3v0nextModel)     {    for (here = model->BSIM3v0instances; here; here = here->BSIM3v0nextInstance)	 {    	 	      if (here->BSIM3v0owner != ARCHme)                      continue;	      if(!here->BSIM3v0icVBSGiven) 	      {  here->BSIM3v0icVBS = *(ckt->CKTrhs + here->BSIM3v0bNode) 				  - *(ckt->CKTrhs + here->BSIM3v0sNode);              }              if (!here->BSIM3v0icVDSGiven) 	      {   here->BSIM3v0icVDS = *(ckt->CKTrhs + here->BSIM3v0dNode) 				   - *(ckt->CKTrhs + here->BSIM3v0sNode);              }              if (!here->BSIM3v0icVGSGiven) 	      {   here->BSIM3v0icVGS = *(ckt->CKTrhs + here->BSIM3v0gNode) 				   - *(ckt->CKTrhs + here->BSIM3v0sNode);              }         }    }    return(OK);}

⌨️ 快捷键说明

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