Skip to main content

xyFacetBasis

Returns the basis on facets parallel to the xy plane.

Interface 1

INTERFACE xyFacetBasis_Hexahedron
MODULE PURE FUNCTION xyFacetBasis_Hexahedron1( &
& n1, &
& n2, &
& x, &
& y, &
& z) &
& RESULT(ans)
INTEGER(I4B), INTENT(IN) :: n1
!! order along axis 1 of xy face
INTEGER(I4B), INTENT(IN) :: n2
!! order along axis 2 of xy face
REAL(DFP), INTENT(IN) :: x(:), y(:), z(:)
!! point of evaluation
!! these points should be between [-1, 1].
REAL(DFP) :: ans( &
& SIZE(x), &
& (n1 - 1_I4B) * (n2 - 1_I4B) * 2_I4B)
END FUNCTION xyFacetBasis_Hexahedron1
END INTERFACE xyFacetBasis_Hexahedron
n1, n2

These are order of approximations along the x and y axis.

n1,n22n_{1}, n_{2} \ge 2
x

x coordinate of all points.

y

y coordinate of all points.

z

z coordinate of all points.