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.
SUBROUTINE SimReturnAirPath
! SUBROUTINE INFORMATION:
! AUTHOR: Russ Taylor
! DATE WRITTEN: Nov 1997
! PURPOSE OF THIS SUBROUTINE: This subroutine
! METHODOLOGY EMPLOYED:
! REFERENCES:
! USE STATEMENTS:
IMPLICIT NONE
INTEGER :: ReturnAirPathNum
Logical,Save :: GetInputFlag = .True. ! Flag set to make sure you get input once
! Obtains and Allocates Mixer related parameters from input file
IF (GetInputFlag) THEN !First time subroutine has been entered
CALL GetReturnAirPathInput
GetInputFlag = .FALSE.
END IF
DO ReturnAirPathNum=1,NumReturnAirPaths
CALL CalcReturnAirPath(ReturnAirPathNum)
END DO
END SUBROUTINE SimReturnAirPath