swpzload.c

来自「linux平台下类似著名的电路板作图软件 Spice的源代码」· C语言 代码 · 共 54 行

C
54
字号
/**********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 "complex.h"#include "suffix.h"/* ARGSUSED */intSWpzLoad(inModel,ckt,s)    GENmodel *inModel;    register CKTcircuit *ckt;    SPcomplex *s;        /* 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) {            /* 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 + =
减小字号Ctrl + -
显示快捷键?