Baseboard connected to a plant but omitted from ZoneHVAC:EquipmentList will now throw a Severe error#11624
Merged
Merged
Conversation
…into 4787-Baseboard-omitted-from-EquipmentList
Collaborator
Author
|
Defect file now terminates the simulation with the following new warnings: |
rraustad
commented
Jun 5, 2026
| MatchNode = state.dataBranchInputManager->Branch(Found).Component(1).InletNode; | ||
| MatchNodeName = state.dataBranchInputManager->Branch(Found).Component(1).InletNodeName; | ||
| BranchInletNodeName = state.dataBranchInputManager->Branch(Found).Component(1).InletNodeName; | ||
| CheckBranchEquipInZoneHVACEquipList(state, Found, ErrFound); |
Collaborator
Author
There was a problem hiding this comment.
Pretty simple check that certain plant components are listed in ZoneHVAC:EquipmentList.
mitchute
reviewed
Jun 8, 2026
Comment on lines
+1734
to
+1736
| if (found) { | ||
| break; | ||
| } |
Collaborator
There was a problem hiding this comment.
@rraustad I think this will cause it to exit on the first instance omitted on the branch, but not catch subsequent ones on the same branch. Is that worth dealing with?
Collaborator
Author
There was a problem hiding this comment.
If baseboards are ever in series on a branch, however unlikely I would think that configuration would be, and removing this would also catch that corner-corner case then I will remove this last break. I just didn't think that would ever be the case.
…into 4787-Baseboard-omitted-from-EquipmentList
|
mitchute
approved these changes
Jun 9, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Pull request overview
Defect file: 4787-in.idf.txt
Description of the purpose of this PR
Plant components are checked for valid entry and plant equipment that are in a zone also need to list the component in a ZoneHVAC:EquipmentList. This check has been added to the branch integrity checking.
Pull Request Author
Reviewer