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.
21 lines
575 B
21 lines
575 B
#ifndef ngspice_ANALYSIS_H
|
|
#define ngspice_ANALYSIS_H
|
|
|
|
struct SPICEanalysis {
|
|
IFanalysis if_analysis;
|
|
int size;
|
|
int domain;
|
|
int do_ic;
|
|
int (*setParm)(CKTcircuit *ckt, JOB *anal, int which, IFvalue *value);
|
|
int (*askQuest)(CKTcircuit *ckt, JOB *anal, int which, IFvalue *value);
|
|
int (*an_init)(CKTcircuit *ckt, JOB *job);
|
|
int (*an_func)(CKTcircuit *ckt, int restart);
|
|
};
|
|
|
|
|
|
char *spice_analysis_get_name(int index);
|
|
char *spice_analysis_get_description(int index);
|
|
int spice_num_analysis(void);
|
|
SPICEanalysis **spice_analysis_ptr(void);
|
|
|
|
#endif
|