From 4ae09915b1042fdcfbf963c4297611a4917de940 Mon Sep 17 00:00:00 2001 From: p_monsalvete Date: Fri, 1 Sep 2023 13:02:01 -0400 Subject: [PATCH] erased not needed prints --- hub/exports/building_energy/idf.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/hub/exports/building_energy/idf.py b/hub/exports/building_energy/idf.py index 52945dd4..50f97849 100644 --- a/hub/exports/building_energy/idf.py +++ b/hub/exports/building_energy/idf.py @@ -569,7 +569,6 @@ class Idf: else: self._add_block(building) - print('BBBBBBBBBB') self._idf.newidfobject( "OUTPUT:VARIABLE", Variable_Name="Zone Ideal Loads Supply Air Total Heating Energy", @@ -723,11 +722,7 @@ class Idf: wwr = 0 for surface in building.surfaces: if surface.type == cte.WALL: - print(surface) - print(surface.associated_thermal_boundaries) - print(surface.associated_thermal_boundaries[0].window_ratio) wwr = surface.associated_thermal_boundaries[0].window_ratio - print(wwr) self._idf.set_wwr(wwr, construction='window_construction_1') def _add_windows_by_vertices(self, boundary):