Skip to content

Commit

Permalink
Undo accidental copy/paste
Browse files Browse the repository at this point in the history
  • Loading branch information
Myoldmopar committed Sep 20, 2023
1 parent cc607cb commit 608aa28
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/EnergyPlus/PlantLoopHeatPumpEIR.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2261,13 +2261,6 @@ void EIRFuelFiredHeatPump::doPhysics(EnergyPlusData &state, Real64 currentLoad)
CpSrc = Psychrometrics::PsyCpAirFnW(state.dataEnvrn->OutHumRat);
}
this->sourceSideCp = CpSrc;
SetupOutputVariable(state,
"Heat Pump Source Side Specific Heat",
OutputProcessor::Unit::J_kgK,
this->sourceSideCp,
OutputProcessor::SOVTimeStepType::System,
OutputProcessor::SOVStoreType::Average,
this->name);
// Real64 const sourceMCp = this->sourceSideMassFlowRate * CpSrc;
Real64 const sourceMCp = (this->sourceSideMassFlowRate < 1e-6 ? 1.0 : this->sourceSideMassFlowRate) * CpSrc;
this->sourceSideOutletTemp = this->calcSourceOutletTemp(this->sourceSideInletTemp, this->sourceSideHeatTransfer / sourceMCp);
Expand Down

5 comments on commit 608aa28

@nrel-bot
Copy link

Choose a reason for hiding this comment

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

PrepForV232 (Myoldmopar) - Win64-Windows-10-VisualStudio-16: OK (2747 of 2747 tests passed, 0 test warnings)

Build Badge Test Badge

@nrel-bot-3
Copy link

Choose a reason for hiding this comment

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

PrepForV232 (Myoldmopar) - x86_64-MacOS-10.17-clang-14.0.0: OK (3533 of 3533 tests passed, 4 test warnings)

Messages:\n

  • 4 tests had: AUD diffs.
  • 4 tests had: RDD diffs.

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.

PrepForV232 (Myoldmopar) - x86_64-Linux-Ubuntu-22.04-gcc-11.4: OK (3574 of 3574 tests passed, 4 test warnings)

Messages:\n

  • 4 tests had: AUD diffs.
  • 4 tests had: RDD diffs.

Build Badge Test Badge

@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.

PrepForV232 (Myoldmopar) - x86_64-Linux-Ubuntu-22.04-gcc-11.4-UnitTestsCoverage-Debug: OK (1961 of 1961 tests passed, 0 test warnings)

Build Badge Test Badge Coverage 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.

PrepForV232 (Myoldmopar) - x86_64-Linux-Ubuntu-22.04-gcc-11.4-IntegrationCoverage-Debug: OK (789 of 789 tests passed, 0 test warnings)

Build Badge Test Badge Coverage Badge

Please sign in to comment.