Skip to content

Commit

Permalink
Merge pull request #10667 from NREL/vrfCoolingFanCyclingFollowup
Browse files Browse the repository at this point in the history
Enable cycling in continuous mode Fan:System in VRF FluidTCtrl model
  • Loading branch information
Myoldmopar authored Sep 11, 2024
2 parents e2692dd + 15bda4e commit 27f9b68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EnergyPlus/DXCoils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -16787,7 +16787,7 @@ void CalcVRFCoolingCoil_FluidTCtrl(EnergyPlusData &state,
}

// If cycling fan, send coil part-load fraction to on/off fan via HVACDataGlobals
if (fanOp == HVAC::FanOp::Cycling) state.dataHVACGlobal->OnOffFanPartLoadFraction = PLF;
if (fanOp == HVAC::FanOp::Cycling) state.dataHVACGlobal->OnOffFanPartLoadFraction = thisDXCoil.CoolingCoilRuntimeFraction;

// Check for saturation error and modify temperature at constant enthalpy
if (OutletAirTemp < PsyTsatFnHPb(state, OutletAirEnthalpy, OutdoorPressure)) {
Expand Down

0 comments on commit 27f9b68

Please sign in to comment.