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.
SUBROUTINE GatherComponentLoadsSurfAbsFact
! SUBROUTINE INFORMATION:
! AUTHOR Jason Glazer
! DATE WRITTEN September 2012
! MODIFIED na
! RE-ENGINEERED na
! PURPOSE OF THIS SUBROUTINE:
! Gather values during sizing used for surface absorption factors
! METHODOLOGY EMPLOYED:
! Save sequence of values for report during sizing.
! REFERENCES:
! na
! USE STATEMENTS:
! na
USE DataGlobals, ONLY: HourOfDay, TimeStep, NumOfZones, NumOfTimeStepInHour, CompLoadReportIsReq, isPulseZoneSizing
USE DataSizing, ONLY: CurOverallSimDay
USE DataHeatBalance, ONLY: TMULT,ITABSF
USE DataSurfaces, ONLY: TotSurfaces,Surface,SurfaceClass_TDD_Dome
USE OutputReportTabular, ONLY: ITABSFseq, TMULTseq
IMPLICIT NONE
! SUBROUTINE ARGUMENT DEFINITIONS:
! na
! SUBROUTINE PARAMETER DEFINITIONS:
! na
! INTERFACE BLOCK SPECIFICATIONS:
! na
! DERIVED TYPE DEFINITIONS:
! na
! SUBROUTINE LOCAL VARIABLE DECLARATIONS:
INTEGER :: iZone = 0
INTEGER :: jSurf = 0
INTEGER :: TimeStepInDay = 0
IF (CompLoadReportIsReq .AND. .NOT. isPulseZoneSizing) THEN
TimeStepInDay = (HourOfDay-1)*NumOfTimeStepInHour + TimeStep
DO iZone = 1, NumOfZones
TMULTseq(iZone,TimeStepInDay,CurOverallSimDay) = TMULT(iZone)
END DO
DO jSurf = 1, TotSurfaces
iZone = Surface(jSurf)%Zone
IF (.NOT. Surface(jSurf)%HeatTransSurf .OR. iZone == 0) CYCLE ! Skip non-heat transfer surfaces
IF (Surface(jSurf)%Class == SurfaceClass_TDD_Dome) CYCLE ! Skip tubular daylighting device domes
ITABSFseq(jSurf,TimeStepInDay,CurOverallSimDay) = ITABSF(jSurf)
END DO
END IF
END SUBROUTINE GatherComponentLoadsSurfAbsFact