numgen.h

来自「ngspice又一个电子CAD仿真软件代码.功能更全」· C头文件 代码 · 共 43 行

H
43
字号
/**********Copyright 1991 Regents of the University of California. All rights reserved.Authors: 1991 David Gates**********//* Member of CIDER device simulator * Version: 1b1 *//* * Generic Numerical Model Structure */#ifndef NUMGEN_H#define NUMGEN_H#include "ifsim.h"#include "cktdefs.h"#include "gendefs.h"#include "carddefs.h"typedef struct sGENnumModel {	/* model structure for a numerical device */    int GENmodType;		/* type index of this device type */    struct sGENnumModel *GENnextModel;	/* pointer to next model in list */    GENinstance *GENinstances;	/* pointer to list of instances */    IFuid GENmodName;		/* pointer to string naming this model *//* Everything below here is numerical-device-specific */    MESHcard *GENxMeshes;	/* list of xmesh cards */    MESHcard *GENyMeshes;	/* list of ymesh cards */    DOMNcard *GENdomains;	/* list of domain cards */    BDRYcard *GENboundaries;	/* list of boundary cards */    DOPcard  *GENdopings;	/* list of doping cards */    ELCTcard *GENelectrodes;	/* list of electrode cards */    CONTcard *GENcontacts;	/* list of contact cards */    MODLcard *GENmodels;	/* list of model cards */    MATLcard *GENmaterials;	/* list of material cards */    MOBcard  *GENmobility;	/* list of mobility cards */    METHcard *GENmethods;	/* list of method cards */    OPTNcard *GENoptions;	/* list of option cards */    OUTPcard *GENoutputs;	/* list of output cards */} GENnumModel;    #endif /* NUMGEN_H */

⌨️ 快捷键说明

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