Skip to content

Commit

Permalink
BUG FIX: wrong constant used in energy calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
bmeyers committed Nov 29, 2023
1 parent 367f790 commit 2d72a99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solardatatools/data_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -744,7 +744,7 @@ def make_filled_data_matrix(self, zero_night=True, interp_day=True):
self.daily_signals.energy = (
np.sum(self.filled_data_matrix, axis=0)
* 24
/ self.filled_data_matrix.shape[1]
/ self.filled_data_matrix.shape[0]
)
return

Expand Down

0 comments on commit 2d72a99

Please sign in to comment.