Skip to main content

LagrangeInDOF

Returns the total number of degrees of freedom internal to hexahedron.

The total number of degree of freedom is given by:

tdof=(p1)(q1)(r1)t_{dof}=(p-1)*(q-1)*(r-1)

Interface 1

INTERFACE LagrangeInDOF_Hexahedron
MODULE PURE FUNCTION LagrangeInDOF_Hexahedron1(order) RESULT(ans)
INTEGER(I4B), INTENT(IN) :: order
INTEGER(I4B) :: ans
END FUNCTION LagrangeInDOF_Hexahedron1
END INTERFACE LagrangeInDOF_Hexahedron

Interface 2

INTERFACE LagrangeInDOF_Hexahedron
MODULE PURE FUNCTION LagrangeInDOF_Hexahedron2(p, q, r) RESULT(ans)
INTEGER(I4B), INTENT(IN) :: p, q, r
INTEGER(I4B) :: ans
END FUNCTION LagrangeInDOF_Hexahedron2
END INTERFACE LagrangeInDOF_Hexahedron