erased not needed prints
This commit is contained in:
parent
9624be2cf9
commit
4ae09915b1
|
@ -569,7 +569,6 @@ class Idf:
|
||||||
else:
|
else:
|
||||||
self._add_block(building)
|
self._add_block(building)
|
||||||
|
|
||||||
print('BBBBBBBBBB')
|
|
||||||
self._idf.newidfobject(
|
self._idf.newidfobject(
|
||||||
"OUTPUT:VARIABLE",
|
"OUTPUT:VARIABLE",
|
||||||
Variable_Name="Zone Ideal Loads Supply Air Total Heating Energy",
|
Variable_Name="Zone Ideal Loads Supply Air Total Heating Energy",
|
||||||
|
@ -723,11 +722,7 @@ class Idf:
|
||||||
wwr = 0
|
wwr = 0
|
||||||
for surface in building.surfaces:
|
for surface in building.surfaces:
|
||||||
if surface.type == cte.WALL:
|
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
|
wwr = surface.associated_thermal_boundaries[0].window_ratio
|
||||||
print(wwr)
|
|
||||||
self._idf.set_wwr(wwr, construction='window_construction_1')
|
self._idf.set_wwr(wwr, construction='window_construction_1')
|
||||||
|
|
||||||
def _add_windows_by_vertices(self, boundary):
|
def _add_windows_by_vertices(self, boundary):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user