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.
 
 
 
 
 
 

24 lines
310 B

#ifndef _SIM_H
#define _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
};
#endif