Skip to content

Commit

Permalink
Fixing output variables
Browse files Browse the repository at this point in the history
  • Loading branch information
jmythms committed Nov 5, 2020
1 parent 18e8fb9 commit 279aa5c
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/EnergyPlus/PurchasedAirManager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1057,29 +1057,33 @@ namespace PurchasedAirManager {
PurchAir(PurchAirNum).Name);

// Supply Air temperature
SetupOutputVariable("Zone Ideal Loads Supply Air Temperature",
SetupOutputVariable(state,
"Zone Ideal Loads Supply Air Temperature",
OutputProcessor::Unit::C,
PurchAir(PurchAirNum).SupplyTemp,
"System",
"Average",
PurchAir(PurchAirNum).Name);
// Supply Air Humidity Ratio
SetupOutputVariable("Zone Ideal Loads Supply Air Humidity Ratio",
SetupOutputVariable(state,
"Zone Ideal Loads Supply Air Humidity Ratio",
OutputProcessor::Unit::kgWater_kgDryAir,
PurchAir(PurchAirNum).SupplyHumRat,
"System",
"Average",
PurchAir(PurchAirNum).Name);

// Mixed Air temperature
SetupOutputVariable("Zone Ideal Loads Mixed Air Temperature",
SetupOutputVariable(state,
"Zone Ideal Loads Mixed Air Temperature",
OutputProcessor::Unit::C,
PurchAir(PurchAirNum).MixedAirTemp,
"System",
"Average",
PurchAir(PurchAirNum).Name);
// Mixed Air Humidity Ratio
SetupOutputVariable("Zone Ideal Loads Mixed Air Humidity Ratio",
SetupOutputVariable(state,
"Zone Ideal Loads Mixed Air Humidity Ratio",
OutputProcessor::Unit::kgWater_kgDryAir,
PurchAir(PurchAirNum).MixedAirHumRat,
"System",
Expand Down

6 comments on commit 279aa5c

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

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

Messages:\n

  • 76 tests had: AUD diffs.
  • 73 tests had: RDD diffs.
  • 1 test had: EIO diffs.
  • 1 test had: ESO small diffs.
  • 1 test had: MTR small diffs.
  • 2 tests had: Table big diffs.
  • 1 test had: MTD diffs.

Failures:\n

regression Test Summary

  • Passed: 735
  • 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.

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

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

Add-New-Zone-Ideal-Loads-Output-Variables (jmythms) - x86_64-MacOS-10.15-clang-11.0.0: OK (2987 of 2989 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

EnergyPlusFixture Test Summary

  • Passed: 1087
  • Failed: 1

regression Test Summary

  • Passed: 716
  • Failed: 1

Build Badge Test Badge

@nrel-bot
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) - Win64-Windows-10-VisualStudio-16: OK (2245 of 2245 tests passed, 0 test warnings)

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-IntegrationCoverage-Debug: OK (721 of 722 tests passed, 0 test warnings)

Failures:\n

integration Test Summary

  • Passed: 721
  • Timeout: 1

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

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

Messages:\n

  • 75 tests had: AUD diffs.
  • 71 tests had: RDD diffs.
  • 1 test had: BND diffs.
  • 2 tests had: ERR diffs.
  • 1 test had: MTD diffs.
  • 1 test had: Table big diffs.

Failures:\n

EnergyPlusFixture Test Summary

  • Passed: 1087
  • Failed: 1

regression Test Summary

  • Passed: 716
  • Failed: 1

Build Badge Test Badge

Please sign in to comment.