Skip to content

Commit

Permalink
fix(irradiance): Remove timestep multiplication for average values
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkelkp committed Dec 7, 2023
1 parent 9ad0056 commit 63bac21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion honeybee_radiance_postprocess/results/annual_irradiance.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def annual_metrics(
"""
grids_info = self._filter_grids(grids_filter=grids_filter)
mask = hoys_mask(self.sun_up_hours, hoys)
full_length = len(self.study_hours) * self.timestep
full_length = len(self.study_hours)

average = []
peak = []
Expand Down

0 comments on commit 63bac21

Please sign in to comment.