Skip to content

Commit

Permalink
Modified the initial fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Nigusse committed Aug 1, 2024
1 parent cf5ba5b commit 94937f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EnergyPlus/PlantLoopHeatPumpEIR.cc
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ void EIRPlantLoopHeatPump::calcAvailableCapacity(EnergyPlusData &state, Real64 c
this->setPartLoadAndCyclingRatio(state, partLoadRatio);
this->calcLoadSideHeatTransfer(state, availableCapacity);
this->calcPowerUsage(state);
Real64 sourceSideHeatTransfer = this->loadSideHeatTransfer + this->powerUsage;
Real64 sourceSideHeatTransfer = this->calcQsource(this->loadSideHeatTransfer, this->powerUsage);
// check to see if souce side outlet temp exceeds limit and reduce PLR if necessary
auto &thisSourcePlantLoop = state.dataPlnt->PlantLoop(this->sourceSidePlantLoc.loopNum);
Real64 const CpSrc = FluidProperties::GetSpecificHeatGlycol(state,
Expand Down

0 comments on commit 94937f0

Please sign in to comment.