Skip to content

Commit

Permalink
More inits - part 5
Browse files Browse the repository at this point in the history
  • Loading branch information
mjwitte committed Nov 14, 2023
1 parent 68332c2 commit 3421777
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/EnergyPlus/ElectricPowerServiceManager.hh
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,7 @@ public: // Creation
electProdRate_(0.0), electricityPurch_(0.0), electPurchRate_(0.0), electSurplusRate_(0.0), electricitySurplus_(0.0),
electricityNetRate_(0.0), electricityNet_(0.0), totalBldgElecDemand_(0.0), totalHVACElecDemand_(0.0), totalElectricDemand_(0.0),
elecProducedPVRate_(0.0), elecProducedWTRate_(0.0), elecProducedStorageRate_(0.0), elecProducedPowerConversionRate_(0.0),
elecProducedCoGenRate_(0.0)
elecProducedCoGenRate_(0.0), pvTotalCapacity_(0.0), windTotalCapacity_(0.0)
{
}

Expand Down
2 changes: 1 addition & 1 deletion src/EnergyPlus/FuelCellElectricGenerator.hh
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ namespace FuelCellElectricGenerator {
int EffCurveID; // pointer to curve for efficiency
Real64 NomEff; // nominal efficiency
Real64 NomPel; // nominal power rate at rating point
int NumCyclesAtStart; // number of start stop cycles at beggining of simulation (user input)
int NumCyclesAtStart = 0.0; // number of start stop cycles at beggining of simulation (user input)
int NumCycles; // number of start stop cycles
Real64 CyclingDegradRat; // rate of degradation from cycles
Real64 NumRunHours; // number of hours of operation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,14 @@ struct EnergyPlusData;
class XingGroundTempsModel : public BaseGroundTempsModel
{
public:
Real64 depth=0.0;
Real64 groundThermalDiffisivity=0.0;
Real64 simTimeInDays=0.0;
Real64 aveGroundTemp=0.0;
Real64 surfTempAmplitude_1=0.0;
Real64 phaseShift_1=0.0;
Real64 surfTempAmplitude_2=0.0;
Real64 phaseShift_2=0.0;
Real64 depth = 0.0;
Real64 groundThermalDiffisivity = 0.0;
Real64 simTimeInDays = 0.0;
Real64 aveGroundTemp = 0.0;
Real64 surfTempAmplitude_1 = 0.0;
Real64 phaseShift_1 = 0.0;
Real64 surfTempAmplitude_2 = 0.0;
Real64 phaseShift_2 = 0.0;

static std::shared_ptr<XingGroundTempsModel> XingGTMFactory(EnergyPlusData &state, std::string objectName);

Expand Down
2 changes: 1 addition & 1 deletion src/EnergyPlus/MicroturbineElectricGenerator.hh
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ namespace MicroturbineElectricGenerator {
Real64 ThermalEfficiencyLHV; // Reporting: Thermal (heat recovery to water) efficiency LHV (-)
Real64 AncillaryEnergy; // Reporting: Ancillary energy use (J)
Real64 StandbyEnergy; // Reporting: Standby energy use (J)
Constant::eFuel FuelType;
Constant::eFuel FuelType = Constant::eFuel::None;
bool myFlag;

// Default Constructor
Expand Down

5 comments on commit 3421777

@nrel-bot
Copy link

Choose a reason for hiding this comment

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

HeatEmissionsDiffs10300 (mjwitte) - Win64-Windows-10-VisualStudio-16: Build Failed

Failures:\n

API Test Summary

  • Failed: 10
  • notrun: 5

ConvertInputFormat Test Summary

  • Failed: 4
  • notrun: 1

integration Test Summary

  • Passed: 2
  • Failed: 787

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.

HeatEmissionsDiffs10300 (mjwitte) - x86_64-MacOS-10.17-clang-14.0.0: OK (3540 of 3540 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.

HeatEmissionsDiffs10300 (mjwitte) - x86_64-Linux-Ubuntu-22.04-gcc-11.4: OK (3581 of 3581 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.

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

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

Build Badge Test Badge Coverage Badge

Please sign in to comment.