Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(loadbalance): Use the correct sensible and latent outputs #815

Merged
merged 1 commit into from Jan 11, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions honeybee_energy/result/loadbalance.py
Expand Up @@ -115,12 +115,12 @@ class LoadBalance(object):
# List of all EnergyPlus output strings relevant for thermal load balances
COOLING = (
'Zone Ideal Loads Supply Air Total Cooling Energy',
'Zone Ideal Loads Zone Sensible Cooling Energy',
'Zone Ideal Loads Zone Latent Cooling Energy')
'Zone Ideal Loads Supply Air Sensible Cooling Energy',
'Zone Ideal Loads Supply Air Latent Cooling Energy')
HEATING = (
'Zone Ideal Loads Supply Air Total Heating Energy',
'Zone Ideal Loads Zone Sensible Heating Energy',
'Zone Ideal Loads Zone Latent Heating Energy')
'Zone Ideal Loads Supply Air Sensible Heating Energy',
'Zone Ideal Loads Supply Air Latent Heating Energy')
LIGHTING = (
'Zone Lights Electricity Energy',
'Zone Lights Total Heating Energy')
Expand Down