tem_intp_trilinear Interface

public interface tem_intp_trilinear

Calls

interface~~tem_intp_trilinear~~CallsGraph interface~tem_intp_trilinear tem_intp_trilinear proc~tem_intp_trilinear_scalar tem_intp_trilinear_scalar interface~tem_intp_trilinear->proc~tem_intp_trilinear_scalar proc~tem_intp_trilinear_vec tem_intp_trilinear_vec interface~tem_intp_trilinear->proc~tem_intp_trilinear_vec

Contents


Module Procedures

private function tem_intp_trilinear_scalar(srcVal, targetCoord) result(phi)

This function returns the tri-linearly interpolated values from the eight source points to the target position located at targetCoord. The source points are arranged in a square from (0,0,0)x(1,1,1) The order of the source points are according to the morton curve 1 2 3 4 (0,0,0); (1,0,0); (0,1,0); (1,1,0) 5 6 7 8 (0,0,1); (1,0,1); (0,1,1); (1,1,1)

Arguments

TypeIntentOptionalAttributesName
real(kind=rk), intent(in) :: srcVal(8)

source values of the square corners

real(kind=rk), intent(in) :: targetCoord(3)

interpolation location within the square

Return Value real(kind=rk)

interpolated value

private function tem_intp_trilinear_vec(srcVal, targetCoord, nVals) result(phi)

This function returns the tri-linearly interpolated values from the eight source points to the target position located at targetCoord. The source points are arranged in a square from (0,0,0)x(1,1,1) The order of the source points are according to the morton curve 1 2 3 4 (0,0,0); (1,0,0); (0,1,0); (1,1,0) 5 6 7 8 (0,0,1); (1,0,1); (0,1,1); (1,1,1)

Arguments

TypeIntentOptionalAttributesName
real(kind=rk), intent(in) :: srcVal(nVals,8)

source values of the square corners

real(kind=rk), intent(in) :: targetCoord(3)

interpolation location within the square

integer, intent(in) :: nVals

number of values

Return Value real(kind=rk)(nVals)

interpolated value