vccsinit.c

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

C
86
字号
#include <config.h>#include <devdefs.h>#include "vccsitf.h"#include "vccsext.h"#include "vccsinit.h"SPICEdev VCCSinfo = {    {        "VCCS",        "Voltage controlled current source",        &VCCSnSize,        &VCCSnSize,        VCCSnames,        &VCCSpTSize,        VCCSpTable,        0,        NULL,#ifdef XSPICE/*----  Fixed by SDB 5.2.2003 to enable XSPICE/tclspice integration  -----*/        NULL,  /* This is a SPICE device, it has no MIF info data */        0,     /* This is a SPICE device, it has no MIF info data */        NULL,  /* This is a SPICE device, it has no MIF info data */        0,     /* This is a SPICE device, it has no MIF info data */        NULL,  /* This is a SPICE device, it has no MIF info data */        0,     /* This is a SPICE device, it has no MIF info data */        NULL,  /* This is a SPICE device, it has no MIF info data *//*---------------------------  End of SDB fix   -------------------------*/#endif	DEV_DEFAULT    },    DEVparam      : VCCSparam,    DEVmodParam   : NULL,    DEVload       : VCCSload,    DEVsetup      : VCCSsetup,    DEVunsetup    : NULL,    DEVpzSetup    : VCCSsetup,    DEVtemperature: NULL,    DEVtrunc      : NULL,    DEVfindBranch : NULL,    DEVacLoad     : VCCSload,   /* ac and normal loads are identical */    DEVaccept     : NULL,    DEVdestroy    : VCCSdestroy,    DEVmodDelete  : VCCSmDelete,    DEVdelete     : VCCSdelete,    DEVsetic      : NULL,    DEVask        : VCCSask,    DEVmodAsk     : NULL,    DEVpzLoad     : VCCSpzLoad,    DEVconvTest   : NULL,    DEVsenSetup   : VCCSsSetup,    DEVsenLoad    : VCCSsLoad,    DEVsenUpdate  : NULL,    DEVsenAcLoad  : VCCSsAcLoad,    DEVsenPrint   : VCCSsPrint,    DEVsenTrunc   : NULL,    DEVdisto      : NULL,	/* DISTO */    DEVnoise      : NULL,	/* NOISE */#ifdef CIDER    DEVdump       : NULL,    DEVacct       : NULL,#endif                            DEVinstSize   : &VCCSiSize,    DEVmodSize    : &VCCSmSize};SPICEdev *get_vccs_info(void){    return &VCCSinfo;}

⌨️ 快捷键说明

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