small change in monthly_to_hourly_demand.py

This commit is contained in:
pilar 2020-10-19 14:28:38 -04:00
parent bb0408c26e
commit 68c37512ec

View File

@ -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'])