Skip to content

Commit

Permalink
Merge pull request #57 from LBNL-ETA/get_construction_name
Browse files Browse the repository at this point in the history
fix(eplus):get_cfs_state
  • Loading branch information
TammieYu committed Apr 2, 2024
2 parents 0c8974c + 86d7d68 commit e683a3c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions frads/eplus.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,19 @@ def callback_function(state):
)
self.construction_handles[cfs] = handle
self.construction_names[handle] = cfs
for w in self.model.fenestration_surface_detailed:
if (
self.model.fenestration_surface_detailed[
w
].construction_name
in self.model.construction_complex_fenestration_state
):
self.actuate_cfs_state(
w,
self.model.fenestration_surface_detailed[
w
].construction_name,
)

return callback_function

Expand Down

0 comments on commit e683a3c

Please sign in to comment.