Skip to content

Commit

Permalink
fix(multiphase): Add outputs as list
Browse files Browse the repository at this point in the history
This should make the function more flexible.
  • Loading branch information
mikkelkp committed Mar 14, 2023
1 parent dcf1b0b commit a586786
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions pollination/honeybee_radiance/multiphase.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,16 +288,31 @@ def prepare_multiphase(self):
'studies.', path='two_phase.json'
)

two_phase_info_list = Outputs.list(
description='Output octree files and grid information file for the 2-Phase '
'studies.', path='two_phase.json'
)

three_phase_info = Outputs.file(
description='Output octree files and grid information file for the 3-Phase studies.',
path='three_phase.json'
)

three_phase_info_list = Outputs.list(
description='Output octree files and grid information file for the 3-Phase studies.',
path='three_phase.json'
)

five_phase_info = Outputs.file(
description='Output octree files and grid information file for the 5-Phase studies.',
path='five_phase.json'
)

five_phase_info_list = Outputs.list(
description='Output octree files and grid information file for the 5-Phase studies.',
path='five_phase.json'
)

grid_states_file = Outputs.file(
description='Grid and states information for aperture groups.',
path='grid_states.json',
Expand Down

0 comments on commit a586786

Please sign in to comment.