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.
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 ManageWeather ! Main driver routine for this module
! SUBROUTINE INFORMATION:
! AUTHOR Rick Strand
! DATE WRITTEN May 1997
! MODIFIED June 1997 (general clean-up)
! RE-ENGINEERED na
! PURPOSE OF THIS SUBROUTINE:
! This subroutine is the main driver of the weather manager module.
! It controls the assignment of weather related global variables as
! well as the reads and writes for weather information.
! METHODOLOGY EMPLOYED:
! Standard EnergyPlus "manager" methodology.
! 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:
LOGICAL, SAVE :: PrintEnvrnStamp = .FALSE. ! Set to true when the environment header should be printed
! FLOW:
CALL InitializeWeather(PrintEnvrnStamp)
CALL SetCurrentWeather
CALL ReportWeatherAndTimeInformation(PrintEnvrnStamp)
RETURN
END SUBROUTINE ManageWeather