| 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 EQLWindowInsideEffectiveEmiss(ConstrNum) Result(InsideLWEmiss)
          ! 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 inside
          ! 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)           :: InsideLWEmiss ! LW inside emissivity
          ! FLOW:
  EQLNum = Construct(ConstrNum)%EQLConsPtr
  InsideLWEmiss = EFFECTIVEEPSLB(CFS(EQLNum))
  RETURN
END FUNCTION EQLWindowInsideEffectiveEmiss