2020-05-19 17:00:15 -04:00
|
|
|
# These values are intended as configurable assumptions
|
|
|
|
# ToDo: these values need to be changed into configurable parameters?? or simulation parameters??
|
|
|
|
|
|
|
|
|
|
|
|
class SimulationParameters:
|
2021-08-26 09:36:09 -04:00
|
|
|
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'
|
2020-05-26 17:15:48 -04:00
|
|
|
delta_time_unit = "'m'"
|
2021-08-26 09:36:09 -04:00
|
|
|
|
|
|
|
temp_ini = '20'
|
|
|
|
cooling_power = '100000000'
|
|
|
|
heating_power = '100000000'
|
|
|
|
|
2021-08-31 12:17:41 -04:00
|
|
|
inside_emissivity = '0.9'
|
2021-11-18 13:07:48 -05:00
|
|
|
alpha_coefficient = '1'
|
2021-08-31 12:17:41 -04:00
|
|
|
radiative_coefficient = '2.25'
|