imexrk_substep Subroutine

private recursive subroutine imexrk_substep(minLevel, maxLevel, currentLevel, mesh_list, tree, levelPointer, kerneldata_list, statedata_list, facedata_list, source, penalizationdata_list, boundary_list, bc, scheme_list, poly_proj_pos, poly_proj_list, timestep_list, equation, material_list, general, commStateTimer)

Uses

  • proc~~imexrk_substep~~UsesGraph proc~imexrk_substep imexrk_substep module~atl_compute_module atl_compute_module proc~imexrk_substep->module~atl_compute_module env_module env_module module~atl_compute_module->env_module module~atl_eqn_lineareuler_module atl_eqn_LinearEuler_module module~atl_compute_module->module~atl_eqn_lineareuler_module module~atl_materialprp_module atl_materialPrp_module module~atl_compute_module->module~atl_materialprp_module module~atl_source_module atl_source_module module~atl_compute_module->module~atl_source_module module~atl_timer_module atl_timer_module module~atl_compute_module->module~atl_timer_module tem_aux_module tem_aux_module module~atl_compute_module->tem_aux_module tem_element_module tem_element_module module~atl_compute_module->tem_element_module tem_general_module tem_general_module module~atl_compute_module->tem_general_module tem_timer_module tem_timer_module module~atl_compute_module->tem_timer_module

Subroutine calculates a substep of the IMEX Runge-Kutta timestepping scheme.

Calls itself recursively for the finer levels until the finest level is reached.

Arguments

Type IntentOptional Attributes Name
integer, intent(in) :: minLevel

The minimum refinement level of the mesh.

integer, intent(in) :: maxLevel

The maximum refinement level of the mesh.

integer, intent(in) :: currentLevel

The level the timestep has to be performed for.

type(atl_cube_elem_type), intent(inout) :: mesh_list(minLevel:maxLevel)

List of mesh parts. For each level we have one.

type(treelmesh_type), intent(in) :: tree

treelm mesh

integer, intent(in) :: levelPointer(:)

Pointer for elements from global treeID list index to index in levelwise fluid lists

type(atl_kerneldata_type), intent(inout) :: kerneldata_list(minLevel:maxLevel)

List of kerneldatas. For each level we have one

type(atl_statedata_type), intent(inout) :: statedata_list(minLevel:maxLevel)

List of states you want to calc the rhs for. For each level we have one.

type(atl_facedata_type), intent(inout) :: facedata_list(minLevel:maxLevel)

List of faces states you want to calc the rhs for. For each level we have one.

type(atl_source_type), intent(inout) :: source

List of sources, for each level

type(atl_penalizationData_type), intent(inout) :: penalizationdata_list(minLevel:maxLevel)

List of penalization data, for each level.

type(atl_level_boundary_type), intent(inout) :: boundary_list(minLevel:maxLevel)

List of boundaries, for each level.

type(atl_boundary_type), intent(in) :: bc(:)

Global description of the boundaries

type(atl_scheme_type), intent(inout) :: scheme_list(minLevel:maxLevel)

List of schemes, for each level.

integer, intent(in) :: poly_proj_pos(minLevel:maxLevel)

List of position of projection method in unique projection list, for each level

type(ply_poly_project_type), intent(inout) :: poly_proj_list(:)

unique list for projection methods

type(atl_timestep_type), intent(inout) :: timestep_list(minLevel:maxLevel)

List of levelwise timestepping algorihtms

type(atl_Equations_type), intent(inout) :: equation

The equation you are operating with.

type(atl_material_type), intent(inout) :: material_list(minlevel:maxlevel)

Material parameter description.

type(tem_general_type), intent(inout) :: general

General treelm settings

integer, intent(inout) :: commStateTimer

Timer for measuring the communication time inside this routine.


Calls

proc~~imexrk_substep~~CallsGraph proc~imexrk_substep imexrk_substep proc~imexrk_substep->proc~imexrk_substep interface~atl_compute_rhs atl_compute_rhs proc~imexrk_substep->interface~atl_compute_rhs interface~atl_postprocess_rhs atl_postprocess_rhs proc~imexrk_substep->interface~atl_postprocess_rhs interface~atl_preprocess_rhs atl_preprocess_rhs proc~imexrk_substep->interface~atl_preprocess_rhs proc~compute_rhs_cubes compute_rhs_cubes interface~atl_compute_rhs->proc~compute_rhs_cubes proc~postprocess_rhs_cubes postprocess_rhs_cubes interface~atl_postprocess_rhs->proc~postprocess_rhs_cubes proc~preprocess_rhs_cubes preprocess_rhs_cubes interface~atl_preprocess_rhs->proc~preprocess_rhs_cubes

Called by

proc~~imexrk_substep~~CalledByGraph proc~imexrk_substep imexrk_substep proc~imexrk_substep->proc~imexrk_substep proc~mesh_timestep_imexrk mesh_timestep_imexrk proc~mesh_timestep_imexrk->proc~imexrk_substep