atl_preprocess_rhs Interface

public interface atl_preprocess_rhs

Calls

interface~~atl_preprocess_rhs~~CallsGraph interface~atl_preprocess_rhs atl_preprocess_rhs proc~preprocess_rhs_cubes preprocess_rhs_cubes interface~atl_preprocess_rhs->proc~preprocess_rhs_cubes proc~atl_modg_modalvoltomodalface atl_modg_modalVolToModalFace proc~preprocess_rhs_cubes->proc~atl_modg_modalvoltomodalface proc~tem_stoptimer tem_stopTimer proc~preprocess_rhs_cubes->proc~tem_stoptimer proc~atl_modg_2d_set_bnd atl_modg_2d_set_bnd proc~preprocess_rhs_cubes->proc~atl_modg_2d_set_bnd proc~tem_starttimer tem_startTimer proc~preprocess_rhs_cubes->proc~tem_starttimer proc~atl_modg_ensure_pos_facemean atl_modg_ensure_pos_facemean proc~preprocess_rhs_cubes->proc~atl_modg_ensure_pos_facemean proc~atl_modg_2d_coarsetofineface atl_modg_2d_coarseToFineFace proc~preprocess_rhs_cubes->proc~atl_modg_2d_coarsetofineface proc~atl_modg_1d_modalvoltomodalface atl_modg_1d_modalVolToModalFace proc~preprocess_rhs_cubes->proc~atl_modg_1d_modalvoltomodalface proc~atl_modg_set_bnd atl_modg_set_bnd proc~preprocess_rhs_cubes->proc~atl_modg_set_bnd proc~atl_preprocess_modg_kernel atl_preprocess_modg_kernel proc~preprocess_rhs_cubes->proc~atl_preprocess_modg_kernel proc~atl_eqn_update_background atl_eqn_update_background proc~preprocess_rhs_cubes->proc~atl_eqn_update_background proc~tem_abort tem_abort proc~preprocess_rhs_cubes->proc~tem_abort proc~atl_modg_2d_ensure_pos_facemean atl_modg_2d_ensure_pos_facemean proc~preprocess_rhs_cubes->proc~atl_modg_2d_ensure_pos_facemean proc~atl_preprocess_modg_1d_kernel atl_preprocess_modg_1d_kernel proc~preprocess_rhs_cubes->proc~atl_preprocess_modg_1d_kernel proc~atl_preprocess_modg_2d_kernel atl_preprocess_modg_2d_kernel proc~preprocess_rhs_cubes->proc~atl_preprocess_modg_2d_kernel proc~atl_modg_1d_ensure_pos_face atl_modg_1d_ensure_pos_face proc~preprocess_rhs_cubes->proc~atl_modg_1d_ensure_pos_face proc~atl_modg_2d_modalvoltomodalface atl_modg_2d_modalVolToModalFace proc~preprocess_rhs_cubes->proc~atl_modg_2d_modalvoltomodalface proc~atl_modg_coarsetofineface atl_modg_coarseToFineFace proc~preprocess_rhs_cubes->proc~atl_modg_coarsetofineface proc~atl_modg_1d_set_bnd atl_modg_1d_set_bnd proc~preprocess_rhs_cubes->proc~atl_modg_1d_set_bnd proc~atl_modg_1d_coarsetofineface atl_modg_1d_coarseToFineFace proc~preprocess_rhs_cubes->proc~atl_modg_1d_coarsetofineface

Called by

interface~~atl_preprocess_rhs~~CalledByGraph interface~atl_preprocess_rhs atl_preprocess_rhs proc~rk2_substep rk2_substep proc~rk2_substep->interface~atl_preprocess_rhs proc~rk2_substep->proc~rk2_substep proc~rk4_substep rk4_substep proc~rk4_substep->interface~atl_preprocess_rhs proc~rk4_substep->proc~rk4_substep proc~rktaylor_substep rktaylor_substep proc~rktaylor_substep->interface~atl_preprocess_rhs proc~rktaylor_substep->proc~rktaylor_substep proc~mesh_timestep_euler mesh_timestep_euler proc~mesh_timestep_euler->interface~atl_preprocess_rhs proc~mesh_timestep_euler->proc~mesh_timestep_euler proc~global_corrector_substep global_corrector_substep proc~global_corrector_substep->interface~atl_preprocess_rhs proc~imexrk_substep imexrk_substep proc~imexrk_substep->interface~atl_preprocess_rhs proc~imexrk_substep->proc~imexrk_substep proc~mesh_timestep_ssprk2 mesh_timestep_ssprk2 proc~mesh_timestep_ssprk2->proc~rk2_substep proc~mesh_timestep_predcor_cerk4 mesh_timestep_predcor_cerk4 proc~mesh_timestep_predcor_cerk4->proc~global_corrector_substep proc~mesh_timestep_imexrk mesh_timestep_imexrk proc~mesh_timestep_imexrk->proc~imexrk_substep proc~mesh_timestep_rktaylor mesh_timestep_rktaylor proc~mesh_timestep_rktaylor->proc~rktaylor_substep

Contents


Module Procedures

private subroutine preprocess_rhs_cubes(minLevel, maxLevel, currentLevel, mesh_list, tree, statedata_list, facedata_list, boundary_list, bc, scheme_list, poly_proj_list, equation, material_list, general)

compute the right hand side of your discrete equation.

Read more…

Arguments

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

The minimum level of the mesh.

integer, intent(in) :: maxLevel

The maximum level of the mesh.

integer, intent(in) :: currentLevel

the level to compute on

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

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 face states you want to calc the rhs for. For each level we have one.

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

List of boundaries, for each level.

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

The global boundary description.

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

List of schemes, for each level.

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

unique list for projection methods

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

The equation you are operating with.

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

Information about the material parameters of the equation.

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

General treelm settings.