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 AdditionalInit_ESAtmo3D_t(this)implicit none class(ESAtmo3D_t),intent(inout)::this! Localprocedure(SELF_bcMethod),pointer::bcfuncbcfunc=>hbc3d_NoNormalFlow_ESAtmo3Dcall this%hyperbolicBCs%RegisterBoundaryCondition(&SELF_BC_NONORMALFLOW,"no_normal_flow",bcfunc)! Parabolic BC for the same wall tag: zero diffusive normal flux! (no-stress / no-heat-flux). hyperbolicBCs and parabolicBCs are! independent linked lists, so registering the same tag here does! not clobber the hyperbolic registration above.bcfunc=>pbc3d_NoStress_ESAtmo3Dcall this%parabolicBCs%RegisterBoundaryCondition(&SELF_BC_NONORMALFLOW,"no_normal_flow",bcfunc)! Diffusive-flux scratch buffers. Always allocated (memory cost is! modest); only used when nu>0 or kappa>0 (and gradient_enabled is! therefore .true.).call this%diffFlux%Init(this%solution%interp,this%nvar,this%mesh%nElem)call this%diffFlux%AssociateGeometry(this%geometry)call this%diffDiv%Init(this%solution%interp,this%nvar,this%mesh%nElem)endsubroutine AdditionalInit_ESAtmo3D_t