erased not needed prints

This commit is contained in:
Pilar Monsalvete 2023-09-01 13:02:01 -04:00
parent 9624be2cf9
commit 4ae09915b1

View File

@ -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):