Skip to content

Commit

Permalink
changed MixedAirHumRat to PurchAir(PurchAirNum).MixedAirHumRat
Browse files Browse the repository at this point in the history
  • Loading branch information
jmythms committed Feb 9, 2021
1 parent 6d6654b commit 660dacb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EnergyPlus/PurchasedAirManager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2239,7 +2239,7 @@ namespace EnergyPlus::PurchasedAirManager {
// Check sensible load vs max total cooling capacity, if specified, and adjust supply temp before applying humidity controls
// Will check again later, too
if ((PurchAir(PurchAirNum).CoolingLimit == LimitType::LimitCapacity) || (PurchAir(PurchAirNum).CoolingLimit == LimitType::LimitFlowRateAndCapacity)) {
CpAir = PsyCpAirFnW(MixedAirHumRat);
CpAir = PsyCpAirFnW(PurchAir(PurchAirNum).MixedAirHumRat);
CoolSensOutput = SupplyMassFlowRate * (MixedAirEnthalpy - SupplyEnthalpy);
if (CoolSensOutput >= PurchAir(PurchAirNum).MaxCoolTotCap) {
CoolSensOutput = PurchAir(PurchAirNum).MaxCoolTotCap;
Expand Down

4 comments on commit 660dacb

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

Add-New-Zone-Ideal-Loads-Output-Variables (jmythms) - x86_64-MacOS-10.15-clang-11.0.0: OK (2995 of 2996 tests passed, 73 test warnings)

Messages:\n

  • 74 tests had: AUD diffs.
  • 71 tests had: RDD diffs.
  • 1 test had: MTD diffs.
  • 1 test had: Table big diffs.

Failures:\n

regression Test Summary

  • Passed: 716
  • Failed: 1

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.

Add-New-Zone-Ideal-Loads-Output-Variables (jmythms) - x86_64-Linux-Ubuntu-18.04-gcc-7.5: OK (3035 of 3036 tests passed, 75 test warnings)

Messages:\n

  • 76 tests had: AUD diffs.
  • 73 tests had: RDD diffs.
  • 1 test had: MTD diffs.
  • 1 test had: Table big diffs.

Failures:\n

regression Test Summary

  • Passed: 736
  • Failed: 1

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.

Add-New-Zone-Ideal-Loads-Output-Variables (jmythms) - x86_64-Linux-Ubuntu-18.04-gcc-7.5-UnitTestsCoverage-Debug: OK (1560 of 1560 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.

Add-New-Zone-Ideal-Loads-Output-Variables (jmythms) - x86_64-Linux-Ubuntu-18.04-gcc-7.5-IntegrationCoverage-Debug: OK (722 of 722 tests passed, 0 test warnings)

Build Badge Test Badge Coverage Badge

Please sign in to comment.