Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=r64), | intent(in) | :: | Temperature | |||
real(kind=r64), | intent(in) | :: | ambp |
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 WVDC(Temperature,ambp)
! FUNCTION INFORMATION:
! AUTHOR Phillip Biddulph
! DATE WRITTEN June 2008
! MODIFIED na
! RE-ENGINEERED na
! PURPOSE OF THIS FUNCTION:
! To calculate the Water Vapor Diffusion Coefficient in air
! using the temperature and ambient atmospheric pressor
! METHODOLOGY EMPLOYED:
! na
! REFERENCES:
! K?zel, H.M. (1995) Simultaneous Heat and Moisture Transport in Building Components.
! One- and two-dimensional calculation using simple parameters. IRB Verlag 1995
! USE STATEMENTS:
! na
IMPLICIT NONE ! Enforce explicit typing of all variables in this routine
! FUNCTION ARGUMENT DEFINITIONS:
REAL(r64), INTENT(IN) :: Temperature
REAL(r64), INTENT(IN) :: ambp
! FUNCTION PARAMETER DEFINITIONS:
! na
! INTERFACE BLOCK SPECIFICATIONS:
! na
! DERIVED TYPE DEFINITIONS:
! na
! FUNCTION LOCAL VARIABLE DECLARATIONS:
! na
!
WVDC=(2.d-7*(Temperature+KelvinConv)**0.81d0)/ambp
RETURN
END FUNCTION WVDC