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 CalcStaticProperties
! SUBROUTINE INFORMATION:
! AUTHOR Joe Klems
! DATE WRITTEN <date_written>
! MODIFIED na
! RE-ENGINEERED na
! PURPOSE OF THIS SUBROUTINE:
! Calculates those optical properties of all the Complex Fenestrations that
! do not depend on the beam direction (hence, on hour and time step)
! METHODOLOGY EMPLOYED:
! <description>
! REFERENCES:
! na
! USE STATEMENTS:
USE vectors
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:
INTEGER :: ISurf =0 !Index for sorting thru Surface array
INTEGER :: IConst =0 !Index for accessing Construct array
INTEGER :: IState =0 !Index identifying the window state for a particular window
INTEGER :: IWind =0 !Index identifying a window in the WindowList
INTEGER :: I =0 !general purpose index
INTEGER :: J =0 !general purpose index
INTEGER :: K =0 !general purpose index
INTEGER :: NumStates =0 !local copy of no of states
!
!
DO IWind = 1 , NumComplexWind
ISurf = WindowList( IWind )%SurfNo
NumStates = WindowList( IWind )%NumStates
DO IState = 1, NumStates
! IConst = WindowStateList ( IWind , IState )%Konst
SurfaceWindow(ISurf)%ComplexFen%State(IState)%Konst = WindowStateList (IWind ,IState)%Konst
CALL CalcWindowStaticProperties(ISurf, IState, ComplexWind(ISurf), &
ComplexWind(ISurf)%Geom(IState), SurfaceWindow(ISurf)%ComplexFen%State(IState))
END DO
END DO
RETURN
END SUBROUTINE CalcStaticProperties