📄 swtrunc.c
字号:
/**********Copyright 1990 Regents of the University of California. All rights reserved.Author: 1985 Thomas L. QuarlesModified: 2000 AlansFixes**********//* */#include "ngspice.h"#include "cktdefs.h"#include "sperror.h"#include "suffix.h"#include "swdefs.h"intSWtrunc(GENmodel *inModel, CKTcircuit *ckt, double *timeStep){ SWmodel *model = (SWmodel*)inModel; SWinstance *here; double lastChange, maxChange, maxStep, ref; for( ; model!= NULL; model = model->SWnextModel) { for(here = model->SWinstances ; here != NULL ; here = here->SWnextInstance) { lastChange = *(ckt->CKTstate0+(here->SWstate+1)) - *(ckt->CKTstate1+(here->SWstate+1)); if (*(ckt->CKTstate0+(here->SWstate))==0) { ref = (model->SWvThreshold + model->SWvHysteresis); if ((*(ckt->CKTstate0+(here->SWstate+1))<ref) && (lastChange>0)) { maxChange = (ref - *(ckt->CKTstate0+(here->SWstate+1))) * 0.75 + 0.05; maxStep = maxChange/lastChange * ckt->CKTdeltaOld[0]; if (*timeStep > maxStep) { *timeStep = maxStep; } } } else { ref = (model->SWvThreshold - model->SWvHysteresis); if ((*(ckt->CKTstate0+(here->SWstate+1))>ref) && (lastChange<0)) { maxChange = (ref - *(ckt->CKTstate0+(here->SWstate+1))) * 0.75 - 0.05; maxStep = maxChange/lastChange * ckt->CKTdeltaOld[0]; if (*timeStep > maxStep) { *timeStep = maxStep; } } } } } return(OK);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -