Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(CFSLAYER), | intent(in) | :: | L | |||
type(CFSLWP), | intent(inout) | :: | LLWP |
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.
LOGICAL FUNCTION RB_LWP(L, LLWP)
!
! FUNCTION INFORMATION:
! AUTHOR ASHRAE 1311-RP
!
! DATE WRITTEN unknown
! MODIFIED na
!
! RE-ENGINEERED na
! PURPOSE OF THIS FUNCTION:
! Modifies roller blind longwave properties. If not roller blind layer
! returns False.
!
!
! METHODOLOGY EMPLOYED:
! na
!
! REFERENCES:
! na
!
! USE STATEMENTS:
! na
!
!
IMPLICIT NONE
! FUNCTION ARGUMENT DEFINITIONS:
TYPE( CFSLAYER), INTENT( IN) :: L ! RB layer
TYPE( CFSLWP), INTENT( INOUT) :: LLWP ! returned: equivalent layer long wave properties
!
! FUNCTION PARAMETER DEFINITIONS:
! na
! INTERFACE BLOCK SPECIFICATIONS
! na
! DERIVED TYPE DEFINITIONS
! na
! FUNCTION LOCAL VARIABLE DECLARATIONS:
REAL(r64) :: TAULX
REAL(r64) :: OPENNESS
RB_LWP = .FALSE.
IF (L%LTYPE /= ltyROLLB) RETURN
OPENNESS = L%SWP_MAT%TAUSFBB
CALL OPENNESS_LW(OPENNESS, L%LWP_MAT%EPSLF, L%LWP_MAT%TAUL, &
LLWP%EPSLF, LLWP%TAUL)
CALL OPENNESS_LW(OPENNESS, L%LWP_MAT%EPSLB, L%LWP_MAT%TAUL, &
LLWP%EPSLB, TAULX)
RB_LWP = .TRUE.
RETURN
END FUNCTION RB_LWP