Skip to content

Commit b578c64

Browse files
author
Yujie Xu
committed
Revert "Change error message to allow only Fan:SystemModel"
This reverts commit b8c13b9. commited to the wrong branch
1 parent ebb75a9 commit b578c64

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/EnergyPlus/HVACVariableRefrigerantFlow.cc

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3401,14 +3401,13 @@ void GetVRFInputData(EnergyPlusData &state, bool &ErrorsFound)
34013401
}
34023402

34033403
if (thisVrfTU.VRFSysNum > 0) {
3404-
// VRFTU Supply Air Fan Object Type must be Fan:SystemModel if VRF Algorithm Type is AlgorithmTypeFluidTCtrl
3404+
// VRFTU Supply Air Fan Object Type must be Fan:VariableVolume if VRF Algorithm Type is AlgorithmTypeFluidTCtrl
34053405
if (state.dataHVACVarRefFlow->VRF(thisVrfTU.VRFSysNum).VRFAlgorithmType == AlgorithmType::FluidTCtrl &&
3406-
!(thisVrfTU.fanType == HVAC::FanType::SystemModel)) {
3406+
!(thisVrfTU.fanType == HVAC::FanType::VAV || thisVrfTU.fanType == HVAC::FanType::SystemModel)) {
34073407
ShowSevereError(state, cCurrentModuleObject + " = " + thisVrfTU.Name);
34083408
ShowContinueError(state, "Fan type specified = " + cAlphaArgs(7));
34093409
ShowContinueError(
3410-
state,
3411-
"Fan Object Type must be Fan:VariableSystemModel if VRF AirConditioner:VariableRefrigerantFlow:FluidTemperatureControl");
3410+
state, "Fan Object Type must be Fan:VariableVolume if VRF AirConditioner:VariableRefrigerantFlow:FluidTemperatureControl");
34123411
ShowContinueError(state, "is used to model VRF outdoor unit.");
34133412
ErrorsFound = true;
34143413
}

0 commit comments

Comments
 (0)