From dd0900e868c284a02c369166f5bf9b9c4284d377 Mon Sep 17 00:00:00 2001 From: jgavalda Date: Tue, 5 Dec 2023 10:43:46 -0500 Subject: [PATCH] Changed the idf generator to incorporate zone lights and appliances calculation --- hub/exports/building_energy/idf.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/hub/exports/building_energy/idf.py b/hub/exports/building_energy/idf.py index 63ea0b19..a9fefdcd 100644 --- a/hub/exports/building_energy/idf.py +++ b/hub/exports/building_energy/idf.py @@ -588,6 +588,18 @@ class Idf: Reporting_Frequency="Hourly", ) + self._idf.newidfobject( + "OUTPUT:VARIABLE", + Variable_Name="Zone Lights Electricity Rate", + Reporting_Frequency="Hourly", + ) + + self._idf.newidfobject( + "OUTPUT:VARIABLE", + Variable_Name="Other Equipment Electricity Rate", + Reporting_Frequency="Hourly", + ) + # post-process to erase windows associated to adiabatic walls windows_list = [] for window in self._idf.idfobjects[self._WINDOW]: