Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(in) | :: | ConstrNum |
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.
FUNCTION EQLWindowOutsideEffectiveEmiss(ConstrNum) Result(OutSideLWEmiss)
! FUNCTION INFORMATION:
! AUTHOR Bereket A Nigusse
! DATE WRITTEN May 2013
! MODIFIED na
! RE-ENGINEERED na
! PURPOSE OF THIS FUNCTION:
! Given the consruction number, returns the equivalent layer outside
! face effective longwave emmisivity.
! METHODOLOGY EMPLOYED:
! na
! REFERENCES: na
! USE STATEMENTS:
! na
IMPLICIT NONE ! Enforce explicit typing of all variables in this routine
! FUNCTION ARGUMENT DEFINITIONS:
INTEGER, INTENT(IN) :: ConstrNum
!
! FUNCTION PARAMETER DEFINITIONS:
! na
! INTERFACE BLOCK SPECIFICATIONS
! na
! DERIVED TYPE DEFINITIONS
! na
! FUNCTION LOCAL VARIABLE DECLARATIONS:
INTEGER :: EQLNum ! EQL Window object number
REAL(r64) :: OutSideLWEmiss ! LW outside emissivity
! FLOW:
EQLNum = Construct(ConstrNum)%EQLConsPtr
OutSideLWEmiss = EFFECTIVEEPSLF(CFS(EQLNum))
RETURN
END FUNCTION EQLWindowOutsideEffectiveEmiss