Skip to content

Commit

Permalink
fix(well): Change order in summary
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkelkp committed Jan 30, 2025
1 parent d078bad commit 45d1e14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions honeybee_radiance_postprocess/well/well.py
Original file line number Diff line number Diff line change
Expand Up @@ -399,13 +399,13 @@ def well_annual_daylight(
)
l06_ies_lm_summary['note'] = note
l06_well_summary_ies_lm['points'] = 0
l06_well_summary_ies_lm['note'] = note
l06_well_summary_ies_lm['sda'] = l06_ies_lm_summary['sda']
l06_well_summary_ies_lm['note'] = note

l01_ies_lm_summary['note'] = note
l01_well_summary_ies_lm['comply'] = False
l01_well_summary_ies_lm['note'] = note
l01_well_summary_ies_lm['sda'] = l01_ies_lm_summary['sda']
l01_well_summary_ies_lm['note'] = note

l06_well_summary_ies_lm['total_floor_area'] = sum(np.sum(arr) for arr in grid_areas)
l01_well_summary_ies_lm['total_floor_area'] = sum(np.sum(arr) for arr in grid_areas)
Expand Down

0 comments on commit 45d1e14

Please sign in to comment.