From ea60c0861c046bad7597a542f1f349bd8beeaff3 Mon Sep 17 00:00:00 2001 From: Chris Mackey Date: Mon, 10 Jan 2022 19:37:54 -0500 Subject: [PATCH] fix(loadbalance): Use the correct sensible and latent outputs --- honeybee_energy/result/loadbalance.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/honeybee_energy/result/loadbalance.py b/honeybee_energy/result/loadbalance.py index 8dc2f6282..5088eebfc 100644 --- a/honeybee_energy/result/loadbalance.py +++ b/honeybee_energy/result/loadbalance.py @@ -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')