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

📄 capdefs.h

📁 spice中支持多层次元件模型仿真的可单独运行的插件源码
💻 H
字号:
/**********Copyright 1990 Regents of the University of California.  All rights reserved.Author: 1985 Thomas L. Quarles**********/#ifndef CAP#define CAP#include "ifsim.h"#include "complex.h"#include "gendefs.h"#include "cktdefs.h"    /* structures used to describe capacitors *//* information to describe each instance */typedef struct sCAPinstance {    struct sCAPmodel *CAPmodPtr;    /* backpointer to model */    struct sCAPinstance *CAPnextInstance;   /* pointer to next instance of                                              * current model*/    IFuid CAPname;  /* pointer to character string naming this instance */    int CAPowner;  /* number of owner process */    int CAPstate;   /* pointer to start of capacitor state vector */    int CAPposNode; /* number of positive node of capacitor */    int CAPnegNode; /* number of negative node of capacitor */    double CAPcapac;    /* capacitance */    double CAPinitCond; /* initial capacitor voltage if specified */    double CAPwidth;    /* width of the capacitor */    double CAPlength;   /* length of the capacitor */    double *CAPposPosptr;    /* pointer to sparse matrix diagonal at                              * (positive,positive) */    double *CAPnegNegptr;    /* pointer to sparse matrix diagonal at                              * (negative,negative) */    double *CAPposNegptr;    /* pointer to sparse matrix offdiagonal at                              * (positive,negative) */    double *CAPnegPosptr;    /* pointer to sparse matrix offdiagonal at                              * (negative,positive) */    unsigned CAPcapGiven : 1;   /* flag to indicate capacitance was specified */    unsigned CAPicGiven  : 1;   /* flag to indicate init. cond. was specified */    unsigned CAPwidthGiven  : 1;    /* flag to indicate capacitor width given */    unsigned CAPlengthGiven : 1;    /* flag to indicate capacitor length given*/    int    CAPsenParmNo;         /* parameter # for sensitivity use;                set equal to  0 if not a design parameter*/} CAPinstance ;#define CAPqcap CAPstate    /* charge on the capacitor */#define CAPccap CAPstate+1  /* current through the capacitor */#define CAPsensxp CAPstate+2 /* charge sensitivities and their derivatives.                                +3 for the derivatives - pointer to the                beginning of the array */                            /* data per model */typedef struct sCAPmodel {      /* model structure for a capacitor */    int CAPmodType; /* type index of this device type */    struct sCAPmodel *CAPnextModel; /* pointer to next possible model in                                      * linked list */    CAPinstance * CAPinstances; /* pointer to list of instances that have this                                 * model */    IFuid CAPmodName;   /* pointer to character string naming this model */    double CAPcj;       /* Unit Area Capacitance ( F/ M**2 ) */    double CAPcjsw;     /* Unit Length Sidewall Capacitance ( F / M ) */    double CAPdefWidth; /* the default width of a capacitor */    double CAPnarrow;   /* amount by which length/width are less than drawn */    unsigned CAPcjGiven : 1;    /* Unit Area Capacitance ( F/ M**2 ) */    unsigned CAPcjswGiven   : 1;    /* Unit Length Sidewall Capacitance( F/M )*/    unsigned CAPdefWidthGiven   : 1;    /* flag indicates default width given*/    unsigned CAPnarrowGiven : 1;    /* flag indicates narrowing factor given */} CAPmodel;/* device parameters */#define CAP_CAP 1#define CAP_IC 2#define CAP_WIDTH 3#define CAP_LENGTH 4#define CAP_CAP_SENS 5#define CAP_CURRENT 6#define CAP_POWER 7/* model parameters */#define CAP_MOD_CJ 101#define CAP_MOD_CJSW 102#define CAP_MOD_DEFWIDTH 103#define CAP_MOD_C 104#define CAP_MOD_NARROW 105/* device questions */#define CAP_QUEST_SENS_REAL      201#define CAP_QUEST_SENS_IMAG      202#define CAP_QUEST_SENS_MAG       203#define CAP_QUEST_SENS_PH        204#define CAP_QUEST_SENS_CPLX      205#define CAP_QUEST_SENS_DC        206#include "capext.h"#endif /*CAP*/

⌨️ 快捷键说明

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