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

📄 mif.c

📁 ngspice又一个电子CAD仿真软件代码.功能更全
💻 C
字号:
/*============================================================================FILE    MIF.cMEMBER OF process XSPICECopyright 1991Georgia Tech Research CorporationAtlanta, Georgia 30332All Rights ReservedPROJECT A-8503AUTHORS    9/12/91  Bill KuhnMODIFICATIONS    <date> <person name> <nature of modifications>SUMMARY    This file allocates globals used by various packages, including MIF.INTERFACES    g_mif_infoREFERENCED FILES    None.NON-STANDARD FEATURES    None.============================================================================*/ #include "mif.h"int MIFiSize = sizeof(MIFinstance);  int MIFmSize = sizeof(MIFmodel); /* Allocate global used to pass info on analysis type, etc. from *//* SPICE to the MIF load routine                                 *//* This must be initialized so that EVTfindvec can check for *//* NULL pointer in g_mif_info.ckt */Mif_Info_t  g_mif_info = {  { MIF_FALSE, MIF_FALSE, MIF_DC, MIF_ANALOG, 0.0,},  NULL,  NULL,  NULL,  { 0.0, 0.0,},  { MIF_FALSE, MIF_FALSE,},};

⌨️ 快捷键说明

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