-
Notifications
You must be signed in to change notification settings - Fork 461
Fix 10168 zone multiplier incorrectly applies to water heater tank losses #11240
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’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
mitchute
merged 9 commits into
NatLabRockies:develop
from
bigladder:Fix-10168-Zone-multiplier-incorrectly-applies-to-water-heater-tank-losses
Jan 9, 2026
+53
−0
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
29c3ec0
Adjust space gain fraction multipliers for tank losses
kevin-moos 7b98b35
Merge branch 'develop' into Fix-10168-Zone-multiplier-incorrectly-app…
kevin-moos 246ebef
Add comment to new array
kevin-moos 9e22697
Merge branch 'develop' into Fix-10168-Zone-multiplier-incorrectly-app…
kevin-moos 888dfa9
Merge branch 'develop' into Fix-10168-Zone-multiplier-incorrectly-app…
kevin-moos 6eea128
Moved space gain fraction adjustment logic to SetupSpaceInternalGain
kevin-moos e03f243
Merge branch 'develop' into Fix-10168-Zone-multiplier-incorrectly-app…
kevin-moos 0491289
Merge branch 'develop' into Fix-10168-Zone-multiplier-incorrectly-app…
kevin-moos c89787f
Merge branch 'develop' into Fix-10168-Zone-multiplier-incorrectly-app…
mitchute File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If I'm following this correctly, any gain that comes from HVAC, electrical, refrigeration, etc. (anything other than the zone gains like lights, people, etc) should be included in this list. @shorowit ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I did it this way so we could easily add/remove other gains as needed, but beyond water heaters I wasn't sure what to add.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess this is because the tanks have an ambient zone specified, right?
Doing a quick search for "Ambient Temperature Zone Name" in the IDD shows the following components:
Chiller:Electric:ASHRAE205
WaterHeater:Mixed
WaterHeater:Stratified
ThermalStorage:ChilledWater:Mixed
ThermalStorage:ChilledWater:Stratified
ThermalStorage:HotWater:Stratified
Pipe:Indoor
Searching "Ambient Zone Name" shows these:
ZoneHVAC:ForcedAir:UserDefined
AirTerminal:SingleDuct:UserDefined
Coil:UserDefined
PlantComponent:UserDefined
Duct:Loss:Conduction
Do these get handled here too?
Also, we can put a 📌 in this, but we should probably unify these.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll try to test these out and see if any should be added to the list.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Opened #11365 to address other components with ambient temperature zones
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mitchute , we'd like to prevent this PR from expanding in complexity more than the Issue it was created to resolve, so there's a new issue documenting your concerns so we don't lose track of them. In the meantime, this particular set of changes is ready to finalize.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tanaya-mankad that works. Thanks.