Skip to content

Commit

Permalink
Merge pull request #699 from NREL/dhw_zero_load_served_error
Browse files Browse the repository at this point in the history
Fixes possible "Sum of energy consumptions do not match total" error
  • Loading branch information
shorowit authored Dec 13, 2023
2 parents 15b138a + 181902e commit 0d5a2c9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ __Bugfixes__
- Fixes `nEC_x` calculation for a fossil fuel water heater w/ UEF entered.
- Various HVAC sizing bugfixes and improvements.

## OpenStudio-ERI v1.6.3

__Bugfixes__
- Fixes possible "Sum of energy consumptions do not match total" error for shared water heater w/ FractionDHWLoadServed=0.

## OpenStudio-ERI v1.6.2

__Bugfixes__
Expand Down
2 changes: 1 addition & 1 deletion workflow/energy_rating_index.rb
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ def get_eec(system, type, is_dfhp_primary = nil)
end

rated_bldg.water_heating_systems.each do |rated_sys|
next if rated_sys.fraction_dhw_load_served <= 0
next if rated_sys.fraction_dhw_load_served.nil?

# Get corresponding Reference Home system
ref_sys = reg_bldg.water_heating_systems[0]
Expand Down

0 comments on commit 0d5a2c9

Please sign in to comment.