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

📄 asrcacld.c

📁 ngspice又一个电子CAD仿真软件代码.功能更全
💻 C
字号:
/**********Copyright 1990 Regents of the University of California.  All rights reserved.Author: 1988 Kanwar Jit Singh**********//* * singh@ic.Berkeley.edu */#include "ngspice.h"#include "cktdefs.h"#include "asrcdefs.h"#include "sperror.h"#include "suffix.h"/*ARGSUSED*/intASRCacLoad(GENmodel *inModel, CKTcircuit *ckt){    /*     * Actually load the current voltage value into the      * sparse matrix previously provided. The values have     * been precomputed and stored with the instance model.     */    ASRCmodel *model = (ASRCmodel*)inModel;    ASRCinstance *here;    int i, v_first, j;    double *derivs;    double rhs;    /*  loop through all the Arbitrary source models */    for( ; model != NULL; model = model->ASRCnextModel ) {        /* loop through all the instances of the model */        for (here = model->ASRCinstances; here != NULL ;	     here = here->ASRCnextInstance) {	    if (here->ASRCowner != ARCHme) continue;            	    /*	     * Get the function and its derivatives from the	     * field in the instance structure. The field is 	     * an array of doubles holding the rhs, and the	     * entries of the jacobian.	     */	    v_first = 1;	    j=0;	    derivs = here->ASRCacValues;	    rhs = (here->ASRCacValues)[here->ASRCtree->numVars];	    for(i=0; i < here->ASRCtree->numVars; i++){		switch(here->ASRCtree->varTypes[i]){		case IF_INSTANCE:		    if( here->ASRCtype == ASRC_VOLTAGE){			/* CCVS */			if(v_first){			    *(here->ASRCposptr[j++]) += 1.0;			    *(here->ASRCposptr[j++]) -= 1.0;			    *(here->ASRCposptr[j++]) -= 1.0;			    *(here->ASRCposptr[j++]) += 1.0;			    v_first = 0;			}			*(here->ASRCposptr[j++]) -= derivs[i];		    } else{			/* CCCS */			*(here->ASRCposptr[j++]) += derivs[i];			*(here->ASRCposptr[j++]) -= derivs[i];		    }		    break;		case IF_NODE:		    if(here->ASRCtype == ASRC_VOLTAGE){			/* VCVS */			if( v_first){			    *(here->ASRCposptr[j++]) += 1.0;			    *(here->ASRCposptr[j++]) -= 1.0;			    *(here->ASRCposptr[j++]) -= 1.0;			    *(here->ASRCposptr[j++]) += 1.0;			    v_first = 0;			}			*(here->ASRCposptr[j++]) -= derivs[i];		    } else {			/*VCCS*/			*(here->ASRCposptr[j++]) += derivs[i];			*(here->ASRCposptr[j++]) -= derivs[i];		    }		    break;		default:		    return(E_BADPARM);		}	    }	}    }    return(OK);}

⌨️ 快捷键说明

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