From 5468e7e196010918337607fc759901947e0d3f1c Mon Sep 17 00:00:00 2001 From: Knut Andreas Meyer Date: Fri, 2 Aug 2024 13:48:16 +0200 Subject: [PATCH 1/2] Add updated function names in devdocs --- docs/src/devdocs/interpolations.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/src/devdocs/interpolations.md b/docs/src/devdocs/interpolations.md index cc85a76046..c3a5743813 100644 --- a/docs/src/devdocs/interpolations.md +++ b/docs/src/devdocs/interpolations.md @@ -11,13 +11,15 @@ parametrized by the reference element and its characteristic order. Ferrite.getrefdim(::Interpolation) Ferrite.getrefshape(::Interpolation) Ferrite.getorder(::Interpolation) -Ferrite.shape_gradient(::Interpolation, ::Vec, ::Int) -Ferrite.shape_gradient_and_value +Ferrite.reference_shape_gradient(::Interpolation, ::Vec, ::Int) +Ferrite.reference_shape_gradient_and_value(::Interpolation, ::Vec, ::Int) +Ferrite.reference_shape_hessian_gradient_and_value(::Interpolation, ::Vec, ::Int) Ferrite.boundarydof_indices Ferrite.dirichlet_boundarydof_indices Ferrite.reference_shape_values! -Ferrite.shape_gradients! -Ferrite.shape_gradients_and_values! +Ferrite.reference_shape_gradients! +Ferrite.reference_shape_gradients_and_values! +Ferrite.reference_shape_hessians_gradients_and_values! ``` ### Required methods to implement for all subtypes of `Interpolation` to define a new finite element From a3252db6b480a154dc8c37765dd83fa98aa3166e Mon Sep 17 00:00:00 2001 From: Knut Andreas Meyer Date: Fri, 2 Aug 2024 14:02:24 +0200 Subject: [PATCH 2/2] Fix missed entry --- docs/src/devdocs/interpolations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/devdocs/interpolations.md b/docs/src/devdocs/interpolations.md index c3a5743813..852333908d 100644 --- a/docs/src/devdocs/interpolations.md +++ b/docs/src/devdocs/interpolations.md @@ -27,7 +27,7 @@ Ferrite.reference_shape_hessians_gradients_and_values! Depending on the dimension of the reference element the following functions have to be implemented ```@docs -Ferrite.shape_value(::Interpolation, ::Vec, ::Int) +Ferrite.reference_shape_value(::Interpolation, ::Vec, ::Int) Ferrite.vertexdof_indices(::Interpolation) Ferrite.dirichlet_vertexdof_indices(::Interpolation) Ferrite.facedof_indices(::Interpolation)