-
Notifications
You must be signed in to change notification settings - Fork 461
Followup VRF warning about solveRoot of Te at small load condition #11000
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
+90
−39
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
1d3ab1c
separate warning for -1 and -2, report SmallLoadTe range in warning
c77f5d1
check sign of end points before solving root
51cb011
add back warnings, keep old upper bound SolveRoot
4cff147
Fix unit test
dc754c8
Merge remote-tracking branch 'origin/develop' into followupVRFwarning
7d4fa9c
fix bracket issue from merging
3399351
temp mod feenableexcept so apple arm can build
67b3cf3
Revert "temp mod feenableexcept so apple arm can build"
bbf4214
apply clang-format
821c29e
Merge remote-tracking branch 'origin/develop' into followupVRFwarning
7bfd8b2
Merge remote-tracking branch 'origin/develop' into followupVRFwarning
8940c69
Update new SolveRoot failure code, and Merge branch 'develop' of http…
rraustad 125bd13
Remove unused and redundant code
rraustad 964e38d
Simple comment update on cloned repo to test workflow
rraustad cf8ea42
Test yml update
rraustadAtTrane 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -314,8 +314,14 @@ namespace HVACVariableRefrigerantFlow { | |
| int CoolCapFTErrorIndex = 0; // warning message index | ||
| int HeatEIRFPLRErrorIndex = 0; // warning message index | ||
| int CoolEIRFPLRErrorIndex = 0; // warning message index | ||
| int LowLoadTeError = 0; | ||
| int LowLoadTeErrorIndex = 0; // warning message index | ||
| int LowLoadTeIterError = 0; | ||
| int LowLoadTeError2Neg = 0; | ||
| int LowLoadTeError2NegIndex = 0; // warning message index | ||
| int LowLoadTeError2PosTsuc = 0; | ||
| int LowLoadTeError2PosTsucIndex = 0; // warning message index | ||
| int LowLoadTeError2PosOUTe = 0; | ||
| int LowLoadTeError2PosOUTeIndex = 0; // warning message index | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are you planning to use these?
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes, added back the warnings |
||
| int LowLoadTeErrorIndex = 0; // warning message index | ||
| // The following are for the Algorithm Type: VRF model based on physics, applicable for Fluid Temperature Control | ||
| int AlgorithmIUCtrl; // VRF indoor unit control algorithm, 1-High sensible, 2-Te/Tc constant | ||
| Array1D<Real64> CompressorSpeed; // compressor speed array [rps] | ||
|
|
||
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.
Maybe it's just me, but I don't understand what the warning is trying to convey. Is "Te" something you'd expect the user to understand?
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.
This warning seems more like a diagnostic message for developers, rather than a user-friendly explanation. We might consider making it more user-oriented.