dynamic_building_simulation/helpers/simulation_parameters.py

20 lines
436 B
Python
Raw Normal View History

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:
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'