Skip to content

Commit

Permalink
corrected CapFTemp curve index in multi-speed DX coils
Browse files Browse the repository at this point in the history
  • Loading branch information
nigusse committed Nov 19, 2019
1 parent b4404bb commit f2c7275
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EnergyPlus/DXCoils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -14876,7 +14876,7 @@ namespace DXCoils {
(SELECT_CASE_var == CoilDX_HeatingEmpirical) || (SELECT_CASE_var == CoilDX_CoolingTwoStageWHumControl)) {
CapFTCurveIndex = DXCoil(CoilIndex).CCapFTemp(1);
} else if ((SELECT_CASE_var == CoilDX_MultiSpeedCooling) || (SELECT_CASE_var == CoilDX_MultiSpeedHeating)) {
CapFTCurveIndex = DXCoil(CoilIndex).MSCCapFTemp(1);
CapFTCurveIndex = DXCoil(CoilIndex).MSCCapFTemp(DXCoil(CoilIndex).NumOfSpeeds);
} else if (SELECT_CASE_var == CoilVRF_Heating) {
CapFTCurveIndex = DXCoil(CoilIndex).CCapFTemp(1);
} else {
Expand Down

6 comments on commit f2c7275

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

169848630_Issue7625 (Unknown) - x86_64-Linux-Ubuntu-18.04-cppcheck: OK (0 of 0 tests passed, 0 test warnings)

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

169848630_Issue7625 (Unknown) - x86_64-Linux-Ubuntu-18.04-custom_check: OK (11 of 11 tests passed, 0 test warnings)

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

169848630_Issue7625 (Unknown) - x86_64-MacOS-10.13-clang: OK (2581 of 2581 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.

169848630_Issue7625 (Unknown) - x86_64-Linux-Ubuntu-18.04-gcc-7.4-UnitTestsCoverage-Debug: OK (1241 of 1241 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.

169848630_Issue7625 (Unknown) - Win64-Windows-10-VisualStudio-16: OK (2581 of 2581 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.

169848630_Issue7625 (Unknown) - x86_64-Linux-Ubuntu-18.04-gcc-7.4-IntegrationCoverage-Debug: OK (673 of 674 tests passed, 0 test warnings)

Failures:\n

integration Test Summary

  • Passed: 673
  • Timeout: 1

Build Badge Test Badge Coverage Badge

Please sign in to comment.