From b34afa06aa82e69bd78c2579d71753848512c2ee Mon Sep 17 00:00:00 2001 From: jgavalda Date: Sat, 13 Jan 2024 10:13:35 -0500 Subject: [PATCH] Changed idf outputs to include all consumptions in the output file --- 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 2621992b..cf1646e3 100644 --- a/hub/exports/building_energy/idf.py +++ b/hub/exports/building_energy/idf.py @@ -587,6 +587,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]: