Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(CFSSWP), | intent(inout) | :: | SWP |
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 Fabric_EstimateDiffuseProps(SWP)
!
! 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:
! Estimates diffuse properties of drape fabrics.
! sets RHOSFDD, RHOSBDD, TAUS_DD
!
!
! METHODOLOGY EMPLOYED:
! na
!
! REFERENCES:
! na
!
! USE STATEMENTS:
! na
!
!
IMPLICIT NONE
! SUBROUTINE ARGUMENT DEFINITIONS:
TYPE( CFSSWP), INTENT( INOUT) :: SWP ! fabric short wave properties
!
! SUBROUTINE PARAMETER DEFINITIONS:
! na
! INTERFACE BLOCK SPECIFICATIONS
! na
! DERIVED TYPE DEFINITIONS
! na
!
! SUBROUTINE LOCAL VARIABLE DECLARATIONS:
REAL(r64) :: RHOBF_BT0 ! total back reflectance
REAL(r64) :: RHOFF_BT0 ! total front reflectance
REAL(r64) :: TAUBF_BT0 ! total back transmittance
REAL(r64) :: TAUFF_BT0 ! total front transmittance
REAL(r64) :: TAUX
! flow
RHOFF_BT0 = SWP%RHOSFBB + SWP%RHOSFBD ! front rho
RHOBF_BT0 = SWP%RHOSBBB + SWP%RHOSBBD ! back rho
TAUFF_BT0 = SWP%TAUSFBB + SWP%TAUSFBD ! front tau
TAUBF_BT0 = SWP%TAUSBBB + SWP%TAUSBBD ! back tau
!
CALL FM_DIFF( RHOFF_BT0, TAUFF_BT0, SWP%TAUSFBB, SWP%RHOSFDD, SWP%TAUS_DD)
CALL FM_DIFF( RHOBF_BT0, TAUBF_BT0, SWP%TAUSBBB, SWP%RHOSBDD, TAUX)
!
RETURN
END SUBROUTINE Fabric_EstimateDiffuseProps