TYPE FrameDividerProperties
CHARACTER(len=MaxNameLength) :: Name = ' ' ! Name of frame/divider
REAL(r64) :: FrameWidth = 0.0d0 ! Average width of frame in plane of window {m}
REAL(r64) :: FrameProjectionOut = 0.0d0 ! Distance normal to window between outside face of outer pane
! and outside of frame {m}
REAL(r64) :: FrameProjectionIn = 0.0d0 ! Distance normal to window between inside face of inner pane
! and inside of frame {m}
REAL(r64) :: FrameConductance = 0.0d0 ! Effective conductance of frame (no air films) {W/m2-K}
REAL(r64) :: FrameEdgeWidth = 0.06355d0 ! default 2.5 in ! Width of glass edge region near frame {m}
REAL(r64) :: FrEdgeToCenterGlCondRatio = 1.0d0 ! Ratio of frame edge of glass conductance (without air films) to
! center of glass conductance (without air films)
REAL(r64) :: FrameSolAbsorp = 0.0d0 ! Solar absorptance of frame corrected for self-shading
REAL(r64) :: FrameVisAbsorp = 0.0d0 ! Visible absorptance of frame corrected for self-shading
REAL(r64) :: FrameEmis = 0.9d0 ! Thermal emissivity of frame
INTEGER :: DividerType = 0 ! Type of divider {DividedLite or Suspended (between-glass}
REAL(r64) :: DividerWidth = 0.0d0 ! Average width of divider in plane of window {m}
INTEGER :: HorDividers = 0 ! Number of horizontal dividers
INTEGER :: VertDividers = 0 ! Number of vertical dividers
REAL(r64) :: DividerProjectionOut = 0.0d0 ! Distance normal to window between outside face of outer pane
! and outside of divider {m}
REAL(r64) :: DividerProjectionIn = 0.0d0 ! Distance normal to window between inside face of inner pane
! and inside of divider {m}
REAL(r64) :: DividerEdgeWidth = 0.06355d0 ! default 2.5 in ! Width of glass edge region near divider
REAL(r64) :: DividerConductance = 0.0d0 ! Effective conductance of divider (no air films) {W/m2-K}
REAL(r64) :: DivEdgeToCenterGlCondRatio = 1.0d0 ! Ratio of divider edge of glass conductance (without air films) to
! center of glass conductance (without air films)
REAL(r64) :: DividerSolAbsorp = 0.0d0 ! Solar absorptance of divider corrected for self-shading
REAL(r64) :: DividerVisAbsorp = 0.0d0 ! Visible absorptance of divider corrected for self-shading
REAL(r64) :: DividerEmis = 0.9d0 ! Thermal emissivity of divider
INTEGER :: MullionOrientation = 0 ! Horizontal or Vertical; used only for windows with two glazing systems
! divided by a mullion; obtained from Window5 data file.
REAL(r64) :: OutsideRevealSolAbs = 0.0d0 ! Solar absorptance of outside reveal
REAL(r64) :: InsideSillDepth = 0.0d0 ! Inside sill depth (m)
REAL(r64) :: InsideReveal = 0.0d0 ! Inside reveal (m)
REAL(r64) :: InsideSillSolAbs = 0.0d0 ! Solar absorptance of inside sill
REAL(r64) :: InsideRevealSolAbs = 0.0d0 ! Solar absorptance of inside reveal
END TYPE FrameDividerProperties