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

📄 ccvsdefs.h

📁 linux平台下类似著名的电路板作图软件 Spice的源代码
💻 H
字号:
/**********Copyright 1990 Regents of the University of California.  All rights reserved.Author: 1985 Thomas L. Quarles**********/#ifndef CCVS#define CCVS#include "ifsim.h"#include "cktdefs.h"#include "gendefs.h"#include "complex.h"    /* structures used to describe current controlled voltage sources *//* information used to describe a single instance */typedef struct sCCVSinstance {    struct sCCVSmodel *CCVSmodPtr;  /* backpointer to model */    struct sCCVSinstance *CCVSnextInstance;     /* pointer to next instance of                                                  *current model*/    IFuid CCVSname; /* pointer to character string naming this instance */    int CCVSstate; /* not used */    int CCVSposNode;    /* number of positive node of source */    int CCVSnegNode;    /* number of negative node of source */    IFuid CCVScontName; /* pointer to name of controlling instance */    int CCVSbranch; /* equation number of branch equation added for v source */    int CCVScontBranch;    /* number of branch eq of controlling source */    double CCVScoeff;   /* coefficient */    double *CCVSposIbrptr;  /* pointer to sparse matrix element at                                      * (positive node, branch equation) */    double *CCVSnegIbrptr;  /* pointer to sparse matrix element at                                      * (negative node, branch equation) */    double *CCVSibrPosptr;  /* pointer to sparse matrix element at                                      * (branch equation, positive node) */    double *CCVSibrNegptr;  /* pointer to sparse matrix element at                                      * (branch equation, negative node) */    double *CCVSibrContBrptr;  /* pointer to sparse matrix element at                                      *(branch equation, control branch eq)*/    unsigned CCVScoeffGiven :1 ;   /* flag to indicate coeff given */    int  CCVSsenParmNo;   /* parameter # for sensitivity use;            set equal to  0 if not a design parameter*/} CCVSinstance ;/* per model data */typedef struct sCCVSmodel {       /* model structure for a CCVsource */    int CCVSmodType;    /* type index of this device type */    struct sCCVSmodel *CCVSnextModel;   /* pointer to next possible model                                          *in linked list */    CCVSinstance * CCVSinstances;    /* pointer to list of instances                                              that have this model */    IFuid CCVSmodName;       /* pointer to character string naming this model */} CCVSmodel;/* device parameters */#define CCVS_TRANS 1#define CCVS_CONTROL 2#define CCVS_POS_NODE 3#define CCVS_NEG_NODE 4#define CCVS_BR 5#define CCVS_CONT_BR 6#define CCVS_TRANS_SENS 7#define CCVS_CURRENT 8#define CCVS_POWER 9#define CCVS_VOLTS 10/* model parameters *//* device questions */#define CCVS_QUEST_SENS_REAL         201#define CCVS_QUEST_SENS_IMAG         202#define CCVS_QUEST_SENS_MAG      203#define CCVS_QUEST_SENS_PH       204#define CCVS_QUEST_SENS_CPLX         205#define CCVS_QUEST_SENS_DC       206/* model questions */#include "ccvsext.h"#endif /*CCVS*/

⌨️ 快捷键说明

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