From 3bfdc28d8af4c21a3a4f92a86bb2115967ab26ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jesus=20Mart=C3=ADnez?= Date: Sat, 14 Feb 2026 10:11:36 +0000 Subject: [PATCH] Exports the L2 projection operator Exports the L2_Projection function from the ComputationalModels module. This allows users to directly access and utilize the L2 projection functionality. --- src/ComputationalModels/ComputationalModels.jl | 2 +- src/Exports.jl | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/ComputationalModels/ComputationalModels.jl b/src/ComputationalModels/ComputationalModels.jl index 3f850de..a4fb83b 100644 --- a/src/ComputationalModels/ComputationalModels.jl +++ b/src/ComputationalModels/ComputationalModels.jl @@ -90,5 +90,5 @@ export reset! export interpolate_L2_tensor export interpolate_L2_vector export interpolate_L2_scalar - +export L2_Projection end diff --git a/src/Exports.jl b/src/Exports.jl index 56cc837..c090aae 100644 --- a/src/Exports.jl +++ b/src/Exports.jl @@ -139,7 +139,8 @@ end @publish ComputationalModels evaluate! @publish ComputationalModels InterpolableBC @publish ComputationalModels InterpolableBC! -@publish ComputationalModels TrialFESpace! # Exporting internal function of Gridap +@publish ComputationalModels TrialFESpace! # Exporting internal function of Gridap +@publish ComputationalModels L2_Projection # Note: the files FaceLabeling, CartesianTags and Evolution functions should be moved to a module different than ComputationalModels @publish ComputationalModels add_tag_from_vertex_filter!