Skip to content

Commit

Permalink
PressureCtrl vars -final check
Browse files Browse the repository at this point in the history
  • Loading branch information
jmythms committed Mar 16, 2021
1 parent f9c7b05 commit ba2306a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,8 @@ namespace AirflowNetwork {
SurfAvg = 2
};

extern int const PressureCtrlExhaust;
extern int const PressureCtrlRelief;
int constexpr PressureCtrlExhaust = 1;
int constexpr PressureCtrlRelief = 2;

// DERIVED TYPE DEFINITIONS:

Expand Down Expand Up @@ -1622,9 +1622,7 @@ namespace AirflowNetwork {
struct AirflowNetworkData : BaseGlobalStruct {

int SimulateAirflowNetwork = 1;

Array1D_bool AirflowNetworkZoneFlag;

int NumOfNodesMultiZone = 0; // Number of nodes for multizone calculation
int NumOfNodesDistribution = 0; // Number of nodes for distribution system calculation
int NumOfLinksMultiZone = 0; // Number of links for multizone calculation
Expand All @@ -1646,7 +1644,7 @@ struct AirflowNetworkData : BaseGlobalStruct {
Array1D<Real64> ANZW; // Local zone air humidity ratio for roll back use
Array1D<Real64> ANCO; // Local zone air CO2 for roll back use
Array1D<Real64> ANGC; // Local zone air generic contaminant for roll back use
int AirflowNetworkNumOfExhFan = 0; // Number of zone exhaust fans
int AirflowNetworkNumOfExhFan = 0; // Number of zone exhaust fans
Array1D_bool AirflowNetworkZoneExhaustFan; // Logical to use zone exhaust fans
bool AirflowNetworkFanActivated = false; // Supply fan activation flag
bool AirflowNetworkUnitarySystem = false; // set to TRUE for unitary systems (to make answers equal, will remove eventually)
Expand Down Expand Up @@ -1748,7 +1746,7 @@ struct AirflowNetworkData : BaseGlobalStruct {
this->DeltaCp.clear();
this->EPDeltaCP.clear();
this->MultizoneCompExhaustFanData.clear();
this->IntraZoneNodeData.clear(); // Intra zone data set
this->IntraZoneNodeData.clear(); // Intra zone data set
this->IntraZoneLinkageData.clear(); // Intra zone linkage adat set
this->DisSysNodeData.clear();
this->DisSysCompLeakData.clear();
Expand Down
2 changes: 0 additions & 2 deletions src/EnergyPlus/AirflowNetwork/src/Elements.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,6 @@ namespace AirflowNetwork {
// all variables in this module must be PUBLIC.

// MODULE PARAMETER DEFINITIONS:
int const PressureCtrlExhaust(1);
int const PressureCtrlRelief(2);

// DERIVED TYPE DEFINITIONS:

Expand Down

4 comments on commit ba2306a

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

Global-Elements (jmythms) - x86_64-MacOS-10.15-clang-11.0.0: OK (3061 of 3061 tests passed, 3 test warnings)

Messages:\n

  • 3 tests had: EIO diffs.
  • 2 tests had: ESO small diffs.
  • 2 tests had: Table small diffs.

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.

Global-Elements (jmythms) - x86_64-Linux-Ubuntu-18.04-gcc-7.5: OK (3101 of 3101 tests passed, 3 test warnings)

Messages:\n

  • 3 tests had: EIO diffs.
  • 2 tests had: ESO small diffs.
  • 2 tests had: Table small diffs.

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.

Global-Elements (jmythms) - x86_64-Linux-Ubuntu-18.04-gcc-7.5-UnitTestsCoverage-Debug: OK (1615 of 1615 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.

Global-Elements (jmythms) - x86_64-Linux-Ubuntu-18.04-gcc-7.5-IntegrationCoverage-Debug: OK (726 of 727 tests passed, 0 test warnings)

Failures:\n

integration Test Summary

  • Passed: 726
  • Timeout: 1

Build Badge Test Badge Coverage Badge

Please sign in to comment.