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.
29 lines
1.1 KiB
29 lines
1.1 KiB
/**********
|
|
Copyright 1990 Regents of the University of California. All rights reserved.
|
|
Author: 1985 Thomas L. Quarles
|
|
Model Author: 1995 Colin McAndrew Motorola
|
|
Spice3 Implementation: 2003 Dietmar Warning DAnalyse GmbH
|
|
**********/
|
|
#ifndef __VBICEXT_H
|
|
#define __VBICEXT_H
|
|
|
|
|
|
extern int VBICacLoad(GENmodel *,CKTcircuit*);
|
|
extern int VBICask(CKTcircuit *,GENinstance*,int,IFvalue*,IFvalue*);
|
|
extern int VBICconvTest(GENmodel*,CKTcircuit*);
|
|
extern int VBICdelete(GENmodel*,IFuid,GENinstance**);
|
|
extern void VBICdestroy(GENmodel**);
|
|
extern int VBICgetic(GENmodel*,CKTcircuit*);
|
|
extern int VBICload(GENmodel*,CKTcircuit*);
|
|
extern int VBICmAsk(CKTcircuit*,GENmodel*,int,IFvalue*);
|
|
extern int VBICmDelete(GENmodel**,IFuid,GENmodel*);
|
|
extern int VBICmParam(int,IFvalue*,GENmodel*);
|
|
extern int VBICparam(int,IFvalue*,GENinstance*,IFvalue*);
|
|
extern int VBICpzLoad(GENmodel*, CKTcircuit*, SPcomplex*);
|
|
extern int VBICsetup(SMPmatrix*,GENmodel*,CKTcircuit*,int*);
|
|
extern int VBICunsetup(GENmodel*,CKTcircuit*);
|
|
extern int VBICtemp(GENmodel*,CKTcircuit*);
|
|
extern int VBICtrunc(GENmodel*,CKTcircuit*,double*);
|
|
extern int VBICnoise(int,int,GENmodel*,CKTcircuit*,Ndata*,double*);
|
|
|
|
#endif
|