Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into fixIncSolarMultiplier
Browse files Browse the repository at this point in the history
  • Loading branch information
yujiex committed Sep 15, 2023
2 parents e49cb73 + 8134ee0 commit f939ed9
Show file tree
Hide file tree
Showing 103 changed files with 3,214 additions and 2,093 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3385,7 +3385,7 @@ \subsubsection{Inputs}

\paragraph{Field: G-Function Reference Ratio}\label{field-g-function-reference-ratio}

The G-Functions may be formulated slightly differently based on the program which generated them. The original g-functions as defined by Eskilson are based on an borehole radius to active length ratio of 0.0005. If the physical ratio is different from this, a correction must be applied. EnergyPlus will apply the correction, based on the reference ratio entered in this field. Therefore, therefore two possible input configurations.
The G-Functions may be formulated slightly differently based on the program which generated them. The original g-functions as defined by Eskilson are based on an borehole radius to active length ratio of 0.0005. If the physical ratio is different from this, a correction must be applied. EnergyPlus will apply the correction, based on the reference ratio entered in this field. Therefore, there are two possible input configurations.

\begin{itemize}
\item
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ \subsubsection{Outputs}\label{outputs-040}
\item
HVAC,Average,Water Heater Total Demand Heat Transfer Rate {[}W{]}
\item
HVAC,Sum,Water Heater Total Demand Energy {[}J{]}
HVAC,Sum,Water Heater Total Demand Heat Transfer Energy {[}J{]}
\item
HVAC,Average,Water Heater Heating Rate {[}W{]}
\item
Expand Down Expand Up @@ -562,7 +562,7 @@ \subsubsection{Outputs}\label{outputs-040}

The average heating rate demanded to maintain the setpoint temperature.

\paragraph{Water Heater Total Demand Energy {[}J{]}}\label{water-heater-total-demand-energy-j}
\paragraph{Water Heater Total Demand Heat Transfer Energy {[}J{]}}\label{water-heater-total-demand-heat-transfer-energy-j}

