atl_eqn_lineareuler_2d_derive_module Module

Routines to derive quantities from the state in the linearized Euler equation


Uses

  • module~~atl_eqn_lineareuler_2d_derive_module~~UsesGraph module~atl_eqn_lineareuler_2d_derive_module atl_eqn_lineareuler_2d_derive_module env_module env_module module~atl_eqn_lineareuler_2d_derive_module->env_module iso_c_binding iso_c_binding module~atl_eqn_lineareuler_2d_derive_module->iso_c_binding module~atl_eqn_lineareuler_module atl_eqn_LinearEuler_module module~atl_eqn_lineareuler_2d_derive_module->module~atl_eqn_lineareuler_module module~atl_varsys_module atl_varSys_module module~atl_eqn_lineareuler_2d_derive_module->module~atl_varsys_module tem_time_module tem_time_module module~atl_eqn_lineareuler_2d_derive_module->tem_time_module tem_varSys_module tem_varSys_module module~atl_eqn_lineareuler_2d_derive_module->tem_varSys_module treelmesh_module treelmesh_module module~atl_eqn_lineareuler_2d_derive_module->treelmesh_module

Used by

  • module~~atl_eqn_lineareuler_2d_derive_module~~UsedByGraph module~atl_eqn_lineareuler_2d_derive_module atl_eqn_lineareuler_2d_derive_module module~atl_eqn_lineareuler_2d_var_module atl_eqn_LinearEuler_2d_var_module module~atl_eqn_lineareuler_2d_var_module->module~atl_eqn_lineareuler_2d_derive_module module~atl_eqn_lineareuler_hlp_module atl_eqn_LinearEuler_hlp_module module~atl_eqn_lineareuler_hlp_module->module~atl_eqn_lineareuler_2d_var_module module~atl_equation_init_module atl_equation_init_module module~atl_equation_init_module->module~atl_eqn_lineareuler_hlp_module module~atl_initialize_module atl_initialize_module module~atl_initialize_module->module~atl_equation_init_module

Subroutines

public subroutine atl_linEuler_2d_completState_getPoint(fun, varSys, point, time, tree, nPnts, res)

Arguments

Type IntentOptional Attributes Name
class(tem_varSys_op_type), intent(in) :: fun

Description of the method to obtain the variables, here some preset values might be stored, like the space time function to use or the required variables.

type(tem_varSys_type), intent(in) :: varSys

The variable system to obtain the variable from.

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

Three-dimensional coordinates at which the variable should be evaluated. Only useful for variables provided as space-time functions.

type(tem_time_type), intent(in) :: time

Point in time at which to evaluate the variable.

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

global treelm mesh info

integer, intent(in) :: nPnts

Number of values to obtain for this variable (vectorized access).

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

Resulting values for the requested variable.

Read more…

public subroutine atl_linEuler_2d_completState_getElement(fun, varSys, elempos, time, tree, nElems, nDofs, res)

Arguments

Type IntentOptional Attributes Name
class(tem_varSys_op_type), intent(in) :: fun

Description of the method to obtain the variables, here some preset values might be stored, like the space time function to use or the required variables.

type(tem_varSys_type), intent(in) :: varSys

The variable system to obtain the variable from.

integer, intent(in) :: elempos(:)

TreeID of the element to get the variable for.

type(tem_time_type), intent(in) :: time

Point in time at which to evaluate the variable.

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

global treelm mesh info

integer, intent(in) :: nElems

Number of values to obtain for this variable (vectorized access).

integer, intent(in) :: nDofs

Number of degrees of freedom within an element.

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

Resulting values for the requested variable.

Read more…