×
Menu
Index

6.1.20.2 Static Methods Defined Here

air_supply_cond_names() -> list
List of air supply condition names.  Air supply conditions are represented by indices, and this list pairs the indices with string representations, e.g.:
external_index = 6
names_list = iesve.VEApacheSystem.air_supply_cond_names()
print("External air string:", names_list[external_index])
 
aux_energy_method_names() -> list
List of auxiliary energy method names.  Auxiliary energy methods are represented by indices, and this list pairs the indices with string representations, e.g.:
aev_index = 3
names_list = iesve.VEApacheSystem.aux_energy_method_names()
print("AEV string:", names_list[aev_index])
 
cooling_mech_names() -> list
List of cooling mechanism names.  Cooling mechanisms are represented by indices, and this list pairs the indices with string representations, e.g.:
mech_vent_index = 1
names_list = iesve.VEApacheSystem.cooling_mech_names()
print("Mech. vent. string:", names_list[mech_vent_index])
 
default() -> str
ID of the default Apache system.
 
fuel_names() -> list :
List of fuel names.  Fuels are represented by indices, and this list pairs the indices with string representations, e.g.:
elec_index = 6
names_list = iesve.VEApacheSystem.fuel_names()
print("Elec string:", names_list[elec_index])
 
insulation_names() -> list :
List of insulation names.  Insulation types are represented by indices, and this list pairs the indices with string representations, e.g.:
factory_index = 2
names_list = iesve.VEApacheSystem.insulation_names()
print("Factory insulated string:", names_list[factory_index])