Nodes of different colours represent the following:
Solid arrows point from a parent (sub)module to the submodule which is descended from it. Dashed arrows point from a module being used to the module or program unit using it. Where possible, edges connecting nodes are given different colours to make them easier to distinguish in large graphs.
SUBROUTINE DeallocateLoadComponentArrays
! SUBROUTINE INFORMATION:
! AUTHOR Jason Glazer
! DATE WRITTEN August 2012
! MODIFIED na
! RE-ENGINEERED na
! PURPOSE OF THIS SUBROUTINE:
! Deallocate the arrays related to the load component report that will not
! be needed in the reporting.
! METHODOLOGY EMPLOYED:
! Use the DEALLOCATE command
! REFERENCES:
! na
! USE STATEMENTS:
! na
USE DataSurfaces, ONLY: TotSurfaces
USE DataEnvironment, ONLY: TotDesDays, TotRunDesPersDays
USE DataGlobals, ONLY: NumOfTimeStepInHour
IMPLICIT NONE
! SUBROUTINE ARGUMENT DEFINITIONS:
! na
! SUBROUTINE PARAMETER DEFINITIONS:
! na
! INTERFACE BLOCK SPECIFICATIONS:
! na
! DERIVED TYPE DEFINITIONS:
! na
! SUBROUTINE LOCAL VARIABLE DECLARATIONS:
DEALLOCATE(radiantPulseUsed)
DEALLOCATE(radiantPulseTimestep)
DEALLOCATE(radiantPulseReceived)
!need for reporting DEALLOCATE(loadConvectedNormal)
DEALLOCATE(loadConvectedWithPulse)
!need for reporting DEALLOCATE(decayCurveCool)
!need for reporting DEALLOCATE(decayCurveHeat)
END SUBROUTINE DeallocateLoadComponentArrays