-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix issues with lookups, add tests, and remove outdated tests.
- Loading branch information
Showing
7 changed files
with
111 additions
and
492 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
...dio-standards/standards/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.WaterHeaterMixed.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
class ASHRAE9012019 < ASHRAE901 | ||
# Add additional search criteria for water heater lookup efficiency. | ||
# | ||
# @param water_heater_mixed [OpenStudio::Model::WaterHeaterMixed] water heater mixed object | ||
# @param search_criteria [Hash] search criteria for looking up water heater data | ||
# @return [Hash] updated search criteria | ||
def water_heater_mixed_additional_search_criteria(water_heater_mixed, search_criteria) | ||
search_criteria['draw_profile'] = 'medium' # assumption; could be based on inputs | ||
return search_criteria | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.