Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(in) | :: | NodeNumber |
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 CheckOutAirNodeNumber(NodeNumber) RESULT(Okay)
! FUNCTION INFORMATION:
! AUTHOR Linda Lawrie
! DATE WRITTEN Feb 2007
! MODIFIED na
! RE-ENGINEERED na
! PURPOSE OF THIS FUNCTION:
! Provide a entry into the OutAirNode List for checking from other routines.
! 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) :: NodeNumber ! Number of node to check to see if in Outside Air list
LOGICAL :: Okay ! True if found, false if not
! FUNCTION PARAMETER DEFINITIONS:
! na
! INTERFACE BLOCK SPECIFICATIONS:
! na
! DERIVED TYPE DEFINITIONS:
! na
! FUNCTION LOCAL VARIABLE DECLARATIONS:
! na
IF (GetOutAirNodesInputFlag) THEN ! First time subroutine has been entered
CALL GetOutAirNodesInput ! Get Out Air Nodes data
GetOutAirNodesInputFlag = .FALSE.
CALL SetOutAirNodes
END IF
IF (ANY(OutsideAirNodeList == NodeNumber)) THEN
Okay=.true.
ELSE
Okay=.false.
ENDIF
RETURN
END FUNCTION CheckOutAirNodeNumber