Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(in) | :: | ConstrNum |
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed arrows point from an interface to procedures which implement that interface. This could include the module procedures in a generic interface or the implementation in a submodule of an interface in a parent module. Where possible, edges connecting nodes are given different colours to make them easier to distinguish in large graphs.
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed arrows point from an interface to procedures which implement that interface. This could include the module procedures in a generic interface or the implementation in a submodule of an interface in a parent module. Where possible, edges connecting nodes are given different colours to make them easier to distinguish in large graphs.
SUBROUTINE CalcEQLWindowStandardRatings(ConstrNum)
! SUBROUTINE INFORMATION:
! AUTHOR Bereket Nigusse
! DATE WRITTEN May 2013
! MODIFIED na
!
! RE-ENGINEERED na
! PURPOSE OF THIS SUBROUTINE:
! Calculates the U-value, SHGC and Normal Transmittance of equivalent layer
! fenestration.
! METHODOLOGY EMPLOYED:
! Uses routine developed for ASHRAE RP-1311 (ASHWAT Model)
!
! REFERENCES:
! na
! USE STATEMENTS:
! na
IMPLICIT NONE
! SUBROUTINE ARGUMENT DEFINITIONS:
INTEGER, INTENT(IN) :: ConstrNum ! construction index
! SUBROUTINE PARAMETER DEFINITIONS:
! na
! INTERFACE BLOCK SPECIFICATIONS
! na
! DERIVED TYPE DEFINITIONS
! na
! SUBROUTINE LOCAL VARIABLE DECLARATIONS:
REAL(r64) :: UValue
INTEGER :: EQLNum
REAL(r64) :: SHGCSummer
REAL(r64) :: TransNormal
! flow
Uvalue = 0.d0
SHGCSummer = 0.d0
TransNormal = 0.d0
EQLNum = Construct(ConstrNum)%EQLConsPtr
! calculate fenestration air-to-air U-value
CALL CalcEQLWindowUvalue( CFS(EQLNum), UValue)
NominalU(ConstrNum) = UValue
! calculate the SHGC and Normal Transmittance
CALL CalcEQLWindowSHGCAndTransNormal( CFS(EQLNum), SHGCSummer, TransNormal)
Construct(ConstrNum)%SummerSHGC = SHGCSummer
Construct(ConstrNum)%SolTransNorm = TransNormal
RETURN
END SUBROUTINE CalcEQLWindowStandardRatings