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

📄 capsacl.c

📁 spice中支持多层次元件模型仿真的可单独运行的插件源码
💻 C
字号:
/**********Copyright 1990 Regents of the University of California.  All rights reserved.Author: 1985 Thomas L. Quarles**********//* *//* actually load the current ac sensitivity  * information into the  array previously provided  */#include "spice.h"#include <stdio.h>#include "util.h"#include "cktdefs.h"#include "capdefs.h"#include "trandefs.h"#include "sperror.h"#include "suffix.h"intCAPsAcLoad(inModel,ckt)GENmodel *inModel;register CKTcircuit *ckt;{    register CAPmodel *model = (CAPmodel*)inModel;    register CAPinstance *here;    double vcap;    double ivcap;    double val;    double ival;    /*  loop through all the capacitor models */    for( ; model != NULL; model = model->CAPnextModel ) {        /* loop through all the instances of the model */        for (here = model->CAPinstances; here != NULL ;                    here=here->CAPnextInstance) {	    if (here->CAPowner != ARCHme) continue;            if(here->CAPsenParmNo){                vcap = *(ckt->CKTrhsOld+here->CAPposNode) -                     *(ckt->CKTrhsOld+here->CAPnegNode);                ivcap = *(ckt->CKTirhsOld+here->CAPposNode) -                     *(ckt->CKTirhsOld+here->CAPnegNode);                   val = ckt->CKTomega * ivcap;                ival = ckt->CKTomega * vcap;                /* load the RHS matrix */                *(ckt->CKTsenInfo->SEN_RHS[here->CAPposNode] +                         here->CAPsenParmNo) += val;                *(ckt->CKTsenInfo->SEN_iRHS[here->CAPposNode] +                        here->CAPsenParmNo) -= ival;                *(ckt->CKTsenInfo->SEN_RHS[here->CAPnegNode] +                         here->CAPsenParmNo) -= val;                *(ckt->CKTsenInfo->SEN_iRHS[here->CAPnegNode] +                         here->CAPsenParmNo) += ival;            }        }    }    return(OK);}

⌨️ 快捷键说明

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