Skip to content

Commit

Permalink
move defrostPower adjustment after VRFRTF is initialized
Browse files Browse the repository at this point in the history
  • Loading branch information
Yujie Xu committed Sep 23, 2024
1 parent 61760ed commit 1828d18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EnergyPlus/HVACVariableRefrigerantFlow.cc
Original file line number Diff line number Diff line change
Expand Up @@ -12060,7 +12060,6 @@ void VRFCondenserEquipment::CalcVRFCondenser_FluidTCtrl(EnergyPlusData &state, c
this->DefrostPower = 0.0;
}
}
this->DefrostPower *= VRFRTF;

// From the VRF_FluidTCtrl model
TotalCondHeatingCapacity = this->HeatingCapacity;
Expand Down Expand Up @@ -12237,6 +12236,7 @@ void VRFCondenserEquipment::CalcVRFCondenser_FluidTCtrl(EnergyPlusData &state, c
this->ElecHeatingPower = 0;
}
this->VRFCondRTF = VRFRTF;
this->DefrostPower *= VRFRTF;

// Calculate CrankCaseHeaterPower: VRF Heat Pump Crankcase Heater Electric Power [W]
if (this->MaxOATCCHeater > OutdoorDryBulb) {
Expand Down

4 comments on commit 1828d18

@nrel-bot-2
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixVRFhighCOP (Unknown) - x86_64-Linux-Ubuntu-22.04-gcc-11.4: OK (2913 of 2913 tests passed, 0 test warnings)

Build Badge Test Badge

@nrel-bot-2c
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixVRFhighCOP (Unknown) - x86_64-Linux-Ubuntu-22.04-gcc-11.4-IntegrationCoverage-RelWithDebInfo: OK (799 of 799 tests passed, 0 test warnings)

Build Badge Test Badge Coverage Badge

@nrel-bot-2b
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixVRFhighCOP (Unknown) - x86_64-Linux-Ubuntu-22.04-gcc-11.4-UnitTestsCoverage-RelWithDebInfo: OK (2097 of 2097 tests passed, 0 test warnings)

Build Badge Test Badge Coverage Badge

@nrel-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixVRFhighCOP (Unknown) - Win64-Windows-10-VisualStudio-16: OK (2891 of 2891 tests passed, 0 test warnings)

Build Badge Test Badge

Please sign in to comment.