You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
2.0 KiB
84 lines
2.0 KiB
#include "ngspice/config.h"
|
|
|
|
#include "ngspice/devdefs.h"
|
|
|
|
#include "bsim1itf.h"
|
|
#include "bsim1ext.h"
|
|
#include "bsim1init.h"
|
|
|
|
|
|
SPICEdev B1info = {
|
|
{
|
|
"BSIM1",
|
|
"Berkeley Short Channel IGFET Model",
|
|
|
|
&B1nSize,
|
|
&B1nSize,
|
|
B1names,
|
|
|
|
&B1pTSize,
|
|
B1pTable,
|
|
|
|
&B1mPTSize,
|
|
B1mPTable,
|
|
|
|
#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 */ B1param,
|
|
/* DEVmodParam */ B1mParam,
|
|
/* DEVload */ B1load,
|
|
/* DEVsetup */ B1setup,
|
|
/* DEVunsetup */ B1unsetup,
|
|
/* DEVpzSetup */ B1setup,
|
|
/* DEVtemperature*/ B1temp,
|
|
/* DEVtrunc */ B1trunc,
|
|
/* DEVfindBranch */ NULL,
|
|
/* DEVacLoad */ B1acLoad,
|
|
/* DEVaccept */ NULL,
|
|
/* DEVdestroy */ B1destroy,
|
|
/* DEVmodDelete */ B1mDelete,
|
|
/* DEVdelete */ B1delete,
|
|
/* DEVsetic */ B1getic,
|
|
/* DEVask */ B1ask,
|
|
/* DEVmodAsk */ B1mAsk,
|
|
/* DEVpzLoad */ B1pzLoad,
|
|
/* DEVconvTest */ B1convTest,
|
|
/* DEVsenSetup */ NULL,
|
|
/* DEVsenLoad */ NULL,
|
|
/* DEVsenUpdate */ NULL,
|
|
/* DEVsenAcLoad */ NULL,
|
|
/* DEVsenPrint */ NULL,
|
|
/* DEVsenTrunc */ NULL,
|
|
/* DEVdisto */ B1disto,
|
|
/* DEVnoise */ B1noise, /* NOISE */
|
|
#ifdef CIDER
|
|
/* DEVdump */ NULL,
|
|
/* DEVacct */ NULL,
|
|
#endif
|
|
/* DEVinstSize */ &B1iSize,
|
|
/* DEVmodSize */ &B1mSize
|
|
|
|
};
|
|
|
|
|
|
SPICEdev *
|
|
get_bsim1_info(void)
|
|
{
|
|
return &B1info;
|
|
}
|