From 68c37512ec789fdbdb474e20b490da0964811764 Mon Sep 17 00:00:00 2001 From: pilar Date: Mon, 19 Oct 2020 14:28:38 -0400 Subject: [PATCH] small change in monthly_to_hourly_demand.py --- city_model_structure/monthly_to_hourly_demand.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/city_model_structure/monthly_to_hourly_demand.py b/city_model_structure/monthly_to_hourly_demand.py index 15f60017..5eb9f9a3 100644 --- a/city_model_structure/monthly_to_hourly_demand.py +++ b/city_model_structure/monthly_to_hourly_demand.py @@ -25,8 +25,9 @@ class MonthlyToHourlyDemand: # todo: usage_zone values not implemented period = 'day' for usage_zone in self._building.usage_zones: - temp_set = usage_zone.heating_setpoint_schedule(period) - temp_back = usage_zone.heating_setback_schedule(period) + temp_set = usage_zone.heating_setpoint + temp_back = usage_zone.heating_setback + occupancy = usage_zone.occupancy(period) heating_schedule = usage_zone.heating_schedule_month self._hourly_heating = pd.DataFrame(columns=['monthly to hourly'])