atl_hlleFlux_module Module

Module to collecting all data types and subroutines which are related to flux calculations.


Uses

  • module~~atl_hlleflux_module~~UsesGraph module~atl_hlleflux_module atl_hlleFlux_module module~atl_eqn_euler_module atl_eqn_euler_module module~atl_hlleflux_module->module~atl_eqn_euler_module module~env_module env_module module~atl_hlleflux_module->module~env_module module~atl_eqn_euler_module->module~env_module module~tem_aux_module tem_aux_module module~atl_eqn_euler_module->module~tem_aux_module module~aotus_module aotus_module module~atl_eqn_euler_module->module~aotus_module module~aot_out_module aot_out_module module~atl_eqn_euler_module->module~aot_out_module module~tem_logging_module tem_logging_module module~atl_eqn_euler_module->module~tem_logging_module

Used by

  • module~~atl_hlleflux_module~~UsedByGraph module~atl_hlleflux_module atl_hlleFlux_module module~atl_eqn_euler_hlp_module atl_eqn_euler_hlp_module module~atl_eqn_euler_hlp_module->module~atl_hlleflux_module proc~implicit_update implicit_update proc~implicit_update->module~atl_eqn_euler_hlp_module module~atl_equation_init_module atl_equation_init_module module~atl_equation_init_module->module~atl_eqn_euler_hlp_module module~atl_eqn_nvrstk_hlp_module atl_eqn_nvrstk_hlp_module module~atl_equation_init_module->module~atl_eqn_nvrstk_hlp_module module~atl_eqn_nvrstk_hlp_module->module~atl_eqn_euler_hlp_module module~atl_initialize_module atl_initialize_module module~atl_initialize_module->module~atl_equation_init_module module~atl_program_module atl_program_module module~atl_program_module->module~atl_initialize_module program~atl_harvesting atl_harvesting program~atl_harvesting->module~atl_initialize_module

Contents


Subroutines

public subroutine atl_HLLEuler(euler, state_left, state_right, material_left, material_right, nPoints, flux)

Calculate the HLL flux given the left an right state.

Read more…

Arguments

TypeIntentOptionalAttributesName
class(atl_euler_type), intent(in) :: euler
real(kind=rk), intent(in) :: state_left(:,:)

The state on the face from its left limit (in conservative variables).

real(kind=rk), intent(in) :: state_right(:,:)

The state on the face from its right limit (in conservative variables).

real(kind=rk), intent(in) :: material_left(:,:)

The left value of the characteristic function (stemming from penalization)

real(kind=rk), intent(in) :: material_right(:,:)

The right value of the characteristic function (stemming from penalization)

integer, intent(in) :: nPoints

Number of points to evaluate the flux at.

real(kind=rk), intent(out) :: flux(:,:)

Resulting flux for the left element (in conservative variables).

public subroutine atl_HLLEuler2D(euler, state_left, state_right, material_left, material_right, nPoints, flux)

Calculate the 2D HLL flux given the left an right state.

Read more…

Arguments

TypeIntentOptionalAttributesName
class(atl_euler_type), intent(in) :: euler
real(kind=rk), intent(in) :: state_left(:,:)

The state on the face from its left limit (in conservative variables).

real(kind=rk), intent(in) :: state_right(:,:)

The state on the face from its right limit (in conservative variables).

real(kind=rk), intent(in) :: material_left(:,:)

The left value of the characteristic function (stemming from penalization)

real(kind=rk), intent(in) :: material_right(:,:)

The right value of the characteristic function (stemming from penalization)

integer, intent(in) :: nPoints

Number of points to evaluate the flux at.

real(kind=rk), intent(out) :: flux(:,:)

Resulting flux for the left element (in conservative variables).

public subroutine atl_HLLEuler1D(euler, state_left, state_right, material_left, material_right, nPoints, flux)

Calculate the 1D HLL flux given the left an right state.

Read more…

Arguments

TypeIntentOptionalAttributesName
class(atl_euler_type), intent(in) :: euler
real(kind=rk), intent(in) :: state_left(:,:)

The state on the face from its left limit (in conservative variables).

real(kind=rk), intent(in) :: state_right(:,:)

The state on the face from its right limit (in conservative variables).

real(kind=rk), intent(in) :: material_left(:,:)

The left value of the characteristic function (stemming from penalization)

real(kind=rk), intent(in) :: material_right(:,:)

The right value of the characteristic function (stemming from penalization)

integer, intent(in) :: nPoints

Number of points to evaluate the flux at.

real(kind=rk), intent(out) :: flux(:,:)

Resulting flux for the left element (in conservative variables).