-
Notifications
You must be signed in to change notification settings - Fork 393
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
Global HVACManager, HVACMultiSpeedHeatPump, and HVACDXHeatPumpSystem #8627
Conversation
extern int const SuppHeatingCoilRec; // Supplymental heating coil type: COIL:ENGINEHEATRECOVERY:HEATING | ||
int constexpr SuppHeatingCoilGas(1); // Supplymental heating coil type: COIL:GAS:HEATING | ||
int constexpr SuppHeatingCoilElec(2); // Supplymental heating coil type: COIL:ELECTRIC:HEATING | ||
int constexpr SuppHeatingCoilRec(3); // Supplymental heating coil type: COIL:ENGINEHEATRECOVERY:HEATING | ||
|
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.
constexpr
is used instead of enum class
since these values are compared with integer values of parameters that are describing coil types in DataHVACGlobals for now.
Pulled develop in locally and building and testing. This will go next if it is all good. |
The three build warnings that were showing up on Mac are not there in my local build anymore, as expected, since they were addressed in develop by now. Build and unit tests are good to go. Waiting on fresh develop build to finish in a few minutes then I'll run some regressions. I anticipate this merging in 15 minutes. I will then pull develop into my own globals branch and get it pushed and merged, and switch back over to non-globals PRs for a bit. |
Ran 300 regression files and zero diffs at all. Everything is good here, merging this in. Thanks @dareumnam ! |
Pull request overview
Moved HVACManager, HVACMultiSpeedHeatPump, and HVACDXHeatPumpSystem to state
NOTE: ENHANCEMENTS MUST FOLLOW A SUBMISSION PROCESS INCLUDING A FEATURE PROPOSAL AND DESIGN DOCUMENT PRIOR TO SUBMITTING CODE
Pull Request Author
Add to this list or remove from it as applicable. This is a simple templated set of guidelines.
Reviewer
This will not be exhaustively relevant to every PR.