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

📄 swacload.c

📁 spice中支持多层次元件模型仿真的可单独运行的插件源码
💻 C
字号:
/**********Copyright 1990 Regents of the University of California.  All rights reserved.Author: 1985 Gordon Jacobs**********//* */#include "spice.h"#include <stdio.h>#include "cktdefs.h"#include "swdefs.h"#include "sperror.h"#include "suffix.h"intSWacLoad(inModel,ckt)    GENmodel *inModel;    register CKTcircuit *ckt;        /* load the current values into the          * sparse matrix previously provided          * during AC analysis.         */{    register SWmodel *model = (SWmodel *)inModel;    register SWinstance *here;    double g_now;    int current_state;    /*  loop through all the switch models */    for( ; model != NULL; model = model->SWnextModel ) {        /* loop through all the instances of the model */        for (here = model->SWinstances; here != NULL ;                here=here->SWnextInstance) {	    if (here->SWowner != ARCHme) continue;            /* In AC analysis, just propogate the state... */            current_state = (int)*(ckt->CKTstate0 + here->SWstate);            g_now = current_state?(model->SWonConduct):(model->SWoffConduct);            *(here->SWposPosptr) += g_now;            *(here->SWposNegptr) -= g_now;            *(here->SWnegPosptr) -= g_now;            *(here->SWnegNegptr) += g_now;        }    }    return(OK);}

⌨️ 快捷键说明

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