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

📄 diodefs.h

📁 spice中支持多层次元件模型仿真的可单独运行的插件源码
💻 H
字号:
/**********Copyright 1990 Regents of the University of California.  All rights reserved.Author: 1985 Thomas L. Quarles**********/#ifndef DIO#define DIO#include "ifsim.h"#include "gendefs.h"#include "cktdefs.h"#include "complex.h"#include "noisedef.h"            /* data structures used to describe diodes *//* information needed per instance */typedef struct sDIOinstance {    struct sDIOmodel *DIOmodPtr;    /* backpointer to model */    struct sDIOinstance *DIOnextInstance;   /* pointer to next instance of                                              * current model*/    IFuid DIOname;      /* pointer to character string naming this instance */    int DIOowner;  /* number of owner process */    int DIOstate;   /* pointer to start of state vector for diode */    int DIOposNode;     /* number of positive node of diode */    int DIOnegNode;     /* number of negative node of diode */    int DIOposPrimeNode;    /* number of positive prime node of diode */    double *DIOposPosPrimePtr;      /* pointer to sparse matrix at                                      * (positive,positive prime) */    double *DIOnegPosPrimePtr;      /* pointer to sparse matrix at                                      * (negative,positive prime) */    double *DIOposPrimePosPtr;      /* pointer to sparse matrix at                                      * (positive prime,positive) */    double *DIOposPrimeNegPtr;      /* pointer to sparse matrix at                                      * (positive prime,negative) */    double *DIOposPosPtr;   /* pointer to sparse matrix at                              * (positive,positive) */    double *DIOnegNegPtr;   /* pointer to sparse matrix at                              * (negative,negative) */    double *DIOposPrimePosPrimePtr; /* pointer to sparse matrix at                                      * (positive prime,positive prime) */    double DIOcap;   /* stores the diode capacitance */    double *DIOsens; /* stores the perturbed values of geq and ceq in ac                         sensitivity analyis */    int DIOsenParmNo ;   /* parameter # for sensitivity use;                          * set equal to  0 if not a design parameter*/    unsigned DIOoff : 1;   /* 'off' flag for diode */    unsigned DIOareaGiven : 1;   /* flag to indicate area was specified */    unsigned DIOinitCondGiven : 1;  /* flag to indicate ic was specified */    unsigned DIOsenPertFlag :1; /* indictes whether the the parameter of                               the particular instance is to be perturbed */    unsigned DIOtempGiven : 1;  /* flag to indicate temperature was specified */    double DIOarea;     /* area factor for the diode */    double DIOinitCond;     /* initial condition */    double DIOtemp;     /* temperature of the instance */    double DIOtJctPot;  /* temperature adjusted junction potential */    double DIOtJctCap;  /* temperature adjusted junction capacitance */    double DIOtDepCap;  /* temperature adjusted transition point in */                        /* the curve matching (Fc * Vj ) */    double DIOtSatCur;  /* temperature adjusted saturation current */    double DIOtVcrit;   /* temperature adjusted V crit */    double DIOtF1;      /* temperature adjusted f1 */    double DIOtBrkdwnV; /* temperature adjusted breakdown voltage *//* * naming convention: * x = vdiode *//* the following are relevant to s.s. sinusoidal distortion analysis */#define DIONDCOEFFS	6#ifndef NODISTO	double DIOdCoeffs[DIONDCOEFFS];#else /* NODISTO */	double *DIOdCoeffs;#endif /* NODISTO */#ifndef CONFIG#define	id_x2		DIOdCoeffs[0]#define	id_x3		DIOdCoeffs[1]#define	cdif_x2		DIOdCoeffs[2]#define	cdif_x3		DIOdCoeffs[3]#define	cjnc_x2		DIOdCoeffs[4]#define	cjnc_x3		DIOdCoeffs[5]#endif/* indices to array of diode noise  sources */#define DIORSNOIZ       0#define DIOIDNOIZ       1#define DIOFLNOIZ 2#define DIOTOTNOIZ    3#define DIONSRCS     4#ifndef NONOISE     double DIOnVar[NSTATVARS][DIONSRCS];#else /* NONOISE */	double **DIOnVar;#endif /* NONOISE */} DIOinstance ;#define DIOsenGeq DIOsens /* stores the perturbed values of geq */#define DIOsenCeq DIOsens + 3 /* stores the perturbed values of ceq */#define DIOdphidp DIOsens + 6 #define DIOvoltage DIOstate#define DIOcurrent DIOstate+1#define DIOconduct DIOstate+2#define DIOcapCharge DIOstate+3#define DIOcapCurrent DIOstate+4#define DIOsensxp DIOstate+5    /* charge sensitivities and their derivatives.                                 * +6 for the derivatives - pointer to the                                 * beginning of the array *//* per model data */typedef struct sDIOmodel {       /* model structure for a diode */    int DIOmodType; /* type index of this device type */    struct sDIOmodel *DIOnextModel; /* pointer to next possible model in                                      * linked list */    DIOinstance * DIOinstances; /* pointer to list of instances                                 * that have this model */    IFuid DIOmodName; /* pointer to character string naming this model */    unsigned DIOsatCurGiven : 1;    unsigned DIOresistGiven : 1;    unsigned DIOemissionCoeffGiven : 1;    unsigned DIOtransitTimeGiven : 1;    unsigned DIOjunctionCapGiven : 1;    unsigned DIOjunctionPotGiven : 1;    unsigned DIOgradingCoeffGiven : 1;    unsigned DIOactivationEnergyGiven : 1;    unsigned DIOsaturationCurrentExpGiven : 1;    unsigned DIOdepletionCapCoeffGiven : 1;    unsigned DIObreakdownVoltageGiven : 1;    unsigned DIObreakdownCurrentGiven : 1;    unsigned DIOnomTempGiven : 1;    unsigned DIOfNcoefGiven : 1;    unsigned DIOfNexpGiven : 1;    double DIOsatCur;   /* saturation current */    double DIOresist;   /* ohmic series resistance */    double DIOconductance;  /* conductance corresponding to ohmic R */    double DIOemissionCoeff;    /* emission coefficient (N) */    double DIOtransitTime;      /* transit time (TT) */    double DIOjunctionCap;      /* Junction Capacitance (Cj0) */    double DIOjunctionPot;      /* Junction Potential (Vj) or (PB) */    double DIOgradingCoeff;     /* grading coefficient (m) */    double DIOactivationEnergy; /* activation energy (EG) */    double DIOsaturationCurrentExp; /* Saturation current exponential (XTI) */    double DIOdepletionCapCoeff;    /* Depletion Cap fraction coefficient (FC)*/    double DIObreakdownVoltage; /* Voltage at reverse breakdown */    double DIObreakdownCurrent; /* Current at above voltage */    double DIOf2;   /* coefficient for capacitance equation precomputation */    double DIOf3;   /* coefficient for capacitance equation precomputation */    double DIOnomTemp;  /* nominal temperature (temp at which parms measured */    double DIOfNcoef;    double DIOfNexp;} DIOmodel;/* device parameters */#define DIO_AREA 1 #define DIO_IC 2#define DIO_OFF 3#define DIO_CURRENT 4#define DIO_VOLTAGE 5#define DIO_CHARGE 6#define DIO_CAPCUR 7#define DIO_CONDUCT 8#define DIO_AREA_SENS 9#define DIO_POWER 10#define DIO_TEMP 11#define DIO_QUEST_SENS_REAL      12#define DIO_QUEST_SENS_IMAG      13#define DIO_QUEST_SENS_MAG       14#define DIO_QUEST_SENS_PH        15#define DIO_QUEST_SENS_CPLX      16#define DIO_QUEST_SENS_DC        17#define DIO_CAP 18/* model parameters */#define DIO_MOD_IS 101#define DIO_MOD_RS 102#define DIO_MOD_N 103#define DIO_MOD_TT 104#define DIO_MOD_CJO 105#define DIO_MOD_VJ 106#define DIO_MOD_M 107#define DIO_MOD_EG 108#define DIO_MOD_XTI 109#define DIO_MOD_FC 110#define DIO_MOD_BV 111#define DIO_MOD_IBV 112#define DIO_MOD_D 113#define DIO_MOD_COND 114#define DIO_MOD_TNOM 115#define DIO_MOD_KF 116#define DIO_MOD_AF 117#include "dioext.h"#endif /*DIO*/

⌨️ 快捷键说明

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