Skip to content

Commit

Permalink
Add test files fieldnames and revise error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
lymereJ committed Sep 30, 2024
1 parent b422061 commit ac78b72
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion src/EnergyPlus/PoweredInductionUnits.cc
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ void GetPIUs(EnergyPlusData &state)
} else if (Util::SameString(heating_control_type, "Modulated")) {
thisPIU.heatingControlType = HeatCntrlBehaviorType::ModulatedHeaterBehavior;
} else {
ShowSevereError(state, format("Illegal Heating Control Type = {}", heating_control_type));
ShowSevereError(state, "Heating Control Type should be Staged or Modulared");
ShowContinueError(state, format("Occurs in {} = {}", cCurrentModuleObject, thisPIU.Name));
ErrorsFound = true;
}
Expand Down
42 changes: 21 additions & 21 deletions testfiles/5ZoneAirCooledConvCoef_VSFan.idf
Original file line number Diff line number Diff line change
Expand Up @@ -2434,11 +2434,11 @@
autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s}
0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
0.0001, !- Convergence Tolerance
VariableSpeed,
0.5,
Modulated,
,
;
VariableSpeed, !- Fan Control Type
0.5, !- Minimum Fan Turn Down Ratio
Modulated, !- Heating Control Type
, !- Design Heating Discharge Air Temperature
; !- High Limit Heating Discharge Air Temperature

Fan:SystemModel,
SPACE1-1 PIU Fan, !- Name
Expand Down Expand Up @@ -2510,11 +2510,11 @@
autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s}
0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
0.0001, !- Convergence Tolerance
VariableSpeed,
0.3,
Modulated,
,
;
VariableSpeed, !- Fan Control Type
0.3, !- Minimum Fan Turn Down Ratio
Modulated, !- Heating Control Type
, !- Design Heating Discharge Air Temperature
; !- High Limit Heating Discharge Air Temperature

Fan:SystemModel,
SPACE2-1 PIU Fan, !- Name
Expand Down Expand Up @@ -2574,11 +2574,11 @@
autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s}
0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
0.0001, !- Convergence Tolerance
VariableSpeed,
0.5,
Staged,
,
;
VariableSpeed, !- Fan Control Type
0.5, !- Minimum Fan Turn Down Ratio
Staged, !- Heating Control Type
, !- Design Heating Discharge Air Temperature
; !- High Limit Heating Discharge Air Temperature

Fan:SystemModel,
SPACE3-1 PIU Fan, !- Name
Expand Down Expand Up @@ -2639,12 +2639,12 @@
autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s}
0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s}
0.0001, !- Convergence Tolerance
VariableSpeed,
0.3,
Staged,
,
;
VariableSpeed, !- Fan Control Type
0.5, !- Minimum Fan Turn Down Ratio
Staged, !- Heating Control Type
, !- Design Heating Discharge Air Temperature
; !- High Limit Heating Discharge Air Temperature

Fan:SystemModel,
SPACE4-1 PIU Fan, !- Name
ReheatCoilAvailSched, !- Availability Schedule Name
Expand Down

3 comments on commit ac78b72

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

add_test_files_fieldnames (lymereJ) - x86_64-Linux-Ubuntu-22.04-gcc-11.4: OK (2914 of 2914 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.

add_test_files_fieldnames (lymereJ) - x86_64-Linux-Ubuntu-22.04-gcc-11.4-UnitTestsCoverage-RelWithDebInfo: OK (2098 of 2098 tests passed, 0 test warnings)

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

add_test_files_fieldnames (lymereJ) - x86_64-Linux-Ubuntu-22.04-gcc-11.4-IntegrationCoverage-RelWithDebInfo: OK (799 of 799 tests passed, 0 test warnings)

Build Badge Test Badge Coverage Badge

Please sign in to comment.