Skip to content

Commit

Permalink
Assert that speed must be nonzero.
Browse files Browse the repository at this point in the history
  • Loading branch information
tanaya-mankad committed Jul 30, 2024
1 parent 7a03b89 commit 4eadee2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/EnergyPlus/Coils/CoilCoolingDX.cc
Original file line number Diff line number Diff line change
Expand Up @@ -665,6 +665,8 @@ void CoilCoolingDX::simulate(EnergyPlusData &state,
bool const singleMode,
Real64 LoadSHR)
{
assert(speedNum != 0);

if (this->myOneTimeInitFlag) {
this->oneTimeInit(state);
this->myOneTimeInitFlag = false;
Expand Down

5 comments on commit 4eadee2

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

nonzero-cooling-speed-num (tanaya-mankad) - x86_64-Linux-Ubuntu-22.04-gcc-11.4: OK (3693 of 3696 tests passed, 7 test warnings)

Messages:\n

  • 6 tests had: EIO diffs.
  • 8 tests had: ESO small diffs.
  • 1 test had: EDD diffs.
  • 7 tests had: MTR small diffs.
  • 2 tests had: Table big diffs.
  • 3 tests had: Table string diffs.
  • 5 tests had: Table small diffs.

Failures:\n

regression Test Summary

  • Passed: 808
  • Failed: 3

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

nonzero-cooling-speed-num (tanaya-mankad) - Win64-Windows-10-VisualStudio-16: OK (2863 of 2863 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.

nonzero-cooling-speed-num (tanaya-mankad) - x86_64-MacOS-10.18-clang-15.0.0: OK (3651 of 3655 tests passed, 5 test warnings)

Messages:\n

  • 7 tests had: ESO small diffs.
  • 1 test had: EDD diffs.
  • 7 tests had: MTR small diffs.
  • 2 tests had: Table big diffs.
  • 4 tests had: Table string diffs.
  • 5 tests had: EIO diffs.
  • 5 tests had: Table small diffs.

Failures:\n

regression Test Summary

  • Passed: 787
  • Failed: 4

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.

nonzero-cooling-speed-num (tanaya-mankad) - x86_64-Linux-Ubuntu-22.04-gcc-11.4-IntegrationCoverage-Debug: OK (776 of 795 tests passed, 0 test warnings)

Failures:\n

integration Test Summary

  • Passed: 776
  • Failed: 19

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.

nonzero-cooling-speed-num (tanaya-mankad) - x86_64-Linux-Ubuntu-22.04-gcc-11.4-UnitTestsCoverage-Debug: OK (2067 of 2071 tests passed, 0 test warnings)

Failures:\n

EnergyPlusFixture Test Summary

  • Passed: 1575
  • Subprocess aborted: 2

ZoneUnitarySysTest Test Summary

  • Passed: 26
  • Subprocess aborted: 2

Build Badge Test Badge Coverage Badge

Please sign in to comment.