Skip to content

Commit

Permalink
For CT:VariablSpeed, don't forget to calculate DesOutletWaterTemp & D…
Browse files Browse the repository at this point in the history
…esInletWaterTemp

All other CT types do it properly already
  • Loading branch information
jmarrec committed Jan 20, 2025
1 parent 829bf91 commit 6265d96
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/EnergyPlus/CondenserLoopTowers.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1344,6 +1344,10 @@ namespace CondenserLoopTowers {
ErrorsFound = true;
}

// set tower design water outlet and inlet temperatures
tower.DesOutletWaterTemp = tower.DesignInletWB + tower.DesignApproach;
tower.DesInletWaterTemp = tower.DesOutletWaterTemp + tower.DesignRange;

tower.DesignWaterFlowRate = NumArray(4);
if (tower.DesignWaterFlowRate == DataSizing::AutoSize) {
tower.DesignWaterFlowRateWasAutoSized = true;
Expand Down

3 comments on commit 6265d96

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

10889_CoolingTower_ReportWBT (jmarrec) - x86_64-Linux-Ubuntu-24.04-gcc-13.3: OK (2921 of 2921 tests passed, 0 test warnings)

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.

10889_CoolingTower_ReportWBT (jmarrec) - x86_64-Linux-Ubuntu-24.04-gcc-13.3-UnitTestsCoverage-RelWithDebInfo: OK (2103 of 2103 tests passed, 0 test warnings)

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

10889_CoolingTower_ReportWBT (jmarrec) - x86_64-Linux-Ubuntu-24.04-gcc-13.3-IntegrationCoverage-RelWithDebInfo: OK (801 of 801 tests passed, 0 test warnings)

Build Badge Test Badge Coverage Badge

Please sign in to comment.