Skip to content

Commit

Permalink
Fix #8581: make AIrLoopHVAC;DedicatedOutdoorAirSystem's airloophvac_a…
Browse files Browse the repository at this point in the history
…me extension case-insentive
  • Loading branch information
jmarrec committed Mar 3, 2021
1 parent 85df1b8 commit e08ba29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/EnergyPlus/AirLoopHVACDOAS.cc
Original file line number Diff line number Diff line change
Expand Up @@ -753,8 +753,8 @@ namespace AirLoopHVACDOAS {
if (AirLoopNames != fields.end()) {
auto AirLoopArray = AirLoopNames.value();
int num = 0;
for (auto AirLoopHAVCName : AirLoopArray) {
std::string name = AirLoopHAVCName.at("airloophvac_name");
for (auto AirLoopHVACName : AirLoopArray) {
std::string name = UtilityRoutines::MakeUPPERCase(AirLoopHVACName.at("airloophvac_name"));
int LoopNum = UtilityRoutines::FindItemInList(name, state.dataAirSystemsData->PrimaryAirSystems);
num += 1;
if (LoopNum > 0 && num <= thisDOAS.NumOfAirLoops) {
Expand Down

5 comments on commit e08ba29

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

8581_AirLoopDOAS_Casing (jmarrec) - 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.

8581_AirLoopDOAS_Casing (jmarrec) - 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-3
Copy link

Choose a reason for hiding this comment

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

8581_AirLoopDOAS_Casing (jmarrec) - x86_64-MacOS-10.15-clang-11.0.0: OK (3059 of 3059 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.

8581_AirLoopDOAS_Casing (jmarrec) - x86_64-Linux-Ubuntu-18.04-gcc-7.5-IntegrationCoverage-Debug: OK (727 of 727 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.

8581_AirLoopDOAS_Casing (jmarrec) - Win64-Windows-10-VisualStudio-16: OK (2308 of 2308 tests passed, 0 test warnings)

Build Badge Test Badge

Please sign in to comment.