Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=r64), | intent(in) | :: | L | |||
real(kind=r64), | intent(in) | :: | TG | |||
real(kind=r64), | intent(in) | :: | TI |
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 HIC_ASHRAE(L, TG, TI)
!
! AUTHOR ASHRAE 1311-RP
! DATE WRITTEN unknown
! MODIFIED na
! RE-ENGINEERED na
!
! PURPOSE OF THIS FUNCTION:
! Returns inside surface convective coefficient, W/m2-K
!
! METHODOLOGY EMPLOYED:
! na
!
! REFERENCES:
! Footnote on Table 2, p. 31.6 (Fenestration) HOF 2005
!
! USE STATEMENTS:
! na
IMPLICIT NONE ! Enforce explicit typing of all variables in this routine
! FUNCTION ARGUMENT DEFINITIONS:
REAL(r64), INTENT( IN) :: L ! glazing height, m
REAL(r64), INTENT( IN) :: TG ! glazing inside surf temp, C or K
REAL(r64), INTENT( IN) :: TI ! inside air temp, C or K
!
! FUNCTION PARAMETER DEFINITIONS:
! na
! INTERFACE BLOCK SPECIFICATIONS:
! na
! DERIVED TYPE DEFINITIONS:
! na
! FUNCTION LOCAL VARIABLE DECLARATIONS:
! na
! Flow
HIC_ASHRAE = 1.46d0 * (ABS( TG-TI) / MAX( L, 0.001d0))**0.25d0
RETURN
END FUNCTION HIC_ASHRAE