Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(in) | :: | SurfNum |
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 ManageInsideAdaptiveConvectionAlgo(SurfNum)
! SUBROUTINE INFORMATION:
! AUTHOR Brent Griffith
! DATE WRITTEN Aug 2010
! MODIFIED na
! RE-ENGINEERED na
! PURPOSE OF THIS SUBROUTINE:
! This subroutine manages the calculation of interior convection coefficient for a surface.
! METHODOLOGY EMPLOYED:
! This routine implements the Adaptive Convection Algorithm developed by IB-M 2000 and IB-M 2002
! - first calls a large routine, DynamicIntConvSurfaceClassification, that has most of the complex logic
! - then calls a straightforward routine that maps the classification to model equation
! - then calls a routine with a large case statement that calls model equations.
! REFERENCES:
! na
! USE STATEMENTS:
IMPLICIT NONE ! Enforce explicit typing of all variables in this routine
! SUBROUTINE ARGUMENT DEFINITIONS:
INTEGER, INTENT(IN) :: SurfNum ! surface number for which coefficients are being calculated
! SUBROUTINE PARAMETER DEFINITIONS:
! na
! INTERFACE BLOCK SPECIFICATIONS:
! na
! DERIVED TYPE DEFINITIONS:
! na
! SUBROUTINE LOCAL VARIABLE DECLARATIONS:
! this next call sets up the flow regime and assigns a classification to surface
! TODO: candidate for rework to do zone level calcs once rather than for each surface
CALL DynamicIntConvSurfaceClassification(SurfNum)
! simple worker routine takes surface classification and fills in model to use (IntConvHcModelEq) for that surface
CALL MapIntConvClassificationToHcModels(SurfNum)
CALL EvaluateIntHcModels(SurfNum, Surface(SurfNum)%IntConvHcModelEq, HconvIn(SurfNum))
RETURN
END SUBROUTINE ManageInsideAdaptiveConvectionAlgo