Skip to content

Commit

Permalink
More streamline CalcMoreNodeInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
mjwitte committed May 24, 2024
1 parent 390be5b commit 47ac393
Show file tree
Hide file tree
Showing 3 changed files with 90 additions and 146 deletions.
9 changes: 9 additions & 0 deletions src/EnergyPlus/DataLoopNode.hh
Original file line number Diff line number Diff line change
Expand Up @@ -570,6 +570,15 @@ namespace DataLoopNode {
Real64 Density = 0.0; // reported density at current temperature [kg/m3]
Real64 AirDewPointTemp = 0.0; // reported system node dewpoint temperature [C]
Real64 SpecificHeat = 0.0; // reported node specific heat [J/kg-C]
bool wetBulbRepReq = false; // Output variable or EMS sensor requested for this node for wetbulb temp
int wetBulbSchedPtr = 0; // Output variable schedule pointer for this node for wetbulb temp
bool relHumidityRepReq = false; // Output variable or EMS sensor requested for this node for RH
int relHumiditySchedPtr = 0; // Output variable schedule pointer for this node for RH
bool dewPointRepReq = false; // Output variable or EMS sensor requested for this node for dewpoint temp
int dewPointSchedPtr = 0; // Output variable schedule pointer for this node for dewpoint temp
bool specificHeatRepReq = false; // Output variable or EMS sensor requested for this node for specific heat
int specificHeatSchedPtr = 0; // Output variable schedule pointer for this node for specific heat
std::string reportingString;
};

struct MarkedNodeData
Expand Down
Loading

5 comments on commit 47ac393

@nrel-bot
Copy link

Choose a reason for hiding this comment

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

calcMoreNodeInfo (mjwitte) - Win64-Windows-10-VisualStudio-16: OK (2775 of 2775 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.

calcMoreNodeInfo (mjwitte) - x86_64-MacOS-10.18-clang-15.0.0: OK (3563 of 3563 tests passed, 5 test warnings)

Messages:\n

  • 5 tests had: ERR 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.

calcMoreNodeInfo (mjwitte) - x86_64-Linux-Ubuntu-22.04-gcc-11.4: OK (3604 of 3604 tests passed, 5 test warnings)

Messages:\n

  • 5 tests had: ERR 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.

calcMoreNodeInfo (mjwitte) - x86_64-Linux-Ubuntu-22.04-gcc-11.4-UnitTestsCoverage-Debug: OK (1987 of 1987 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.

calcMoreNodeInfo (mjwitte) - x86_64-Linux-Ubuntu-22.04-gcc-11.4-IntegrationCoverage-Debug: OK (791 of 791 tests passed, 0 test warnings)

Build Badge Test Badge Coverage Badge

Please sign in to comment.