Skip to content
Snippets Groups Projects
Commit 81f3b1a9 authored by Christoph von Oy's avatar Christoph von Oy
Browse files

Made t_step and t_horizon be interpreted correctly

Fixed focus-framework#44
parent 78d47195
No related branches found
No related tags found
No related merge requests found
......@@ -88,7 +88,7 @@ def generate_profile(profile_type, parameters, input_profiles, t_start, t_horizo
temperature=input_profiles[parameters['temperature']][1],
building_class=1,
wind_class=1,
annual_heat_demand=parameters['yearly_demand'] / t_step,
annual_heat_demand=parameters['yearly_demand'],
name='HeatDemand_EFH',
ww_incl=0).get_bdew_profile()
profiles.append(profile)
......@@ -105,7 +105,7 @@ def generate_profile(profile_type, parameters, input_profiles, t_start, t_horizo
temperature=input_profiles[parameters['temperature']][1],
building_class=1,
wind_class=1,
annual_heat_demand=parameters['yearly_demand'] / t_step,
annual_heat_demand=parameters['yearly_demand'],
name='DomesticHotWaterDemand_EFH',
ww_incl=1).get_bdew_profile()
profiles.append(profile)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment