-
Notifications
You must be signed in to change notification settings - Fork 442
Fix flow rate issue for fanless unitary system #10825
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
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
ca5d09d
If no fan do not touch inlet mass flow rate
mjwitte bb5da46
undo VS formatting
mjwitte 3cce73c
UnitarySystemModel_MultiSpeedDXCoolCoil_Only_NoFan test
mjwitte 17e34a4
Merge remote-tracking branch 'remotes/origin/develop' into 10823FanFr…
mjwitte 9409ec0
Merge remote-tracking branch 'remotes/origin/develop' into 10823FanFr…
mjwitte 8230692
Merge remote-tracking branch 'remotes/origin/develop' into 10823FanFr…
mjwitte 675350b
Merge remote-tracking branch 'remotes/origin/develop' into 10823FanFr…
mjwitte 8674c6a
Merge remote-tracking branch 'remotes/origin/develop' into 10823FanFr…
mjwitte 17f24af
Unit test Sched repairs
mjwitte 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
Oops, something went wrong.
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.
When using SP control, for airloop equipment the node flow rate is used, for zone equipment the equipment flow rate is used. So my question here is if zone equipment still works with this change. See this at the bottom of UnitarySys::setAverageAirFlow. I;m not sure if there is an example file or unit test for this case.
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.
Maybe just add
&& this->m_AirLoopEquipment
here to cover this? But then zone equipment needs the fan so this looks like it is OK as is.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.
We have 2 example files with unitary zone equipment using load control, DOAToUnitarySystem and UnitarySystem_ZoneVSWSHP_wDOAS. Those run fine with no diffs here, as expected since it's load control.
Here's a new one with SP control.
UnitarySystem_ZoneVSWSHP_wDOAS-SPControl.idf.txt
No diffs on this branch for design day and annual.
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.
Perfect.
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.
Should we replace UnitarySystem_ZoneVSWSHP_wDOAS with this file? The change to SP control would still meet the zone SP.
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.
It should work, but it's not. This is the SP control file, annual, with develop:

Since this branch produces the same result, I don't think this should hold up this PR, but it would be nice to figure out how to make this work.
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'm OK with merging this branch and following up with an issue to correct, or at least investigate,