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 InitSecretObjects
! SUBROUTINE INFORMATION:
! AUTHOR Linda K. Lawrie
! DATE WRITTEN March 2003
! MODIFIED na
! RE-ENGINEERED na
! PURPOSE OF THIS SUBROUTINE:
! This subroutine holds a set of objects that are either exact replacements for existing
! objects or objects which are deleted. If these are encountered in a user input file, they
! will be flagged with a warning message but will not cause termination. This routine allocates
! and builds an internal structure used by the InputProcessor.
! METHODOLOGY EMPLOYED:
! na
! REFERENCES:
! na
! USE STATEMENTS:
! na
IMPLICIT NONE ! Enforce explicit typing of all variables in this routine
! SUBROUTINE ARGUMENT DEFINITIONS:
! na
! SUBROUTINE PARAMETER DEFINITIONS:
! na
! INTERFACE BLOCK SPECIFICATIONS
! na
! DERIVED TYPE DEFINITIONS
! na
! SUBROUTINE LOCAL VARIABLE DECLARATIONS:
! na
NumSecretObjects=5
ALLOCATE(RepObjects(NumSecretObjects))
RepObjects(1)%OldName='SKY RADIANCE DISTRIBUTION'
RepObjects(1)%Deleted=.true.
RepObjects(2)%OldName='SURFACE:SHADING:DETACHED'
RepObjects(2)%NewName='Shading:Site:Detailed'
RepObjects(3)%OldName='AIRFLOW MODEL'
RepObjects(3)%Deleted=.true.
RepObjects(4)%OldName='AIRFLOWNETWORK:MULTIZONE:SITEWINDCONDITIONS'
RepObjects(4)%Deleted=.true.
RepObjects(5)%OldName='OUTPUT:REPORTS'
RepObjects(5)%NewName='various - depends on fields'
RepObjects(5)%Deleted=.true.
RepObjects(5)%TransitionDefer=.true. ! defer transition until ready to write IDF Record
RETURN
END SUBROUTINE InitSecretObjects