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 CalcBeamSolDiffuseReflFactors
! SUBROUTINE INFORMATION:
! AUTHOR Fred Winkelmann
! DATE WRITTEN September 2003
! MODIFIED TH 4/6/2010, fixed CR 7872
! RE-ENGINEERED B. Griffith, October 2012, for timestep integrated solar
! PURPOSE OF THIS SUBROUTINE:
! manage calculations for factors for irradiance on exterior heat transfer surfaces due to
! beam-to-diffuse solar reflection from obstructions and ground.
! METHODOLOGY EMPLOYED: call worker routine depending on solar calculation method
! REFERENCES: na
! USE STATEMENTS: na
USE DataGlobals, ONLY: HourOfDay
USE DataSystemVariables, ONLY: DetailedSolarTimestepIntegration
IMPLICIT NONE ! Enforce explicit typing of all variables in this routine
! SUBROUTINE PARAMETER DEFINITIONS: na
! INTERFACE BLOCK SPECIFICATIONS: na
! DERIVED TYPE DEFINITIONS: na
! SUBROUTINE LOCAL VARIABLE DECLARATIONS:
INTEGER :: IHr =0 ! Hour number
! FLOW:
IF (.NOT. DetailedSolarTimestepIntegration) THEN
IF(BeginSimFlag) THEN
CALL DisplayString('Calculating Beam-to-Diffuse Exterior Solar Reflection Factors')
ELSE
CALL DisplayString('Updating Beam-to-Diffuse Exterior Solar Reflection Factors')
END IF
ReflFacBmToDiffSolObs = 0.d0
ReflFacBmToDiffSolGnd = 0.d0
DO IHr = 1,24
CALL FigureBeamSolDiffuseReflFactors(IHr)
ENDDO ! End of IHr loop
ELSE ! timestep integrated solar, use current hour of day
ReflFacBmToDiffSolObs(1:TotSurfaces,HourOfDay) = 0.d0
ReflFacBmToDiffSolGnd(1:TotSurfaces,HourOfDay) = 0.d0
CALL FigureBeamSolDiffuseReflFactors(HourOfDay)
ENDIF
RETURN
END SUBROUTINE CalcBeamSolDiffuseReflFactors