📄 dioconv.c
字号:
/**********Copyright 1990 Regents of the University of California. All rights reserved.Author: 1985 Thomas L. Quarles**********/#include <stdio.h>#include "spice.h"#include "util.h"#include "devdefs.h"#include "cktdefs.h"#include "diodefs.h"#include "const.h"#include "trandefs.h"#include "sperror.h"#include "suffix.h"intDIOconvTest(inModel,ckt) GENmodel *inModel; CKTcircuit *ckt; /* Check the devices for convergence */{ register DIOmodel *model = (DIOmodel*)inModel; register DIOinstance *here; double delvd,vd,cdhat,cd; double tol; /* loop through all the diode models */ for( ; model != NULL; model = model->DIOnextModel ) { /* loop through all the instances of the model */ for (here = model->DIOinstances; here != NULL ; here=here->DIOnextInstance) { if (here->DIOowner != ARCHme) continue; /* * initialization */ vd = *(ckt->CKTrhsOld+here->DIOposPrimeNode)- *(ckt->CKTrhsOld + here->DIOnegNode); delvd=vd- *(ckt->CKTstate0 + here->DIOvoltage); cdhat= *(ckt->CKTstate0 + here->DIOcurrent) + *(ckt->CKTstate0 + here->DIOconduct) * delvd; cd= *(ckt->CKTstate0 + here->DIOcurrent); /* * check convergence */ tol=ckt->CKTreltol* MAX(FABS(cdhat),FABS(cd))+ckt->CKTabstol; if (FABS(cdhat-cd) > tol) { ckt->CKTnoncon++; ckt->CKTtroubleElt = (GENinstance *) here; return(OK); /* don't need to check any more device */ } } } return(OK);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -