Skip to content

Commit

Permalink
Fix issue with Heated surfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelduchesne committed Apr 8, 2022
1 parent 66d0ff5 commit 06fd677
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions archetypal/idfclass/end_use_balance.py
Original file line number Diff line number Diff line change
Expand Up @@ -564,8 +564,8 @@ def subtract_cooled_from_heated_surface(
columns = None
return EnergyDataFrame(
(
_hvac_input_heated_surface.sum(level="Key_Name", axis=1)
- _hvac_input_cooled_surface.sum(level="Key_Name", axis=1)
_hvac_input_heated_surface.sum(level="KeyValue", axis=1)
- _hvac_input_cooled_surface.sum(level="KeyValue", axis=1)
).values,
columns=columns,
index=_hvac_input_heated_surface.index,
Expand Down

0 comments on commit 06fd677

Please sign in to comment.