Skip to content

Commit

Permalink
Space HVAC - Fix supply nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
mjwitte committed Sep 20, 2023
1 parent fd0a91f commit 96076f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EnergyPlus/DataSurfaces.cc
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ Real64 SurfaceData::getInsideAirTemperature(EnergyPlusData &state, const int t_S
auto &inletNodes = (state.dataHeatBal->doSpaceHeatBalance) ? state.dataZoneEquip->spaceEquipConfig(this->spaceNum).InletNode
: state.dataZoneEquip->ZoneEquipConfig(Zone).InletNode;
for (int nodeNum : inletNodes) {
auto &inNode = state.dataLoopNodes->Node(state.dataZoneEquip->ZoneEquipConfig(Zone).InletNode(nodeNum));
auto &inNode = state.dataLoopNodes->Node(nodeNum);
Real64 CpAir = PsyCpAirFnW(thisSpaceHB.airHumRat);
SumSysMCp += inNode.MassFlowRate * CpAir;
SumSysMCpT += inNode.MassFlowRate * CpAir * inNode.Temp;
Expand Down

5 comments on commit 96076f8

@nrel-bot
Copy link

Choose a reason for hiding this comment

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

SpaceSizingHVACPart3 (mjwitte) - 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.

SpaceSizingHVACPart3 (mjwitte) - x86_64-MacOS-10.17-clang-14.0.0: OK (3531 of 3533 tests passed, 6 test warnings)

Messages:\n

  • 3 tests had: EIO diffs.
  • 2 tests had: ESO big diffs.
  • 2 tests had: Table big diffs.
  • 6 tests had: ESO small diffs.
  • 1 test had: MTR small diffs.
  • 1 test had: Table small diffs.
  • 1 test had: ERR diffs.
  • 1 test had: MTR big diffs.
  • 1 test had: SSZ big diffs.
  • 1 test had: ZSZ big diffs.

Failures:\n

regression Test Summary

  • Passed: 783
  • Failed: 2

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

SpaceSizingHVACPart3 (mjwitte) - x86_64-Linux-Ubuntu-22.04-gcc-11.4: OK (3572 of 3574 tests passed, 6 test warnings)

Messages:\n

  • 3 tests had: EIO diffs.
  • 2 tests had: ESO big diffs.
  • 2 tests had: Table big diffs.
  • 6 tests had: ESO small diffs.
  • 1 test had: MTR small diffs.
  • 1 test had: Table small diffs.
  • 1 test had: ERR diffs.
  • 1 test had: MTR big diffs.
  • 1 test had: SSZ big diffs.
  • 1 test had: ZSZ big diffs.

Failures:\n

regression Test Summary

  • Passed: 803
  • Failed: 2

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

SpaceSizingHVACPart3 (mjwitte) - 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-2b
Copy link

Choose a reason for hiding this comment

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

SpaceSizingHVACPart3 (mjwitte) - 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.