Skip to content

Commit

Permalink
clean up comments
Browse files Browse the repository at this point in the history
  • Loading branch information
rraustad committed Nov 30, 2024
1 parent bc5c096 commit c053711
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/EnergyPlus/WindowManager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4515,7 +4515,6 @@ namespace Window {
fcon[i - 1] = wmgas.con.c0 + wmgas.con.c1 * tmean + wmgas.con.c2 * tmean_2;
fvis[i - 1] = wmgas.vis.c0 + wmgas.vis.c1 * tmean + wmgas.vis.c2 * tmean_2;
fcp[i - 1] = wmgas.cp.c0 + wmgas.cp.c1 * tmean + wmgas.cp.c2 * tmean_2;
// fdens[i - 1] = pres * wmgas.wght / (gaslaw * tmean);
molmix += frct[i - 1] * wmgas.wght; // eq. 56
cpmixm += frct[i - 1] * fcp[i - 1] * wmgas.wght; // eq. 58-59
kprime[i - 1] = 3.75 * gaslaw / wmgas.wght * fvis[i - 1]; // eq. 67
Expand Down Expand Up @@ -7672,7 +7671,7 @@ namespace Window {

// Argument array dimensioning
c.dim(15);
p.dim(16); // not actually used
p.dim(16);

Array1D<Real64> fEdgeSource(10); // Slat edge correction factor vs source elevation
Array1D<Real64> fEdgeA(2); // Average slat edge correction factor for upper and lower quadrants
Expand Down

3 comments on commit c053711

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

CppCheck-WindowManager2 (rraustad) - x86_64-Linux-Ubuntu-24.04-gcc-13.2-UnitTestsCoverage-RelWithDebInfo: OK (2099 of 2099 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.

CppCheck-WindowManager2 (rraustad) - x86_64-Linux-Ubuntu-24.04-gcc-13.2: OK (2917 of 2917 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.

CppCheck-WindowManager2 (rraustad) - x86_64-Linux-Ubuntu-24.04-gcc-13.2-IntegrationCoverage-RelWithDebInfo: OK (801 of 801 tests passed, 0 test warnings)

Build Badge Test Badge Coverage Badge

Please sign in to comment.