Skip to content

Commit

Permalink
EcoRoofManager & InternalHeatGain & RoomAirModelManager: set initial …
Browse files Browse the repository at this point in the history
…value
  • Loading branch information
dareumnam committed Mar 3, 2021
1 parent ca970ab commit d484148
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/EnergyPlus/EcoRoofManager.hh
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ struct EcoRoofManagerData : BaseGlobalStruct {

Real64 Tfold; // leaf temperature from the previous time step
Real64 Tgold; // ground temperature from the previous time step
bool EcoRoofbeginFlag;
bool EcoRoofbeginFlag = true;
bool CalcEcoRoofMyEnvrnFlag = true;

void clear_state() override
Expand Down
4 changes: 2 additions & 2 deletions src/EnergyPlus/InternalHeatGains.hh
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,8 @@ namespace InternalHeatGains {

struct InternalHeatGainsData : BaseGlobalStruct {

bool GetInternalHeatGainsInputFlag; // Controls the GET routine calling (limited to first time)
bool ErrorsFound; // if errors were found in the input
bool GetInternalHeatGainsInputFlag = true; // Controls the GET routine calling (limited to first time)
bool ErrorsFound = false; // if errors were found in the input

void clear_state() override {

Expand Down
4 changes: 2 additions & 2 deletions src/EnergyPlus/RoomAirModelManager.hh
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ namespace RoomAirModelManager {

struct RoomAirModelManagerData : BaseGlobalStruct {

bool GetUCSDDVDataFlag; // UCSD
bool GetAirModelData; // Used to "get" all air model data
bool GetUCSDDVDataFlag = true; // UCSD
bool GetAirModelData = true; // Used to "get" all air model data
bool MyOneTimeFlag = true;

void clear_state() override
Expand Down

5 comments on commit d484148

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

GlobalEcoRoof (dareumnam) - x86_64-MacOS-10.15-clang-11.0.0: OK (3059 of 3059 tests passed, 0 test warnings)

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.

GlobalEcoRoof (dareumnam) - Win64-Windows-10-VisualStudio-16: OK (2308 of 2308 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.

GlobalEcoRoof (dareumnam) - x86_64-Linux-Ubuntu-18.04-gcc-7.5: OK (3099 of 3099 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.

GlobalEcoRoof (dareumnam) - x86_64-Linux-Ubuntu-18.04-gcc-7.5-UnitTestsCoverage-Debug: OK (1613 of 1613 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.

GlobalEcoRoof (dareumnam) - 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.