This function returns the sigma for the radial viscosity spongelayer for 2D and 3D from treeIDs
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(tem_spongeLayer_radial_type) | :: | me |
Spacetime function to evaluate |
|||
integer(kind=long_k), | intent(in) | :: | treeIds(n) |
treeIds of elements in given level |
||
type(treelmesh_type), | intent(in) | :: | tree |
global treelm mesh |
||
integer, | intent(in) | :: | nDim |
Dimension |
||
integer, | intent(in) | :: | n |
Number of arrays to return |
return value
function spongelayer_radial_scalar_for_treeIDs(me, treeids, tree, nDim, n) & & result(res) ! -------------------------------------------------------------------------- !> Spacetime function to evaluate type(tem_spongeLayer_radial_type) :: me !> Number of arrays to return integer, intent(in) :: n !> global treelm mesh type( treelmesh_type ), intent(in) ::tree !> treeIds of elements in given level integer(kind=long_k), intent(in) :: treeIds(n) !> Dimension integer, intent(in) :: nDim !> return value real(kind=rk) :: res(n) ! -------------------------------------------------------------------------- select case (trim(me%dampProfile)) case ('linear', 'exponential') res(:) = spongeLayer_radial_expon_for_treeIDs(me, treeIDs, tree, nDim, n) case ('polynomial_n5') res(:) = spongeLayer_radial_polyn5_for_treeIDs(me, treeIDs, tree, nDim, n) case ('polynomial_n6') res(:) = spongeLayer_radial_polyn6_for_treeIDs(me, treeIDs, tree, nDim, n) end select end function spongelayer_radial_scalar_for_treeIDs