-
Notifications
You must be signed in to change notification settings - Fork 401
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
Add Coil:*:DX:VariableSpeed
as valid AirflowNetwork:Distribution:Component:Coil
#10791
Conversation
} else if (SELECT_CASE_var == "COIL:COOLING:DX:VARIABLESPEED") { | ||
ValidateComponent( | ||
m_state, "Coil:Cooling:DX:VariableSpeed", DisSysCompCoilData(i).name, IsNotOK, format(RoutineName) + CurrentModuleObject); | ||
++MultiSpeedHPIndicator; | ||
if (IsNotOK) { | ||
ErrorsFound = true; | ||
} else { | ||
SetDXCoilAirLoopNumber(m_state, DisSysCompCoilData(i).name, DisSysCompCoilData(i).AirLoopNum); | ||
} | ||
|
||
} else if (SELECT_CASE_var == "COIL:HEATING:DX:VARIABLESPEED") { | ||
ValidateComponent( | ||
m_state, "Coil:Heating:DX:VariableSpeed", DisSysCompCoilData(i).name, IsNotOK, format(RoutineName) + CurrentModuleObject); | ||
++MultiSpeedHPIndicator; | ||
if (IsNotOK) { | ||
ErrorsFound = true; | ||
} else { | ||
SetDXCoilAirLoopNumber(m_state, DisSysCompCoilData(i).name, DisSysCompCoilData(i).AirLoopNum); | ||
} | ||
|
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.
Add variable speed coils as a possible coil choice.
\item | ||
\hyperref[coilcoolingdxvariablespeed]{Coil:Cooling:DX:VariableSpeed} | ||
\item | ||
\hyperref[coilheatingdxmultispeed]{Coil:Heating:DX:MultiSpeed} | ||
\item | ||
\hyperref[coilheatingdxvariablespeed]{Coil:Heating:DX:VariableSpeed} |
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.
Update the documentation.
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 looks good to me.
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.
OK, this makes sense. Just adding them as valid entries, not having to actually modify any simulation code really. 👍
Pulled develop in and tested it, all happy. Those 2 Linux results are likely just the random issues we've seen recently on Linux. Merging this. Thanks @lymereJ and @jasondegraw |
Pull request overview
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.