Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(in) | :: | OAMixerNumber |
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 GetOAMixerMixedNodeNumber(OAMixerNumber) RESULT(OAMixerMixedNodeNumber)
! FUNCTION INFORMATION:
! AUTHOR Brent Griffith
! DATE WRITTEN December 2006
! MODIFIED na
! RE-ENGINEERED na
! PURPOSE OF THIS FUNCTION:
! After making sure get input is done, the mixer mixed air node number of indicated
! mixer is returned.
! METHODOLOGY EMPLOYED:
! followed Linda Lawrie's GetOAMixerInletNodeNumber
! REFERENCES:
! na
! USE STATEMENTS:
! na
IMPLICIT NONE ! Enforce explicit typing of all variables in this routine
! FUNCTION ARGUMENT DEFINITIONS:
INTEGER, INTENT(IN) :: OAMixerNumber ! Which Mixer
INTEGER :: OAMixerMixedNodeNumber ! Mixer Inlet Node Number
! FUNCTION PARAMETER DEFINITIONS:
! na
! INTERFACE BLOCK SPECIFICATIONS:
! na
! DERIVED TYPE DEFINITIONS:
! na
! FUNCTION LOCAL VARIABLE DECLARATIONS:
! na
IF (GetOAMixerInputFlag) THEN
CALL GetOAMixerInputs
GetOAMixerInputFlag=.false.
ENDIF
OAMixerMixedNodeNumber=0
IF (OAMixerNumber > 0 .and. OAMixerNumber <= NumOAMixers) THEN
OAMixerMixedNodeNumber=OAMixer(OAMixerNumber)%MixNode
ENDIF
RETURN
END FUNCTION GetOAMixerMixedNodeNumber