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.
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 GenOutputVariablesAuditReport
! SUBROUTINE INFORMATION:
! AUTHOR Linda Lawrie
! DATE WRITTEN February 2000
! MODIFIED na
! RE-ENGINEERED na
! PURPOSE OF THIS SUBROUTINE:
! This subroutine reports (to the .err file) any report variables
! which were requested but not "setup" during the run. These will
! either be items that were not used in the IDF file or misspellings
! of report variable names.
! METHODOLOGY EMPLOYED:
! Use flagged data structure in OutputProcessor.
! REFERENCES:
! na
! USE STATEMENTS:
USE DataPrecisionGlobals
USE OutputProcessor
USE DataGlobals, ONLY: DisplayAdvancedReportVariables
USE DataInterfaces, ONLY: ShowWarningError, ShowMessage, ShowContinueError
USE InputProcessor, ONLY: MakeUPPERCase
IMPLICIT NONE ! Enforce explicit typing of all variables in this routine
! SUBROUTINE ARGUMENT DEFINITIONS:
! na
! SUBROUTINE PARAMETER DEFINITIONS:
CHARACTER(len=*), PARAMETER, DIMENSION(-1:4) :: ReportFrequency =(/'Detailed','Timestep','Hourly ', &
'Daily ','Monthly ','Annual '/)
! INTERFACE BLOCK SPECIFICATIONS:
! na
! DERIVED TYPE DEFINITIONS:
! na
! SUBROUTINE LOCAL VARIABLE DECLARATIONS:
LOGICAL :: Rept=.false.
INTEGER :: Loop
LOGICAL,SAVE :: OpaqSurfWarned=.false.
DO Loop=1,NumOfReqVariables
IF (ReqRepVars(Loop)%Used) CYCLE
IF (ReqRepVars(Loop)%Key == ' ') ReqRepVars(Loop)%Key='*'
IF (INDEX(ReqRepVars(Loop)%VarName,'OPAQUE SURFACE INSIDE FACE CONDUCTION') > 0 .and. &
.not. DisplayAdvancedReportVariables .and. .not. OpaqSurfWarned) THEN
CALL ShowWarningError('Variables containing "Opaque Surface Inside Face Conduction" are now "advanced" variables.')
CALL ShowContinueError('You must enter the "Output:Diagnostics,DisplayAdvancedReportVariables;" statement to view.')
CALL ShowContinueError('First, though, read cautionary statements in the "InputOutputReference" document.')
OpaqSurfWarned=.true.
ENDIF
IF (.not. Rept) THEN
CALL ShowWarningError('The following Report Variables were requested but not generated')
CALL ShowContinueError('because IDF did not contain these elements or misspelled variable name -- check .rdd file')
Rept=.true.
ENDIF
CALL ShowMessage('Key='//TRIM(ReqRepVars(Loop)%Key)//', VarName='//TRIM(ReqRepVars(Loop)%VarName)// &
', Frequency='//TRIM(ReportFrequency(ReqRepVars(Loop)%ReportFreq)))
ENDDO
RETURN
END SUBROUTINE GenOutputVariablesAuditReport