Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(CFSSWP), | intent(inout) | :: | SWP | |||
real(kind=r64), | intent(in) | :: | OMEGA |
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 Specular_SWP(SWP, OMEGA)
!
! SUBROUTINE INFORMATION:
! AUTHOR JOHN L. WRIGHT, University of Waterloo, Mechanical Engineering
! Advanced Glazing System Laboratory
! DATE WRITTEN unknown
! MODIFIED na
!
! RE-ENGINEERED na
! PURPOSE OF THIS SUBROUTINE:
! Manages the off-normal solar properties calculation
!
!
! METHODOLOGY EMPLOYED:
! na
!
!
! REFERENCES:
! na
!
! USE STATEMENTS:
! na
!
!
IMPLICIT NONE
! SUBROUTINE ARGUMENT DEFINITIONS:
TYPE (CFSSWP), INTENT(INOUT) :: SWP ! short wave properties (adjusted in place)
REAL(r64), INTENT(IN) :: OMEGA ! incident angle, radians
!
! SUBROUTINE PARAMETER DEFINITIONS:
! na
! INTERFACE BLOCK SPECIFICATIONS
! na
! DERIVED TYPE DEFINITIONS
! na
! SUBROUTINE LOCAL VARIABLE DECLARATIONS:
REAL(r64) :: RAT_1MR ! adjustment factors, see Specular_OffNormal()
REAL(r64) :: RAT_TAU ! adjustment factors, see Specular_OffNormal()
LOGICAL :: Specular_OffNormalReturn = .TRUE.
! Flow
Specular_OffNormalReturn = Specular_OffNormal( OMEGA, RAT_1MR, RAT_TAU)
IF(Specular_OffNormalReturn) THEN
CALL Specular_Adjust( SWP, RAT_1MR, RAT_TAU)
END IF
RETURN
END SUBROUTINE Specular_SWP