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.
28 lines
376 B
28 lines
376 B
#ifndef ngspice_SIM_H
|
|
#define ngspice_SIM_H
|
|
|
|
enum simulation_types {
|
|
SV_NOTYPE,
|
|
SV_TIME,
|
|
SV_FREQUENCY,
|
|
SV_VOLTAGE,
|
|
SV_CURRENT,
|
|
SV_OUTPUT_N_DENS,
|
|
SV_OUTPUT_NOISE,
|
|
SV_INPUT_N_DENS,
|
|
SV_INPUT_NOISE,
|
|
SV_POLE,
|
|
SV_ZERO,
|
|
SV_SPARAM,
|
|
SV_TEMP,
|
|
SV_RES,
|
|
SV_IMPEDANCE,
|
|
SV_ADMITTANCE,
|
|
SV_POWER,
|
|
SV_PHASE,
|
|
SV_DB,
|
|
SV_CAPACITANCE,
|
|
SV_CHARGE
|
|
};
|
|
|
|
#endif
|