Skip to content

Commit

Permalink
unused
Browse files Browse the repository at this point in the history
  • Loading branch information
rraustad committed Sep 1, 2024
1 parent 60066bf commit 1b19783
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/EnergyPlus/WindowManager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4291,7 +4291,6 @@ namespace Window {

// SUBROUTINE LOCAL VARIABLE DECLARATIONS:
int ConstrNumSh; // Shaded construction number
int MatNumSh; // Material number of shade/blind layer
// In the following, "gaps" refer to the gaps on either side of the shade/blind
Array1D<Real64> TGlassFace(2); // Temperature of glass surfaces facing gaps (K)
Array1D<Real64> TShadeFace(2); // Temperature of shade surfaces facing gaps (K)
Expand Down Expand Up @@ -4325,14 +4324,12 @@ namespace Window {
ShadeFlag = state.dataSurface->SurfWinShadingFlag(SurfNum);

if (state.dataConstruction->Construct(ConstrNumSh).TotGlassLayers == 2) { // Double glazing
MatNumSh = state.dataConstruction->Construct(ConstrNumSh).LayerPoint(3);
IGapInc = 0;
for (int IGap = 1; IGap <= 2; ++IGap) {
TGlassFace(IGap) = wm->thetas[IGap];
TShadeFace(IGap) = wm->thetas[IGap + 3];
}
} else { // Triple glazing
MatNumSh = state.dataConstruction->Construct(ConstrNumSh).LayerPoint(5);
IGapInc = 1;
for (int IGap = 1; IGap <= 2; ++IGap) {
TGlassFace(IGap) = wm->thetas[IGap + 2];
Expand Down

0 comments on commit 1b19783

Please sign in to comment.