dynamic_building_simulation/helpers/simulation_parameters.py
Pilar 573678a6c5 added id to thermal_boundary.py and thermal_opening.py
erased \r from files generators
added generator of auxiliary files for dynamic model
2021-08-31 12:17:41 -04:00

28 lines
633 B
Python

# These values are intended as configurable assumptions
# ToDo: these values need to be changed into configurable parameters?? or simulation parameters??
class SimulationParameters:
year_start = '2005'
month_start = '1'
day_start = '1'
hour_start = '0'
minute_start = '0'
second_start = '0'
year_end = '2005'
month_end = '12'
day_end = '31'
hour_end = '24'
minute_end = '60'
second_end = '60'
delta_time = '5'
delta_time_unit = "'m'"
temp_ini = '20'
cooling_power = '100000000'
heating_power = '100000000'
inside_emissivity = '0.9'
alpha_coefficient = '0.3'
radiative_coefficient = '2.25'