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

📄 cswpzload.c

📁 支持数字元件仿真的SPICE插件
💻 C
字号:
/* * Copyright (c) 1985 Gordon Jacobs */#include "prefix.h"#include <stdio.h>#include "CKTdefs.h"#include "CSWdefs.h"#include "SPerror.h"#include "complex.h"#include "suffix.h"RCSID("CSWpzLoad.c $Revision: 1.1 $ on $Date: 90/10/11 12:42:24 $")/* ARGSUSED */intCSWpzLoad(inModel,ckt,s)    GENmodel *inModel;    register CKTcircuit *ckt;    SPcomplex *s;        /* load the current values into the          * sparse matrix previously provided          * during AC analysis         */{    register CSWmodel *model = (CSWmodel*)inModel;    register CSWinstance *here;    double g_now;    int current_state;    /*  loop through all the switch models */    for( ; model != NULL; model = model->CSWnextModel ) {        /* loop through all the instances of the model */        for (here = model->CSWinstances; here != NULL ;                here=here->CSWnextInstance) {            current_state = *(ckt->CKTstate0 + here->CSWstate);            g_now = current_state?(model->CSWonConduct):(model->CSWoffConduct);            *(here->CSWposPosptr) += g_now;            *(here->CSWposNegptr) -= g_now;            *(here->CSWnegPosptr) -= g_now;            *(here->CSWnegNegptr) += g_now;        }    }    return(OK);}

⌨️ 快捷键说明

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