Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(CFSTY), | intent(in) | :: | FS |
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.
REAL(r64) FUNCTION EffectiveEPSLB(FS)
!
! FUNCTION INFORMATION:
! AUTHOR <unknown>, ASHRAE 1311-RP
! DATE WRITTEN unknown
! MODIFIED na
! RE-ENGINEERED na
!
! PURPOSE OF THIS FUNCTION:
! Returns effective inside (room side) Longwave emissivity. Handles partially
! transparent layers
!
! METHODOLOGY EMPLOYED:
! na
!
! REFERENCES:
! na
! USE STATEMENTS:
! na
IMPLICIT NONE ! Enforce explicit typing of all variables in this routine
! FUNCTION ARGUMENT DEFINITIONS:
TYPE( CFSTY), INTENT( IN) :: FS ! Complex Fenestration
!
! FUNCTION PARAMETER DEFINITIONS:
! na
!
! INTERFACE BLOCK SPECIFICATIONS:
! na
! DERIVED TYPE DEFINITIONS:
! na
! FUNCTION LOCAL VARIABLE DECLARATIONS:
REAL(r64) :: E ! Effective emissivity
REAL(r64) :: TX ! correction factor
INTEGER :: iL ! layers index
! Flow
E = 0.0d0
TX = 1.0d0
DO iL = FS%NL, 0, -1
IF (iL == 0) THEN
E = E + 0.9d0 * TX
ELSE
E = E + FS%L( iL)%LWP_EL%EPSLB * TX
IF (FS%L( iL)%LWP_EL%TAUL < 0.001d0) EXIT
TX = TX * FS%L( iL)%LWP_EL%TAUL
END IF
END DO
EffectiveEPSLB = E
RETURN
END FUNCTION EffectiveEPSLB