Skip to content

Commit

Permalink
Fix state issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Myoldmopar committed Nov 21, 2020
1 parent f998e9a commit 857e3c0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/EnergyPlus/Data/EnergyPlusData.cc
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ namespace EnergyPlus {
this->dataBoilerSteam = std::make_unique<BoilerSteamData>();
this->dataBranchAirLoopPlant = std::make_unique<DataBranchAirLoopPlantData>();
this->dataBranchInputManager = std::make_unique<BranchInputManagerData>();
this->dataBranchNodeConnections = std::unique_ptr<BranchNodeConnectionsData>(new BranchNodeConnectionsData);
this->dataBranchNodeConnections = std::make_unique<BranchNodeConnectionsData>();
this->dataChilledCeilingPanelSimple = std::make_unique<ChilledCeilingPanelSimpleData>();
this->dataChillerAbsorber = std::make_unique<ChillerAbsorberData>();
this->dataChillerElectricEIR = std::make_unique<ChillerElectricEIRData>();
Expand Down Expand Up @@ -163,6 +163,7 @@ namespace EnergyPlus {
this->dataCrossVentMgr->clear_state();
this->dataCTElectricGenerator->clear_state();
this->dataCurveManager->clear_state();
this->dataEIRPlantLoopHeatPump->clear_state();
this->dataExteriorEnergyUse->clear_state();
this->dataFans->clear_state();
this->dataGlobal->clear_state();
Expand All @@ -172,7 +173,9 @@ namespace EnergyPlus {
this->dataSetPointManager->clear_state();
this->dataSimulationManager->clear_state();
this->dataSingleDuct->clear_state();
this->dataSizingManager->clear_state();
this->dataSolarCollectors->clear_state();
this->dataSolarReflectionManager->clear_state();
this->dataSolarShading->clear_state();
this->dataSplitterComponent->clear_state();
this->dataSteamBaseboardRadiator->clear_state();
Expand Down

5 comments on commit 857e3c0

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

global_SimManager_SimAir (Myoldmopar) - x86_64-Linux-Ubuntu-18.04-gcc-7.5: OK (3034 of 3034 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.

global_SimManager_SimAir (Myoldmopar) - x86_64-MacOS-10.15-clang-11.0.0: OK (2994 of 2994 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.

global_SimManager_SimAir (Myoldmopar) - x86_64-Linux-Ubuntu-18.04-gcc-7.5-UnitTestsCoverage-Debug: OK (1558 of 1558 tests passed, 0 test warnings)

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

global_SimManager_SimAir (Myoldmopar) - Win64-Windows-10-VisualStudio-16: OK (2250 of 2250 tests passed, 0 test warnings)

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_SimManager_SimAir (Myoldmopar) - 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.