diff --git a/idd/Energy+.idd.in b/idd/Energy+.idd.in index ed80e986352..fd3e8c8ab25 100644 --- a/idd/Energy+.idd.in +++ b/idd/Energy+.idd.in @@ -52276,12 +52276,17 @@ Coil:Cooling:DX:CurveFit:OperatingMode, \minimum 0.0 \maximum 3000.0 \default 0.0 - A2, \field Apply Latent Degradation to Speeds Greater than 1 + A2, \field Apply Part Load Fraction to Speeds Greater than 1 + \type choice + \key Yes + \key No + \default Yes + A3, \field Apply Latent Degradation to Speeds Greater than 1 \type choice \key Yes \key No \default No - A3, \field Condenser Type + A4, \field Condenser Type \type choice \key AirCooled \key EvaporativelyCooled @@ -52297,35 +52302,35 @@ Coil:Cooling:DX:CurveFit:OperatingMode, \note Must be lower than or equal to the highest speed number. \note If blank, defaults to the highest speed number used. \type integer - A4, \field Speed 1 Name + A5, \field Speed 1 Name \required-field \type object-list \object-list DXCoolingSpeedNames - A5, \field Speed 2 Name + A6, \field Speed 2 Name \type object-list \object-list DXCoolingSpeedNames - A6, \field Speed 3 Name + A7, \field Speed 3 Name \type object-list \object-list DXCoolingSpeedNames - A7, \field Speed 4 Name + A8, \field Speed 4 Name \type object-list \object-list DXCoolingSpeedNames - A8, \field Speed 5 Name + A9, \field Speed 5 Name \type object-list \object-list DXCoolingSpeedNames - A9, \field Speed 6 Name + A10, \field Speed 6 Name \type object-list \object-list DXCoolingSpeedNames - A10, \field Speed 7 Name + A11, \field Speed 7 Name \type object-list \object-list DXCoolingSpeedNames - A11, \field Speed 8 Name + A12, \field Speed 8 Name \type object-list \object-list DXCoolingSpeedNames - A12, \field Speed 9 Name + A13, \field Speed 9 Name \type object-list \object-list DXCoolingSpeedNames - A13; \field Speed 10 Name + A14; \field Speed 10 Name \type object-list \object-list DXCoolingSpeedNames diff --git a/src/EnergyPlus/Coils/CoilCoolingDXCurveFitOperatingMode.cc b/src/EnergyPlus/Coils/CoilCoolingDXCurveFitOperatingMode.cc index 3ae21ee9a6a..72d25aaf44a 100644 --- a/src/EnergyPlus/Coils/CoilCoolingDXCurveFitOperatingMode.cc +++ b/src/EnergyPlus/Coils/CoilCoolingDXCurveFitOperatingMode.cc @@ -81,6 +81,11 @@ void CoilCoolingDXCurveFitOperatingMode::instantiateFromInputSpec(EnergyPlus::En this->evapRateRatio = input_data.ratio_of_initial_moisture_evaporation_rate_and_steady_state_latent_capacity; this->maxCyclingRate = input_data.maximum_cycling_rate; this->latentTimeConst = input_data.latent_capacity_time_constant; + if (Util::SameString(input_data.apply_part_load_fraction_to_speeds_greater_than_1, "Yes")) { + this->applyPartLoadFractionAllSpeeds = true; + } else { + this->applyPartLoadFractionAllSpeeds = false; + } if (Util::SameString(input_data.apply_latent_degradation_to_speeds_greater_than_1, "Yes")) { this->applyLatentDegradationAllSpeeds = true; } else { @@ -157,11 +162,12 @@ CoilCoolingDXCurveFitOperatingMode::CoilCoolingDXCurveFitOperatingMode(EnergyPlu input_specs.ratio_of_initial_moisture_evaporation_rate_and_steady_state_latent_capacity = state.dataIPShortCut->rNumericArgs(5); input_specs.latent_capacity_time_constant = state.dataIPShortCut->rNumericArgs(6); input_specs.nominal_time_for_condensate_removal_to_begin = state.dataIPShortCut->rNumericArgs(7); - input_specs.apply_latent_degradation_to_speeds_greater_than_1 = state.dataIPShortCut->cAlphaArgs(2); - input_specs.condenser_type = state.dataIPShortCut->cAlphaArgs(3); + input_specs.apply_part_load_fraction_to_speeds_greater_than_1 = state.dataIPShortCut->cAlphaArgs(2); + input_specs.apply_latent_degradation_to_speeds_greater_than_1 = state.dataIPShortCut->cAlphaArgs(3); + input_specs.condenser_type = state.dataIPShortCut->cAlphaArgs(4); input_specs.nominal_evap_condenser_pump_power = state.dataIPShortCut->rNumericArgs(8); input_specs.nominal_speed_number = state.dataIPShortCut->rNumericArgs(9); - for (int fieldNum = 4; fieldNum <= NumAlphas; fieldNum++) { + for (int fieldNum = 5; fieldNum <= NumAlphas; fieldNum++) { if (state.dataIPShortCut->cAlphaArgs(fieldNum).empty()) { break; } @@ -376,7 +382,11 @@ void CoilCoolingDXCurveFitOperatingMode::CalcOperatingMode(EnergyPlus::EnergyPlu } OpModeRTF = thisspeed.RTF; - OpModePower = thisspeed.fullLoadPower * thisspeed.RTF; + if ((!this->applyPartLoadFractionAllSpeeds) && (speedNum > 1)) { + OpModePower = thisspeed.fullLoadPower * speedRatio; + } else { + OpModePower = thisspeed.fullLoadPower * thisspeed.RTF; + } OpModeWasteHeat = thisspeed.fullLoadWasteHeat * thisspeed.RTF; if ((speedNum > 1) && (speedRatio < 1.0) && !singleMode) { @@ -411,7 +421,11 @@ void CoilCoolingDXCurveFitOperatingMode::CalcOperatingMode(EnergyPlus::EnergyPlu inletNode.MassFlowRate; outletNode.Temp = Psychrometrics::PsyTdbFnHW(outletNode.Enthalpy, outletNode.HumRat); - this->OpModePower += (1.0 - thisspeed.RTF) * lowerspeed.fullLoadPower; + if (!this->applyPartLoadFractionAllSpeeds) { + this->OpModePower += (1.0 - speedRatio) * lowerspeed.fullLoadPower; + } else { + this->OpModePower += (1.0 - thisspeed.RTF) * lowerspeed.fullLoadPower; + } this->OpModeWasteHeat += (1.0 - thisspeed.RTF) * lowerspeed.fullLoadWasteHeat; this->OpModeRTF = 1.0; // if we are on greater than 1 speed, RTF *must* be 1 } diff --git a/src/EnergyPlus/Coils/CoilCoolingDXCurveFitOperatingMode.hh b/src/EnergyPlus/Coils/CoilCoolingDXCurveFitOperatingMode.hh index 893162c3baf..06f5bfd4617 100644 --- a/src/EnergyPlus/Coils/CoilCoolingDXCurveFitOperatingMode.hh +++ b/src/EnergyPlus/Coils/CoilCoolingDXCurveFitOperatingMode.hh @@ -70,6 +70,7 @@ struct CoilCoolingDXCurveFitOperatingModeInputSpecification Real64 ratio_of_initial_moisture_evaporation_rate_and_steady_state_latent_capacity = 0.0; Real64 latent_capacity_time_constant = 0.0; Real64 nominal_time_for_condensate_removal_to_begin = 0.0; + std::string apply_part_load_fraction_to_speeds_greater_than_1; std::string apply_latent_degradation_to_speeds_greater_than_1; std::string condenser_type; Real64 nominal_evap_condenser_pump_power = 0.0; @@ -114,6 +115,7 @@ struct CoilCoolingDXCurveFitOperatingMode Real64 maxCyclingRate = 0.0; Real64 latentTimeConst = 0.0; bool latentDegradationActive = false; + bool applyPartLoadFractionAllSpeeds = true; bool applyLatentDegradationAllSpeeds = false; // results from coil model at speed diff --git a/src/Transition/InputRulesFiles/Rules25-2-0-to-26-1-0.md b/src/Transition/InputRulesFiles/Rules25-2-0-to-26-1-0.md index b7a50bd3769..2077f9f3cd0 100644 --- a/src/Transition/InputRulesFiles/Rules25-2-0-to-26-1-0.md +++ b/src/Transition/InputRulesFiles/Rules25-2-0-to-26-1-0.md @@ -24,6 +24,12 @@ See pull request [#11366](https://github.com/NatLabRockies/EnergyPlus/pull/11366 # Object Change: ObjectStartsWithC +# Object Change: Coil:Cooling:DX:CurveFit:OperatingMode + +Insert new field A2 which is also TODO, "Apply Part Load Fraction to Speeds Greater than 1", defaulted to blank + +See pull request TODO. + # Object Change: ObjectStartsWithD # Object Change: ObjectStartsWithE diff --git a/testfiles/5Zone_Unitary_VSDesuperheater.idf b/testfiles/5Zone_Unitary_VSDesuperheater.idf index 5db8b3a0b69..4917f2685e5 100644 --- a/testfiles/5Zone_Unitary_VSDesuperheater.idf +++ b/testfiles/5Zone_Unitary_VSDesuperheater.idf @@ -2812,6 +2812,7 @@ 0.0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0.0, !- Latent Capacity Time Constant {s} 0.0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 No, !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} diff --git a/testfiles/CoilWaterDesuperheatingUnitaryCoilDX.idf b/testfiles/CoilWaterDesuperheatingUnitaryCoilDX.idf index 4f71a028cc4..31d84b9e722 100644 --- a/testfiles/CoilWaterDesuperheatingUnitaryCoilDX.idf +++ b/testfiles/CoilWaterDesuperheatingUnitaryCoilDX.idf @@ -1502,6 +1502,7 @@ , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} , !- Latent Capacity Time Constant {s} , !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 , !- Apply Latent Degradation to Speeds Greater than 1 , !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} diff --git a/testfiles/DXCoilSystemAuto.idf b/testfiles/DXCoilSystemAuto.idf index 4f5e77cc0c5..469008115f3 100644 --- a/testfiles/DXCoilSystemAuto.idf +++ b/testfiles/DXCoilSystemAuto.idf @@ -1744,6 +1744,7 @@ , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} , !- Latent Capacity Time Constant {s} , !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 , !- Apply Latent Degradation to Speeds Greater than 1 , !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} diff --git a/testfiles/EMSLoadBasedMultiSpeedDXCoilOverrideControl.idf b/testfiles/EMSLoadBasedMultiSpeedDXCoilOverrideControl.idf index e1c4897ae41..6247c44a3c0 100644 --- a/testfiles/EMSLoadBasedMultiSpeedDXCoilOverrideControl.idf +++ b/testfiles/EMSLoadBasedMultiSpeedDXCoilOverrideControl.idf @@ -2532,6 +2532,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 No, !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -2991,6 +2992,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 No, !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -3460,6 +3462,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 No, !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -4116,6 +4119,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 No, !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -4772,6 +4776,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 No, !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} diff --git a/testfiles/EMSSetpointBasedMultiSpeedDXCoilOverrideControl.idf b/testfiles/EMSSetpointBasedMultiSpeedDXCoilOverrideControl.idf index d70e3ce62c1..3c1d09777e8 100644 --- a/testfiles/EMSSetpointBasedMultiSpeedDXCoilOverrideControl.idf +++ b/testfiles/EMSSetpointBasedMultiSpeedDXCoilOverrideControl.idf @@ -2945,6 +2945,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 No, !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} diff --git a/testfiles/FurnaceWithDXSystem_CoolingHXAssisted_NewDXCoil.idf b/testfiles/FurnaceWithDXSystem_CoolingHXAssisted_NewDXCoil.idf index 898196a2e27..9b1d9bf596b 100644 --- a/testfiles/FurnaceWithDXSystem_CoolingHXAssisted_NewDXCoil.idf +++ b/testfiles/FurnaceWithDXSystem_CoolingHXAssisted_NewDXCoil.idf @@ -1493,6 +1493,7 @@ , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} , !- Latent Capacity Time Constant {s} , !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 , !- Apply Latent Degradation to Speeds Greater than 1 , !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} diff --git a/testfiles/HeatPump-ACCA-Sizing_UnitarySystem_HeatPumpAuto.idf b/testfiles/HeatPump-ACCA-Sizing_UnitarySystem_HeatPumpAuto.idf index 108885a0566..6d2f54ceb29 100644 --- a/testfiles/HeatPump-ACCA-Sizing_UnitarySystem_HeatPumpAuto.idf +++ b/testfiles/HeatPump-ACCA-Sizing_UnitarySystem_HeatPumpAuto.idf @@ -1759,6 +1759,7 @@ , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} , !- Latent Capacity Time Constant {s} , !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 , !- Apply Latent Degradation to Speeds Greater than 1 , !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} diff --git a/testfiles/PythonPluginLoadBasedMultiSpeedDXCoilOverrideControl.idf b/testfiles/PythonPluginLoadBasedMultiSpeedDXCoilOverrideControl.idf index 40ad730d946..1c3f9f43325 100644 --- a/testfiles/PythonPluginLoadBasedMultiSpeedDXCoilOverrideControl.idf +++ b/testfiles/PythonPluginLoadBasedMultiSpeedDXCoilOverrideControl.idf @@ -2532,6 +2532,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 No, !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -2991,6 +2992,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 No, !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -3460,6 +3462,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 No, !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -4116,6 +4119,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 No, !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -4772,6 +4776,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 No, !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} diff --git a/testfiles/UnitarySystem_DXCoilSystemAuto.idf b/testfiles/UnitarySystem_DXCoilSystemAuto.idf index 06c06dd29c4..741033a59c6 100644 --- a/testfiles/UnitarySystem_DXCoilSystemAuto.idf +++ b/testfiles/UnitarySystem_DXCoilSystemAuto.idf @@ -1771,6 +1771,7 @@ , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} , !- Latent Capacity Time Constant {s} , !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 , !- Apply Latent Degradation to Speeds Greater than 1 , !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} diff --git a/testfiles/UnitarySystem_FurnaceWithDXSystemRHcontrol.idf b/testfiles/UnitarySystem_FurnaceWithDXSystemRHcontrol.idf index 7018409e80d..a47351dd993 100644 --- a/testfiles/UnitarySystem_FurnaceWithDXSystemRHcontrol.idf +++ b/testfiles/UnitarySystem_FurnaceWithDXSystemRHcontrol.idf @@ -1359,6 +1359,7 @@ 0.4, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 45, !- Latent Capacity Time Constant {s} 1000, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 , !- Apply Latent Degradation to Speeds Greater than 1 , !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} diff --git a/testfiles/UnitarySystem_HeatPumpAuto.idf b/testfiles/UnitarySystem_HeatPumpAuto.idf index 57e94c2379a..3fea522dc49 100644 --- a/testfiles/UnitarySystem_HeatPumpAuto.idf +++ b/testfiles/UnitarySystem_HeatPumpAuto.idf @@ -1741,6 +1741,7 @@ , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} , !- Latent Capacity Time Constant {s} , !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 , !- Apply Latent Degradation to Speeds Greater than 1 , !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} diff --git a/testfiles/UnitarySystem_MultiSpeedCoils_SingleMode.idf b/testfiles/UnitarySystem_MultiSpeedCoils_SingleMode.idf index e82e03c48d8..a24a0d03d26 100644 --- a/testfiles/UnitarySystem_MultiSpeedCoils_SingleMode.idf +++ b/testfiles/UnitarySystem_MultiSpeedCoils_SingleMode.idf @@ -2162,6 +2162,7 @@ 1.5, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 45.0, !- Latent Capacity Time Constant {s} 1000.0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 No, !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type 100, !- Nominal Evaporative Condenser Pump Power {W} diff --git a/testfiles/UnitarySystem_MultiSpeedDX.idf b/testfiles/UnitarySystem_MultiSpeedDX.idf index 6a641f41089..f49df6f7746 100644 --- a/testfiles/UnitarySystem_MultiSpeedDX.idf +++ b/testfiles/UnitarySystem_MultiSpeedDX.idf @@ -2542,6 +2542,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 No, !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -3001,6 +3002,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 No, !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -3470,6 +3472,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 No, !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -4126,6 +4129,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 No, !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -4782,6 +4786,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 No, !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} diff --git a/testfiles/UnitarySystem_MultiSpeedDX_EconoStaging.idf b/testfiles/UnitarySystem_MultiSpeedDX_EconoStaging.idf index 2d5d54113e4..cfc65e45e52 100644 --- a/testfiles/UnitarySystem_MultiSpeedDX_EconoStaging.idf +++ b/testfiles/UnitarySystem_MultiSpeedDX_EconoStaging.idf @@ -2466,6 +2466,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 No, !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -2926,6 +2927,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 No, !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -4432,6 +4434,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 No, !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} diff --git a/testfiles/UnitarySystem_SingleSpeedDX.idf b/testfiles/UnitarySystem_SingleSpeedDX.idf index 92b64ca268d..62a1156bcfe 100644 --- a/testfiles/UnitarySystem_SingleSpeedDX.idf +++ b/testfiles/UnitarySystem_SingleSpeedDX.idf @@ -2515,6 +2515,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 , !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type 0, !- Nominal Evaporative Condenser Pump Power {W} @@ -2891,6 +2892,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 , !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type 0, !- Nominal Evaporative Condenser Pump Power {W} @@ -3254,6 +3256,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 , !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type 0, !- Nominal Evaporative Condenser Pump Power {W} @@ -3705,6 +3708,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 , !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type 0, !- Nominal Evaporative Condenser Pump Power {W} @@ -4156,6 +4160,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 , !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type 0, !- Nominal Evaporative Condenser Pump Power {W} diff --git a/testfiles/UnitarySystem_SubcoolReheatDX.idf b/testfiles/UnitarySystem_SubcoolReheatDX.idf index ce650b2cc4e..9039be23752 100644 --- a/testfiles/UnitarySystem_SubcoolReheatDX.idf +++ b/testfiles/UnitarySystem_SubcoolReheatDX.idf @@ -3030,6 +3030,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 , !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type 0, !- Nominal Evaporative Condenser Pump Power {W} @@ -3159,6 +3160,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 , !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type 0, !- Nominal Evaporative Condenser Pump Power {W} @@ -3298,6 +3300,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 , !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type 0, !- Nominal Evaporative Condenser Pump Power {W} @@ -3775,6 +3778,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 , !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type 0, !- Nominal Evaporative Condenser Pump Power {W} @@ -4137,6 +4141,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 , !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type 0, !- Nominal Evaporative Condenser Pump Power {W} @@ -4587,6 +4592,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 , !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type 0, !- Nominal Evaporative Condenser Pump Power {W} @@ -5037,6 +5043,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 , !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type 0, !- Nominal Evaporative Condenser Pump Power {W} diff --git a/testfiles/UnitarySystem_TwoSpeedDX.idf b/testfiles/UnitarySystem_TwoSpeedDX.idf index a7db7d4c18c..5b7254c7f2a 100644 --- a/testfiles/UnitarySystem_TwoSpeedDX.idf +++ b/testfiles/UnitarySystem_TwoSpeedDX.idf @@ -2518,6 +2518,7 @@ , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} , !- Latent Capacity Time Constant {s} , !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 , !- Apply Latent Degradation to Speeds Greater than 1 , !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -2973,6 +2974,7 @@ , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} , !- Latent Capacity Time Constant {s} , !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 , !- Apply Latent Degradation to Speeds Greater than 1 , !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -3415,6 +3417,7 @@ , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} , !- Latent Capacity Time Constant {s} , !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 , !- Apply Latent Degradation to Speeds Greater than 1 , !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -3945,6 +3948,7 @@ , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} , !- Latent Capacity Time Constant {s} , !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 , !- Apply Latent Degradation to Speeds Greater than 1 , !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -4475,6 +4479,7 @@ , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} , !- Latent Capacity Time Constant {s} , !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 , !- Apply Latent Degradation to Speeds Greater than 1 , !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} diff --git a/testfiles/UnitarySystem_TwoStageDX.idf b/testfiles/UnitarySystem_TwoStageDX.idf index 578f5854311..cfe71418ee7 100644 --- a/testfiles/UnitarySystem_TwoStageDX.idf +++ b/testfiles/UnitarySystem_TwoStageDX.idf @@ -2531,6 +2531,7 @@ , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} , !- Latent Capacity Time Constant {s} , !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 Yes, !- Apply Latent Degradation to Speeds Greater than 1 , !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -2934,6 +2935,7 @@ , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} , !- Latent Capacity Time Constant {s} , !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 Yes, !- Apply Latent Degradation to Speeds Greater than 1 , !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -3324,6 +3326,7 @@ , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} , !- Latent Capacity Time Constant {s} , !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 Yes, !- Apply Latent Degradation to Speeds Greater than 1 , !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -3802,6 +3805,7 @@ , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} , !- Latent Capacity Time Constant {s} , !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 Yes, !- Apply Latent Degradation to Speeds Greater than 1 , !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -4274,6 +4278,7 @@ , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} , !- Latent Capacity Time Constant {s} , !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 Yes, !- Apply Latent Degradation to Speeds Greater than 1 , !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} diff --git a/testfiles/UnitarySystem_TwoStageDXWithHumidityControl.idf b/testfiles/UnitarySystem_TwoStageDXWithHumidityControl.idf index ba188e7ab19..f1c505ac945 100644 --- a/testfiles/UnitarySystem_TwoStageDXWithHumidityControl.idf +++ b/testfiles/UnitarySystem_TwoStageDXWithHumidityControl.idf @@ -2532,6 +2532,7 @@ , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} , !- Latent Capacity Time Constant {s} , !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 Yes, !- Apply Latent Degradation to Speeds Greater than 1 , !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -2592,6 +2593,7 @@ , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} , !- Latent Capacity Time Constant {s} , !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 Yes, !- Apply Latent Degradation to Speeds Greater than 1 , !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -3032,6 +3034,7 @@ , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} , !- Latent Capacity Time Constant {s} , !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 Yes, !- Apply Latent Degradation to Speeds Greater than 1 , !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -3092,6 +3095,7 @@ , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} , !- Latent Capacity Time Constant {s} , !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 Yes, !- Apply Latent Degradation to Speeds Greater than 1 , !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -3519,6 +3523,7 @@ , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} , !- Latent Capacity Time Constant {s} , !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 Yes, !- Apply Latent Degradation to Speeds Greater than 1 , !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -3579,6 +3584,7 @@ , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} , !- Latent Capacity Time Constant {s} , !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 Yes, !- Apply Latent Degradation to Speeds Greater than 1 , !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -4094,6 +4100,7 @@ , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} , !- Latent Capacity Time Constant {s} , !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 Yes, !- Apply Latent Degradation to Speeds Greater than 1 , !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -4154,6 +4161,7 @@ , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} , !- Latent Capacity Time Constant {s} , !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 Yes, !- Apply Latent Degradation to Speeds Greater than 1 , !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -4663,6 +4671,7 @@ , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} , !- Latent Capacity Time Constant {s} , !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 Yes, !- Apply Latent Degradation to Speeds Greater than 1 , !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -4723,6 +4732,7 @@ , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} , !- Latent Capacity Time Constant {s} , !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 Yes, !- Apply Latent Degradation to Speeds Greater than 1 , !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} diff --git a/testfiles/UnitarySystem_VSCoolingCoil.idf b/testfiles/UnitarySystem_VSCoolingCoil.idf index 4eab43dbb75..bbbf49a8576 100644 --- a/testfiles/UnitarySystem_VSCoolingCoil.idf +++ b/testfiles/UnitarySystem_VSCoolingCoil.idf @@ -1741,6 +1741,7 @@ 1.5, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} , !- Latent Capacity Time Constant {s} 1000, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 , !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} diff --git a/testfiles/UnitarySystem_VariableSpeedDX_SZVAV.idf b/testfiles/UnitarySystem_VariableSpeedDX_SZVAV.idf index 4ccb3befd11..a9ca1bb37e3 100644 --- a/testfiles/UnitarySystem_VariableSpeedDX_SZVAV.idf +++ b/testfiles/UnitarySystem_VariableSpeedDX_SZVAV.idf @@ -2467,6 +2467,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 No, !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -4466,6 +4467,7 @@ 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 No, !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} diff --git a/testfiles/WaterSideEconomizer_PreCoolCoil.idf b/testfiles/WaterSideEconomizer_PreCoolCoil.idf index 557494cfe05..a53ae2f52ee 100644 --- a/testfiles/WaterSideEconomizer_PreCoolCoil.idf +++ b/testfiles/WaterSideEconomizer_PreCoolCoil.idf @@ -2907,6 +2907,7 @@ , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} , !- Latent Capacity Time Constant {s} , !- Nominal Time for Condensate Removal to Begin {s} + , !- Apply Part Load Fraction to Speeds Greater than 1 , !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} diff --git a/tst/EnergyPlus/unit/Coils/CoilCoolingDX.unit.cc b/tst/EnergyPlus/unit/Coils/CoilCoolingDX.unit.cc index ce9e2a33e28..0228b529f06 100644 --- a/tst/EnergyPlus/unit/Coils/CoilCoolingDX.unit.cc +++ b/tst/EnergyPlus/unit/Coils/CoilCoolingDX.unit.cc @@ -96,7 +96,7 @@ TEST_F(CoilCoolingDXTest, CoilCoolingDXAlternateModePerformance) " Coil Mode 1,", " 5000, !- Rated Gross Total Cooling Capacity {W}", " 0.25, !- Rated Evaporator Air Flow Rate {m3/s}", - " ,,,,,,,,", + " ,,,,,,,,,", " 2,Coil Mode 1 Speed 1,Coil Mode 1 Speed 2;", " Coil:Cooling:DX:CurveFit:Speed,", @@ -123,7 +123,7 @@ TEST_F(CoilCoolingDXTest, CoilCoolingDXAlternateModePerformance) " Coil Mode 2,", " 5000, !- Rated Gross Total Cooling Capacity {W}", " 0.25, !- Rated Evaporator Air Flow Rate {m3/s}", - " ,,,,,,,,", + " ,,,,,,,,,", " 2,Coil Mode 2 Speed 1,Coil Mode 2 Speed 2;", " Coil:Cooling:DX:CurveFit:Speed,", @@ -232,7 +232,7 @@ TEST_F(CoilCoolingDXTest, CoilCoolingDXAlternateModePerformanceHitsSaturation) " Coil Mode 1,", " 10000, !- Rated Gross Total Cooling Capacity {W}", " 0.25, !- Rated Evaporator Air Flow Rate {m3/s}", - " ,,,,,,,,", + " ,,,,,,,,,", " 2,Coil Mode 1 Speed 1,Coil Mode 1 Speed 2;", " Coil:Cooling:DX:CurveFit:Speed,", @@ -259,7 +259,7 @@ TEST_F(CoilCoolingDXTest, CoilCoolingDXAlternateModePerformanceHitsSaturation) " Coil Mode 2,", " 10000, !- Rated Gross Total Cooling Capacity {W}", " 0.25, !- Rated Evaporator Air Flow Rate {m3/s}", - " ,,,,,,,,", + " ,,,,,,,,,", " 2,Coil Mode 2 Speed 1,Coil Mode 2 Speed 2;", " Coil:Cooling:DX:CurveFit:Speed,", @@ -1714,6 +1714,7 @@ TEST_F(CoilCoolingDXTest, CoilCoolingDX_LowerSpeedFlowSizingTest) " 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}", " 0, !- Latent Capacity Time Constant {s}", " 0, !- Nominal Time for Condensate Removal to Begin {s}", + " , !- Apply Part Load Fraction to Speeds Greater than 1", " , !- Apply Latent Degradation to Speeds Greater than 1", " AirCooled, !- Condenser Type", " 0, !- Nominal Evaporative Condenser Pump Power {W}", diff --git a/tst/EnergyPlus/unit/Coils/CoilCoolingDXCurveFitOperatingMode.unit.cc b/tst/EnergyPlus/unit/Coils/CoilCoolingDXCurveFitOperatingMode.unit.cc index 666130847a3..f8b3c272d6b 100644 --- a/tst/EnergyPlus/unit/Coils/CoilCoolingDXCurveFitOperatingMode.unit.cc +++ b/tst/EnergyPlus/unit/Coils/CoilCoolingDXCurveFitOperatingMode.unit.cc @@ -112,6 +112,7 @@ TEST_F(CoilCoolingDXTest, CoilCoolingDXCurveFitOperatingMode_Sizing) " 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}", " 0, !- Latent Capacity Time Constant {s}", " 0, !- Nominal Time for Condensate Removal to Begin {s}", + " Yes, !- Apply Part Load Fraction to Speeds Greater than 1", " No, !- Apply Latent Degradation to Speeds Greater than 1", " EvaporativelyCooled, !- Condenser Type", " Autosize, !- Nominal Evaporative Condenser Pump Power {W}", @@ -259,6 +260,7 @@ TEST_F(CoilCoolingDXTest, CoilCoolingDXCurveFitCrankcaseHeaterCurve) " 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}", " 0, !- Latent Capacity Time Constant {s}", " 0, !- Nominal Time for Condensate Removal to Begin {s}", + " Yes, !- Apply Part Load Fraction to Speeds Greater than 1", " No, !- Apply Latent Degradation to Speeds Greater than 1", " EvaporativelyCooled, !- Condenser Type", " Autosize, !- Nominal Evaporative Condenser Pump Power {W}", diff --git a/tst/EnergyPlus/unit/Coils/CoilCoolingDXFixture.hh b/tst/EnergyPlus/unit/Coils/CoilCoolingDXFixture.hh index 81bf01ef746..c60e2cbacc6 100644 --- a/tst/EnergyPlus/unit/Coils/CoilCoolingDXFixture.hh +++ b/tst/EnergyPlus/unit/Coils/CoilCoolingDXFixture.hh @@ -136,6 +136,8 @@ protected: " 100, ", // latent time constant " 300, ", // latent time for removal // to begin + " Yes, ", // apply plf in higher + // speeds than 1 " Yes, ", // apply latent in higher // speeds than 1 " EvaporativelyCooled, ", // condenser type diff --git a/tst/EnergyPlus/unit/HVACDXSystem.unit.cc b/tst/EnergyPlus/unit/HVACDXSystem.unit.cc index eeb597ab0ff..a1ed8035834 100644 --- a/tst/EnergyPlus/unit/HVACDXSystem.unit.cc +++ b/tst/EnergyPlus/unit/HVACDXSystem.unit.cc @@ -928,6 +928,7 @@ TEST_F(EnergyPlusFixture, NewDXCoilModel_RHControl) " 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}", " 0, !- Latent Capacity Time Constant {s}", " 0, !- Nominal Time for Condensate Removal to Begin {s}", + " Yes, !- Apply Part Load Fraction to Speeds Greater than 1", " , !- Apply Latent Degradation to Speeds Greater than 1", " AirCooled, !- Condenser Type", " 0, !- Nominal Evaporative Condenser Pump Power {W}", @@ -988,6 +989,7 @@ TEST_F(EnergyPlusFixture, NewDXCoilModel_RHControl) " 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}", " 0, !- Latent Capacity Time Constant {s}", " 0, !- Nominal Time for Condensate Removal to Begin {s}", + " Yes, !- Apply Part Load Fraction to Speeds Greater than 1", " , !- Apply Latent Degradation to Speeds Greater than 1", " AirCooled, !- Condenser Type", " 0, !- Nominal Evaporative Condenser Pump Power {W}", diff --git a/tst/EnergyPlus/unit/HVACHXAssistedCoolingCoil.unit.cc b/tst/EnergyPlus/unit/HVACHXAssistedCoolingCoil.unit.cc index 87bab0548a1..dd8c80eb0dc 100644 --- a/tst/EnergyPlus/unit/HVACHXAssistedCoolingCoil.unit.cc +++ b/tst/EnergyPlus/unit/HVACHXAssistedCoolingCoil.unit.cc @@ -921,6 +921,7 @@ TEST_F(EnergyPlusFixture, HXAssistCCUnitarySystem_NewDXCoil_Processing_Test) " 0.0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}", " , !- Latent Capacity Time Constant {s}", " 0.0, !- Nominal Time for Condensate Removal to Begin {s}", + " Yes, !- Apply Part Load Fraction to Speeds Greater than 1", " , !- Apply Latent Degradation to Speeds Greater than 1", " AirCooled, !- Condenser Type", " , !- Nominal Evaporative Condenser Pump Power {W}", diff --git a/tst/EnergyPlus/unit/StandardRatings.unit.cc b/tst/EnergyPlus/unit/StandardRatings.unit.cc index fe3259795a3..58e3abcc425 100644 --- a/tst/EnergyPlus/unit/StandardRatings.unit.cc +++ b/tst/EnergyPlus/unit/StandardRatings.unit.cc @@ -11562,6 +11562,7 @@ TEST_F(EnergyPlusFixture, CurveFit_02_Speed_15000W_alternateMode_SEER2_2023_Valu " 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}", " 0, !- Latent Capacity Time Constant {s}", " 0, !- Nominal Time for Condensate Removal to Begin {s}", + " Yes, !- Apply Part Load Fraction to Speeds Greater than 1", " , !- Apply Latent Degradation to Speeds Greater than 1", " AirCooled, !- Condenser Type", " 0, !- Nominal Evaporative Condenser Pump Power {W}", @@ -11622,6 +11623,7 @@ TEST_F(EnergyPlusFixture, CurveFit_02_Speed_15000W_alternateMode_SEER2_2023_Valu " 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}", " 0, !- Latent Capacity Time Constant {s}", " 0, !- Nominal Time for Condensate Removal to Begin {s}", + " Yes, !- Apply Part Load Fraction to Speeds Greater than 1", " , !- Apply Latent Degradation to Speeds Greater than 1", " AirCooled, !- Condenser Type", " 0, !- Nominal Evaporative Condenser Pump Power {W}", @@ -11847,6 +11849,7 @@ TEST_F(EnergyPlusFixture, CurveFit_03_Speed_5000W_SEER2_2023_ValueTest) " 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}", " 0, !- Latent Capacity Time Constant {s}", " 0, !- Nominal Time for Condensate Removal to Begin {s}", + " Yes, !- Apply Part Load Fraction to Speeds Greater than 1", " No, !- Apply Latent Degradation to Speeds Greater than 1", " AirCooled, !- Condenser Type", " , !- Nominal Evaporative Condenser Pump Power {W}", @@ -12191,6 +12194,7 @@ TEST_F(EnergyPlusFixture, CurveFit_02_Speed_30000W_alternateMode_IEER_2022_Value " 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}", " 0, !- Latent Capacity Time Constant {s}", " 0, !- Nominal Time for Condensate Removal to Begin {s}", + " Yes, !- Apply Part Load Fraction to Speeds Greater than 1", " , !- Apply Latent Degradation to Speeds Greater than 1", " AirCooled, !- Condenser Type", " 0, !- Nominal Evaporative Condenser Pump Power {W}", @@ -12251,6 +12255,7 @@ TEST_F(EnergyPlusFixture, CurveFit_02_Speed_30000W_alternateMode_IEER_2022_Value " 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}", " 0, !- Latent Capacity Time Constant {s}", " 0, !- Nominal Time for Condensate Removal to Begin {s}", + " Yes, !- Apply Part Load Fraction to Speeds Greater than 1", " , !- Apply Latent Degradation to Speeds Greater than 1", " AirCooled, !- Condenser Type", " 0, !- Nominal Evaporative Condenser Pump Power {W}", @@ -12474,6 +12479,7 @@ TEST_F(EnergyPlusFixture, CurveFit_03_Speed_20000W_IEER_2022_ValueTest) " 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}", " 0, !- Latent Capacity Time Constant {s}", " 0, !- Nominal Time for Condensate Removal to Begin {s}", + " Yes, !- Apply Part Load Fraction to Speeds Greater than 1", " No, !- Apply Latent Degradation to Speeds Greater than 1", " AirCooled, !- Condenser Type", " , !- Nominal Evaporative Condenser Pump Power {W}", diff --git a/tst/EnergyPlus/unit/UnitarySystem.unit.cc b/tst/EnergyPlus/unit/UnitarySystem.unit.cc index 4adbc995587..e1158bbae78 100644 --- a/tst/EnergyPlus/unit/UnitarySystem.unit.cc +++ b/tst/EnergyPlus/unit/UnitarySystem.unit.cc @@ -18341,6 +18341,7 @@ TEST_F(EnergyPlusFixture, Test_UnitarySystemModel_SubcoolReheatCoil) 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + Yes, !- Apply Part Load Fraction to Speeds Greater than 1 , !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type 0, !- Nominal Evaporative Condenser Pump Power {W} @@ -18468,6 +18469,7 @@ Dimensionless; !- Output Unit Type 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + Yes, !- Apply Part Load Fraction to Speeds Greater than 1 , !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type 0, !- Nominal Evaporative Condenser Pump Power {W} @@ -18595,6 +18597,7 @@ Dimensionless; !- Output Unit Type 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + Yes, !- Apply Part Load Fraction to Speeds Greater than 1 , !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type 0, !- Nominal Evaporative Condenser Pump Power {W} @@ -19977,6 +19980,7 @@ TEST_F(ZoneUnitarySysTest, UnitarySystemModel_MultiSpeedDXCoilsNoLoadFlowRateSiz 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + Yes, !- Apply Part Load Fraction to Speeds Greater than 1 No, !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -20286,6 +20290,7 @@ TEST_F(ZoneUnitarySysTest, UnitarySystemModel_MultiSpeedDXCoilsDirectSolutionTes 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + Yes, !- Apply Part Load Fraction to Speeds Greater than 1 No, !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W} @@ -23280,6 +23285,7 @@ TEST_F(ZoneUnitarySysTest, UnitarySystemModel_LowerSpeedFlowSizingTest) 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + Yes, !- Apply Part Load Fraction to Speeds Greater than 1 , !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type 0, !- Nominal Evaporative Condenser Pump Power {W} @@ -26852,6 +26858,7 @@ TEST_F(ZoneUnitarySysTest, ZeroCoolingSpeedTest) 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} 0, !- Latent Capacity Time Constant {s} 0, !- Nominal Time for Condensate Removal to Begin {s} + Yes, !- Apply Part Load Fraction to Speeds Greater than 1 No, !- Apply Latent Degradation to Speeds Greater than 1 AirCooled, !- Condenser Type , !- Nominal Evaporative Condenser Pump Power {W}