atl_eqn_lineareuler_derive_module Module

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


Uses

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

Used by

  • module~~atl_eqn_lineareuler_derive_module~~UsedByGraph module~atl_eqn_lineareuler_derive_module atl_eqn_lineareuler_derive_module module~atl_eqn_lineareuler_var_module atl_eqn_LinearEuler_var_module module~atl_eqn_lineareuler_var_module->module~atl_eqn_lineareuler_derive_module module~atl_eqn_lineareuler_hlp_module atl_eqn_LinearEuler_hlp_module module~atl_eqn_lineareuler_hlp_module->module~atl_eqn_lineareuler_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

Contents


Subroutines

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

Arguments

TypeIntentOptionalAttributesName
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.

Dimension: n requested entries x nComponents of this variable Access: (iElem-1)*fun%nComponents + iComp

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

Arguments

TypeIntentOptionalAttributesName
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.

Linearized array dimension: (n requested entries) x (nComponents of this variable) x (nDegrees of freedom) Access: (iElem-1)fun%nComponentsnDofs + (iDof-1)*fun%nComponents + iComp