Skip to content

Commit

Permalink
Fix initialization issues
Browse files Browse the repository at this point in the history
  • Loading branch information
amirroth committed Aug 2, 2024
1 parent 49da0f2 commit 4daa96a
Show file tree
Hide file tree
Showing 3 changed files with 364 additions and 364 deletions.
2 changes: 1 addition & 1 deletion src/EnergyPlus/Material.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2918,7 +2918,7 @@ void GetSlatIndicesInterpFac(Real64 slatAng, int &idxLo, int &idxHi, Real64 &int
{
idxLo = int(slatAng / dSlatAng) + 1;
idxHi = std::min(MaxSlatAngs, idxLo+1);
interpFac = (slatAng - idxLo * dSlatAng) / dSlatAng;
interpFac = (slatAng - ((idxLo - 1) * dSlatAng)) / dSlatAng;
}


Expand Down
Loading

5 comments on commit 4daa96a

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

Blind (amirroth) - x86_64-MacOS-10.18-clang-15.0.0: OK (3553 of 3644 tests passed, 700 test warnings)

Messages:\n

  • 786 tests had: EIO diffs.
  • 206 tests had: ESO small diffs.
  • 76 tests had: Table string diffs.
  • 187 tests had: MTR small diffs.
  • 137 tests had: Table small diffs.
  • 1 test had: JSON small diffs.
  • 42 tests had: Table big diffs.
  • 40 tests had: ERR diffs.
  • 19 tests had: ESO big diffs.
  • 5 tests had: EDD diffs.
  • 1 test had: SSZ small diffs.
  • 1 test had: ZSZ big diffs.
  • 1 test had: JSON big diffs.
  • 1 test had: MTR big diffs.

Failures:\n

integration Test Summary

  • Passed: 793
  • Failed: 1

regression Test Summary

  • Passed: 701
  • Failed: 90

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.

Blind (amirroth) - x86_64-Linux-Ubuntu-22.04-gcc-11.4: OK (3594 of 3685 tests passed, 704 test warnings)

Messages:\n

  • 791 tests had: EIO diffs.
  • 212 tests had: ESO small diffs.
  • 189 tests had: MTR small diffs.
  • 144 tests had: Table small diffs.
  • 79 tests had: Table string diffs.
  • 43 tests had: Table big diffs.
  • 38 tests had: ERR diffs.
  • 20 tests had: ESO big diffs.
  • 5 tests had: EDD diffs.
  • 1 test had: SSZ small diffs.
  • 1 test had: ZSZ big diffs.
  • 1 test had: JSON big diffs.
  • 1 test had: MTR big diffs.

Failures:\n

regression Test Summary

  • Passed: 720
  • Failed: 91

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.

Blind (amirroth) - Win64-Windows-10-VisualStudio-16: OK (2851 of 2852 tests passed, 0 test warnings)

Failures:\n

integration Test Summary

  • Passed: 793
  • Failed: 1

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.

Blind (amirroth) - x86_64-Linux-Ubuntu-22.04-gcc-11.4-UnitTestsCoverage-Debug: OK (2060 of 2060 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.

Blind (amirroth) - x86_64-Linux-Ubuntu-22.04-gcc-11.4-IntegrationCoverage-Debug: OK (795 of 795 tests passed, 0 test warnings)

Build Badge Test Badge Coverage Badge

Please sign in to comment.