bug fix
This commit is contained in:
parent
1f3d981ace
commit
f4598ac946
@ -780,7 +780,10 @@ class Idf:
|
||||
for surface in building.surfaces:
|
||||
if surface.type == cte.WALL:
|
||||
wwr = surface.associated_thermal_boundaries[0].window_ratio
|
||||
#self._idf.set_wwr(wwr, construction='window_construction_1')
|
||||
try:
|
||||
self._idf.set_wwr(wwr, construction='window_construction_1')
|
||||
except ValueError:
|
||||
self._idf.set_wwr(0, construction='window_construction_1')
|
||||
|
||||
def _add_windows_by_vertices(self, boundary):
|
||||
raise NotImplementedError
|
||||
|
Loading…
Reference in New Issue
Block a user