Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=r64), | intent(in) | :: | S | |||
real(kind=r64), | intent(in) | :: | W | |||
real(kind=r64), | intent(in) | :: | OPENNESS_FABRIC | |||
real(kind=r64), | intent(in) | :: | EPSLWF0_FABRIC | |||
real(kind=r64), | intent(in) | :: | EPSLWB0_FABRIC | |||
real(kind=r64), | intent(in) | :: | TAULW0_FABRIC | |||
real(kind=r64), | intent(out) | :: | EPSLWF_PD | |||
real(kind=r64), | intent(out) | :: | TAULW_PD |
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 PD_LW(S, W, OPENNESS_FABRIC, EPSLWF0_FABRIC, EPSLWB0_FABRIC, TAULW0_FABRIC, &
EPSLWF_PD, TAULW_PD)
! 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:
! Calculates the effective longwave emittance and transmittance of a drapery layer
!
! METHODOLOGY EMPLOYED:
! na
!
! REFERENCES:
! na
! USE STATEMENTS:
! na
!
IMPLICIT NONE ! Enforce explicit typing of all variables in this routine
! SUBROUTINE ARGUMENT DEFINITIONS:
REAL(r64), INTENT(IN):: S ! pleat spacing (> 0)
REAL(r64), INTENT(IN):: W ! pleat depth (>=0, same units as S)
REAL(r64), INTENT(IN):: OPENNESS_FABRIC ! fabric openness, 0-1 (=tausbb at normal incidence)
REAL(r64), INTENT(IN):: EPSLWF0_FABRIC ! fabric LW front emittance at 0 openness
! typical (default) = 0.92
REAL(r64), INTENT(IN):: EPSLWB0_FABRIC ! fabric LW back emittance at 0 openness
! typical (default) = 0.92
REAL(r64), INTENT(IN):: TAULW0_FABRIC ! fabric LW transmittance at 0 openness
! nearly always 0
REAL(r64), INTENT(OUT):: EPSLWF_PD ! returned: drape front effective LW emittance
REAL(r64), INTENT(OUT):: TAULW_PD ! returned: drape effective LW transmittance
!
! SUBROUTINE PARAMETER DEFINITIONS:
! na
! INTERFACE BLOCK SPECIFICATIONS
! na
! DERIVED TYPE DEFINITIONS
! na
! SUBROUTINE LOCAL VARIABLE DECLARATIONS:
REAL(r64) :: RHOLWF_FABRIC
REAL(r64) :: RHOLWB_FABRIC
REAL(r64) :: TAULW_FABRIC
REAL(r64) :: EPSLWF_FABRIC
REAL(r64) :: EPSLWB_FABRIC
REAL(r64) :: TAULX
REAL(r64) :: RHOLWF_PD
! Flow
CALL OPENNESS_LW(OPENNESS_FABRIC, EPSLWF0_FABRIC, TAULW0_FABRIC, EPSLWF_FABRIC, TAULW_FABRIC)
CALL OPENNESS_LW(OPENNESS_FABRIC, EPSLWB0_FABRIC, TAULW0_FABRIC, EPSLWB_FABRIC, TAULX)
RHOLWF_FABRIC = P01( 1.0d0 - EPSLWF_FABRIC - TAULW_FABRIC, "PD_LW RhoLWF")
RHOLWB_FABRIC = P01( 1.0d0 - EPSLWB_FABRIC - TAULW_FABRIC, "PD_LW RhoLWB")
CALL PD_DIFF(S, W, RHOLWF_FABRIC, RHOLWB_FABRIC, TAULW_FABRIC, RHOLWF_PD, TAULW_PD)
EPSLWF_PD = P01(1.0d0 - TAULW_PD - RHOLWF_PD, "PD_LW EpsLWF")
RETURN
END SUBROUTINE PD_LW