The heating energy demanded to maintain the setpoint temperature.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1406,15 +1406,15 @@ \subsubsection{Predefined Monthly Summary Reports}\label{predefined-monthly-summ
\begin{itemize}
\item
Water Heater Total Demand Energy (SumOrAverage)
Water Heater Total Demand Heat Transfer Energy (SumOrAverage)
\item
Water Heater Use Side Heat Transfer Energy (SumOrAverage)
\item
Water Heater Burner Heating Energy (SumOrAverage)
\item
Water Heater Gas Consumption (SumOrAverage)
\item
Water Heater Total Demand Energy (HoursNonZero)
Water Heater Total Demand Heat Transfer Energy (HoursNonZero)
\item
Water Heater Loss Demand Energy (SumOrAverage)
\item
Expand Down
2 changes: 1 addition & 1 deletion src/ConvertInputFormat/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ static constexpr std::array<std::string_view, static_cast<int>(OutputTypes::Num)

static constexpr auto outputTypeExperimentalStart = OutputTypes::CBOR;

template <typename... Args> void displayMessage(std::string_view str_format, Args &&...args)
template <typename... Args> void displayMessage(std::string_view str_format, Args &&... args)
{
fmt::print(std::cout, str_format, args...);
std::cout.write("\n", 1);
Expand Down
146 changes: 73 additions & 73 deletions src/EnergyPlus/AirflowNetwork/src/Solver.cpp

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions src/EnergyPlus/ChilledCeilingPanelSimple.cc
Original file line number Diff line number Diff line change
Expand Up @@ -871,7 +871,7 @@ void InitCoolingPanel(EnergyPlusData &state, int const CoolingPanelNum, int cons
ThisInNode.Press = 0.0;
ThisInNode.HumRat = 0.0;

thisCP.ZeroSourceSumHATsurf = 0.0;
thisCP.ZeroCPSourceSumHATsurf = 0.0;
thisCP.CoolingPanelSource = 0.0;
thisCP.CoolingPanelSrcAvg = 0.0;
thisCP.LastCoolingPanelSrc = 0.0;
Expand All @@ -887,7 +887,7 @@ void InitCoolingPanel(EnergyPlusData &state, int const CoolingPanelNum, int cons

if (state.dataGlobal->BeginTimeStepFlag && FirstHVACIteration) {
int ZoneNum = thisCP.ZonePtr;
state.dataHeatBal->Zone(ZoneNum).ZeroSourceSumHATsurf = state.dataHeatBal->Zone(ZoneNum).sumHATsurf(state);
thisCP.ZeroCPSourceSumHATsurf = state.dataHeatBal->Zone(ZoneNum).sumHATsurf(state);
thisCP.CoolingPanelSrcAvg = 0.0;
thisCP.LastCoolingPanelSrc = 0.0;
thisCP.LastSysTimeElapsed = 0.0;
Expand Down Expand Up @@ -1238,8 +1238,8 @@ void CoolingPanelParams::CalcCoolingPanel(EnergyPlusData &state, int const Cooli
// iterate like in the low temperature radiant systems because the inlet water condition is known
// not calculated. So, we can deal with this upfront rather than after calculation and then more
// iteration.
Real64 DewPointTemp = Psychrometrics::PsyTdpFnWPb(
state, state.dataZoneTempPredictorCorrector->zoneHeatBalance(ZoneNum).ZoneAirHumRat, state.dataEnvrn->OutBaroPress);
Real64 DewPointTemp =
Psychrometrics::PsyTdpFnWPb(state, state.dataZoneTempPredictorCorrector->zoneHeatBalance(ZoneNum).airHumRat, state.dataEnvrn->OutBaroPress);

if (waterInletTemp < (DewPointTemp + this->CondDewPtDeltaT) && (CoolingPanelOn)) {

Expand Down Expand Up @@ -1412,8 +1412,8 @@ void CoolingPanelParams::CalcCoolingPanel(EnergyPlusData &state, int const Cooli
// that all energy radiated to people is converted to convective energy is
// not very precise, but at least it conserves energy. The system impact to heat balance
// should include this.
LoadMet = (state.dataHeatBal->Zone(ZoneNum).sumHATsurf(state) - state.dataHeatBal->Zone(ZoneNum).ZeroSourceSumHATsurf) +
(CoolingPanelCool * this->FracConvect) + (RadHeat * this->FracDistribPerson);
LoadMet = (state.dataHeatBal->Zone(ZoneNum).sumHATsurf(state) - this->ZeroCPSourceSumHATsurf) + (CoolingPanelCool * this->FracConvect) +
(RadHeat * this->FracDistribPerson);
}
this->WaterOutletEnthalpy = this->WaterInletEnthalpy - CoolingPanelCool / waterMassFlowRate;

Expand Down
2 changes: 1 addition & 1 deletion src/EnergyPlus/ChilledCeilingPanelSimple.hh
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ namespace CoolingPanelSimple {
int CoolingPanelMassFlowReSimIndex = 0;
int CoolingPanelInletTempFlowReSimIndex = 0;
bool MyEnvrnFlag = true;
Real64 ZeroSourceSumHATsurf = 0.0;
Real64 ZeroCPSourceSumHATsurf = 0.0;
Real64 CoolingPanelSource = 0.0;
Real64 CoolingPanelSrcAvg = 0.0;
Real64 LastCoolingPanelSrc = 0.0;
Expand Down
14 changes: 7 additions & 7 deletions src/EnergyPlus/ConvectionCoefficients.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2166,7 +2166,7 @@ void CalcCeilingDiffuserIntConvCoeff(EnergyPlusData &state,

Real64 ACH = CalcCeilingDiffuserACH(state, ZoneNum);

Real64 AirHumRat = state.dataZoneTempPredictorCorrector->zoneHeatBalance(ZoneNum).ZoneAirHumRatAvg;
Real64 AirHumRat = state.dataZoneTempPredictorCorrector->zoneHeatBalance(ZoneNum).airHumRatAvg;

for (int spaceNum : state.dataHeatBal->Zone(ZoneNum).spaceIndexes) {
auto const &thisSpace = state.dataHeatBal->space(spaceNum);
Expand Down Expand Up @@ -2726,7 +2726,7 @@ void CalcISO15099WindowIntConvCoeff(EnergyPlusData &state,

// Get humidity ratio
Real64 AirHumRat =
(surface.Zone > 0) ? state.dataZoneTempPredictorCorrector->zoneHeatBalance(surface.Zone).ZoneAirHumRatAvg : state.dataEnvrn->OutHumRat;
(surface.Zone > 0) ? state.dataZoneTempPredictorCorrector->zoneHeatBalance(surface.Zone).airHumRatAvg : state.dataEnvrn->OutHumRat;

Real64 Height = surface.Height;
Real64 TiltDeg = surface.Tilt;
Expand Down Expand Up @@ -3197,7 +3197,7 @@ Real64 EvaluateIntHcModels(EnergyPlusData &state, int const SurfNum, HcInt const

case HcInt::FisherPedersenCeilDiffuserFloor: {
Real64 AirChangeRate = CalcCeilingDiffuserACH(state, ZoneNum);
Real64 AirHumRat = state.dataZoneTempPredictorCorrector->zoneHeatBalance(ZoneNum).ZoneAirHumRatAvg;
Real64 AirHumRat = state.dataZoneTempPredictorCorrector->zoneHeatBalance(ZoneNum).airHumRatAvg;
if (thisSurface.ExtBoundCond == DataSurfaces::KivaFoundation) {

HnFn = [=, &state](double Tsurf, double Tamb, double, double, double cosTilt) -> double {
Expand All @@ -3218,7 +3218,7 @@ Real64 EvaluateIntHcModels(EnergyPlusData &state, int const SurfNum, HcInt const

case HcInt::FisherPedersenCeilDiffuserCeiling: {
Real64 AirChangeRate = CalcCeilingDiffuserACH(state, ZoneNum);
Real64 AirHumRat = state.dataZoneTempPredictorCorrector->zoneHeatBalance(ZoneNum).ZoneAirHumRatAvg;
Real64 AirHumRat = state.dataZoneTempPredictorCorrector->zoneHeatBalance(ZoneNum).airHumRatAvg;
if (thisSurface.ExtBoundCond == DataSurfaces::KivaFoundation) {

HnFn = [=, &state](double Tsurf, double Tamb, double, double, double cosTilt) -> double {
Expand All @@ -3239,7 +3239,7 @@ Real64 EvaluateIntHcModels(EnergyPlusData &state, int const SurfNum, HcInt const

case HcInt::FisherPedersenCeilDiffuserWalls: {
Real64 AirChangeRate = CalcCeilingDiffuserACH(state, ZoneNum);
Real64 AirHumRat = state.dataZoneTempPredictorCorrector->zoneHeatBalance(ZoneNum).ZoneAirHumRatAvg;
Real64 AirHumRat = state.dataZoneTempPredictorCorrector->zoneHeatBalance(ZoneNum).airHumRatAvg;
if (thisSurface.ExtBoundCond == DataSurfaces::KivaFoundation) {

HnFn = [=, &state](double Tsurf, double Tamb, double, double, double cosTilt) -> double {
Expand Down Expand Up @@ -4140,15 +4140,15 @@ void DynamicIntConvSurfaceClassification(EnergyPlusData &state, int const SurfNu

// now select which equipment type is dominant compared to all those that are ON
if (EquipOnCount > 0) {
if (state.dataZoneEnergyDemand->ZoneSysEnergyDemand(zoneNum).ZoneSNLoadPredictedRate >= 0.0) { // heating load
if (state.dataZoneEnergyDemand->ZoneSysEnergyDemand(zoneNum).predictedRate >= 0.0) { // heating load
PriorityEquipOn = 1;
for (int EquipOnLoop = 1; EquipOnLoop <= EquipOnCount; ++EquipOnLoop) {
// assume highest priority/first sim order is dominant for flow regime
if (HeatingPriorityStack[EquipOnLoop] < HeatingPriorityStack[PriorityEquipOn]) {
PriorityEquipOn = EquipOnLoop;
}
}
} else if (state.dataZoneEnergyDemand->ZoneSysEnergyDemand(zoneNum).ZoneSNLoadPredictedRate < 0.0) { // cooling load
} else if (state.dataZoneEnergyDemand->ZoneSysEnergyDemand(zoneNum).predictedRate < 0.0) { // cooling load
PriorityEquipOn = 1;
for (int EquipOnLoop = 1; EquipOnLoop <= EquipOnCount; ++EquipOnLoop) {
// assume highest priority/first sim order is dominant for flow regime
Expand Down
2 changes: 1 addition & 1 deletion src/EnergyPlus/CoolTower.cc
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@ namespace CoolTower {
thisZoneHB.CTMFL = thisZoneHB.MCPC / AirSpecHeat;

state.dataCoolTower->CoolTowerSys(CoolTowerNum).SenHeatPower = thisZoneHB.MCPC * std::abs(thisZoneHB.ZT - OutletTemp);
state.dataCoolTower->CoolTowerSys(CoolTowerNum).LatHeatPower = CVF_ZoneNum * std::abs(thisZoneHB.ZoneAirHumRat - OutletHumRat);
state.dataCoolTower->CoolTowerSys(CoolTowerNum).LatHeatPower = CVF_ZoneNum * std::abs(thisZoneHB.airHumRat - OutletHumRat);
state.dataCoolTower->CoolTowerSys(CoolTowerNum).OutletTemp = OutletTemp;
state.dataCoolTower->CoolTowerSys(CoolTowerNum).OutletHumRat = OutletHumRat;
state.dataCoolTower->CoolTowerSys(CoolTowerNum).AirVolFlowRate = CVF_ZoneNum;
Expand Down
32 changes: 15 additions & 17 deletions src/EnergyPlus/DXCoils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -7307,7 +7307,7 @@ void InitDXCoil(EnergyPlusData &state, int const DXCoilNum) // number of the cur
if (thisDXCoil.IsSecondaryDXCoilInZone) {
thisDXCoil.EvapInletWetBulb = PsyTwbFnTdbWPb(state,
state.dataZoneTempPredictorCorrector->zoneHeatBalance(thisDXCoil.SecZonePtr).ZT,
state.dataZoneTempPredictorCorrector->zoneHeatBalance(thisDXCoil.SecZonePtr).ZoneAirHumRat,
state.dataZoneTempPredictorCorrector->zoneHeatBalance(thisDXCoil.SecZonePtr).airHumRat,
state.dataEnvrn->OutBaroPress,
RoutineName);
}
Expand Down Expand Up @@ -9367,7 +9367,7 @@ void CalcDoe2DXCoil(EnergyPlusData &state,
if (thisDXCoil.IsSecondaryDXCoilInZone) {
auto &secZoneHB = state.dataZoneTempPredictorCorrector->zoneHeatBalance(thisDXCoil.SecZonePtr);
OutdoorDryBulb = secZoneHB.ZT;
OutdoorHumRat = secZoneHB.ZoneAirHumRat;
OutdoorHumRat = secZoneHB.airHumRat;
OutdoorWetBulb = thisDXCoil.EvapInletWetBulb;
OutdoorPressure = state.dataEnvrn->OutBaroPress;
}
Expand All @@ -9390,7 +9390,7 @@ void CalcDoe2DXCoil(EnergyPlusData &state,
CondInletTemp = secZoneHB.ZT;
CompAmbTemp = CondInletTemp; // assumes compressor is in same location as secondary coil
OutdoorDryBulb = CondInletTemp;
OutdoorHumRat = secZoneHB.ZoneAirHumRat;
OutdoorHumRat = secZoneHB.airHumRat;
OutdoorWetBulb = thisDXCoil.EvapInletWetBulb;
OutdoorPressure = state.dataEnvrn->OutBaroPress;
}
Expand Down Expand Up @@ -11015,7 +11015,7 @@ void CalcDXHeatingCoil(EnergyPlusData &state,
if (thisDXCoil.IsSecondaryDXCoilInZone) {
auto &secZoneHB = state.dataZoneTempPredictorCorrector->zoneHeatBalance(thisDXCoil.SecZonePtr);
OutdoorDryBulb = secZoneHB.ZT;
OutdoorHumRat = secZoneHB.ZoneAirHumRat;
OutdoorHumRat = secZoneHB.airHumRat;
OutdoorWetBulb = thisDXCoil.EvapInletWetBulb;
OutdoorPressure = state.dataEnvrn->OutBaroPress;
CompAmbTemp = OutdoorDryBulb;
Expand All @@ -11024,7 +11024,7 @@ void CalcDXHeatingCoil(EnergyPlusData &state,
} else if (thisDXCoil.IsSecondaryDXCoilInZone) {
auto &secZoneHB = state.dataZoneTempPredictorCorrector->zoneHeatBalance(thisDXCoil.SecZonePtr);
OutdoorDryBulb = secZoneHB.ZT;
OutdoorHumRat = secZoneHB.ZoneAirHumRat;
OutdoorHumRat = secZoneHB.airHumRat;
OutdoorWetBulb = thisDXCoil.EvapInletWetBulb;
OutdoorPressure = state.dataEnvrn->OutBaroPress;
CompAmbTemp = OutdoorDryBulb;
Expand Down Expand Up @@ -11497,15 +11497,15 @@ void CalcMultiSpeedDXCoil(EnergyPlusData &state,
if (thisDXCoil.IsSecondaryDXCoilInZone) {
auto &secZoneHB = state.dataZoneTempPredictorCorrector->zoneHeatBalance(thisDXCoil.SecZonePtr);
OutdoorDryBulb = secZoneHB.ZT;
OutdoorHumRat = secZoneHB.ZoneAirHumRat;
OutdoorHumRat = secZoneHB.airHumRat;
OutdoorWetBulb = thisDXCoil.EvapInletWetBulb;
OutdoorPressure = state.dataEnvrn->OutBaroPress;
CompAmbTemp = OutdoorDryBulb;
}
} else if (thisDXCoil.IsSecondaryDXCoilInZone) {
auto &secZoneHB = state.dataZoneTempPredictorCorrector->zoneHeatBalance(thisDXCoil.SecZonePtr);
OutdoorDryBulb = secZoneHB.ZT;
OutdoorHumRat = secZoneHB.ZoneAirHumRat;
OutdoorHumRat = secZoneHB.airHumRat;
OutdoorWetBulb = thisDXCoil.EvapInletWetBulb;
OutdoorPressure = state.dataEnvrn->OutBaroPress;
CompAmbTemp = OutdoorDryBulb;
Expand Down Expand Up @@ -12729,14 +12729,14 @@ void CalcMultiSpeedDXCoilCooling(EnergyPlusData &state,
if (thisDXCoil.IsSecondaryDXCoilInZone) {
auto &secZoneHB = state.dataZoneTempPredictorCorrector->zoneHeatBalance(thisDXCoil.SecZonePtr);
OutdoorDryBulb = secZoneHB.ZT;
OutdoorHumRat = secZoneHB.ZoneAirHumRat;
OutdoorHumRat = secZoneHB.airHumRat;
OutdoorWetBulb = thisDXCoil.EvapInletWetBulb;
OutdoorPressure = state.dataEnvrn->OutBaroPress;
}
} else if (thisDXCoil.IsSecondaryDXCoilInZone) {
auto &secZoneHB = state.dataZoneTempPredictorCorrector->zoneHeatBalance(thisDXCoil.SecZonePtr);
OutdoorDryBulb = secZoneHB.ZT;
OutdoorHumRat = secZoneHB.ZoneAirHumRat;
OutdoorHumRat = secZoneHB.airHumRat;
OutdoorWetBulb = thisDXCoil.EvapInletWetBulb;
OutdoorPressure = state.dataEnvrn->OutBaroPress;
} else {
Expand Down Expand Up @@ -13625,14 +13625,14 @@ void CalcMultiSpeedDXCoilHeating(EnergyPlusData &state,
if (thisDXCoil.IsSecondaryDXCoilInZone) {
auto &secZoneHB = state.dataZoneTempPredictorCorrector->zoneHeatBalance(thisDXCoil.SecZonePtr);
OutdoorDryBulb = secZoneHB.ZT;
OutdoorHumRat = secZoneHB.ZoneAirHumRat;
OutdoorHumRat = secZoneHB.airHumRat;
// OutdoorWetBulb = DXCoil( DXCoilNum ).EvapInletWetBulb;
OutdoorPressure = state.dataEnvrn->OutBaroPress;
}
} else if (thisDXCoil.IsSecondaryDXCoilInZone) {
auto &secZoneHB = state.dataZoneTempPredictorCorrector->zoneHeatBalance(thisDXCoil.SecZonePtr);
OutdoorDryBulb = secZoneHB.ZT;
OutdoorHumRat = secZoneHB.ZoneAirHumRat;
OutdoorHumRat = secZoneHB.airHumRat;
// OutdoorWetBulb = DXCoil( DXCoilNum ).EvapInletWetBulb;
OutdoorPressure = state.dataEnvrn->OutBaroPress;
} else {
Expand Down Expand Up @@ -13811,8 +13811,7 @@ void CalcMultiSpeedDXCoilHeating(EnergyPlusData &state,

if (FractionalDefrostTime > 0.0) {
// Calculate defrost adjustment factors depending on defrost control strategy
if (thisDXCoil.DefrostStrategy == StandardRatings::DefrostStrat::ReverseCycle &&
thisDXCoil.DefrostControl == StandardRatings::HPdefrostControl::OnDemand) {
if (thisDXCoil.DefrostStrategy == StandardRatings::DefrostStrat::ReverseCycle) {
DefrostEIRTempModFac = CurveValue(state, thisDXCoil.DefrostEIRFT, max(15.555, InletAirWetBulbC), max(15.555, OutdoorDryBulb));
LoadDueToDefrostLS =
(0.01 * FractionalDefrostTime) * (7.222 - OutdoorDryBulb) * (thisDXCoil.MSRatedTotCap(SpeedNumLS) / 1.01667);
Expand Down Expand Up @@ -14026,8 +14025,7 @@ void CalcMultiSpeedDXCoilHeating(EnergyPlusData &state,

if (FractionalDefrostTime > 0.0) {
// Calculate defrost adjustment factors depending on defrost control strategy
if (thisDXCoil.DefrostStrategy == StandardRatings::DefrostStrat::ReverseCycle &&
thisDXCoil.DefrostControl == StandardRatings::HPdefrostControl::OnDemand) {
if (thisDXCoil.DefrostStrategy == StandardRatings::DefrostStrat::ReverseCycle) {
LoadDueToDefrost = (0.01 * FractionalDefrostTime) * (7.222 - OutdoorDryBulb) * (thisDXCoil.MSRatedTotCap(1) / 1.01667);
DefrostEIRTempModFac = CurveValue(state, thisDXCoil.DefrostEIRFT, max(15.555, InletAirWetBulbC), max(15.555, OutdoorDryBulb));
thisDXCoil.DefrostPower = DefrostEIRTempModFac * (thisDXCoil.MSRatedTotCap(1) / 1.01667) * FractionalDefrostTime;
Expand Down Expand Up @@ -16314,7 +16312,7 @@ void CalcSecondaryDXCoils(EnergyPlusData &state, int const DXCoilNum)
}
thisDXCoil.SecCoilTotalHeatRemovalRate = -TotalHeatRemovalRate; // +DXCoil( DXCoilNum ).DefrostPower;
EvapInletDryBulb = secZoneHB.ZT;
EvapInletHumRat = secZoneHB.ZoneAirHumRat;
EvapInletHumRat = secZoneHB.airHumRat;
RhoAir = PsyRhoAirFnPbTdbW(state, state.dataEnvrn->OutBaroPress, EvapInletDryBulb, EvapInletHumRat);
EvapAirMassFlow = RhoAir * thisDXCoil.SecCoilAirFlow;
;
Expand Down Expand Up @@ -16370,7 +16368,7 @@ void CalcSecondaryDXCoils(EnergyPlusData &state, int const DXCoilNum)
} break;
case CoilDX_MultiSpeedHeating: {
EvapInletDryBulb = secZoneHB.ZT;
EvapInletHumRat = secZoneHB.ZoneAirHumRat;
EvapInletHumRat = secZoneHB.airHumRat;
RhoAir = PsyRhoAirFnPbTdbW(state, state.dataEnvrn->OutBaroPress, EvapInletDryBulb, EvapInletHumRat);
MSSpeedRatio = thisDXCoil.MSSpeedRatio;
MSCycRatio = thisDXCoil.MSCycRatio;
Expand Down
Loading

5 comments on commit f939ed9

@nrel-bot
Copy link

Choose a reason for hiding this comment

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

fixIncSolarMultiplier (yujiex) - Win64-Windows-10-VisualStudio-16: OK (2731 of 2731 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.

fixIncSolarMultiplier (yujiex) - x86_64-MacOS-10.17-clang-14.0.0: OK (3515 of 3516 tests passed, 1 test warnings)

Messages:\n

  • 1 test had: EIO diffs.
  • 1 test had: ESO big diffs.
  • 1 test had: Table big diffs.
  • 1 test had: Table small diffs.

Failures:\n

regression Test Summary

  • Passed: 783
  • Failed: 1

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.

fixIncSolarMultiplier (yujiex) - x86_64-Linux-Ubuntu-22.04-gcc-11.4: OK (3556 of 3557 tests passed, 1 test warnings)

Messages:\n

  • 1 test had: EIO diffs.
  • 1 test had: ESO big diffs.
  • 1 test had: Table big diffs.
  • 1 test had: Table small diffs.

Failures:\n

regression Test Summary

  • Passed: 803
  • Failed: 1

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.

fixIncSolarMultiplier (yujiex) - x86_64-Linux-Ubuntu-22.04-gcc-11.4-UnitTestsCoverage-Debug: OK (1946 of 1946 tests passed, 0 test warnings)

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

fixIncSolarMultiplier (yujiex) - x86_64-Linux-Ubuntu-22.04-gcc-11.4-IntegrationCoverage-Debug: OK (788 of 788 tests passed, 0 test warnings)

Build Badge Test Badge Coverage Badge

Please sign in to comment.