From aad598ddc4a3bf64bf359a69281ecfe468cba698 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Del=20Pino?= <stephane.delpino44@gmail.com> Date: Fri, 6 Aug 2021 10:11:30 +0200 Subject: [PATCH] Fix face area/length calculation (used the obsolete L2Norm function) --- src/mesh/MeshData.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesh/MeshData.hpp b/src/mesh/MeshData.hpp index b312e4a8e..c8c28fb41 100644 --- a/src/mesh/MeshData.hpp +++ b/src/mesh/MeshData.hpp @@ -85,7 +85,7 @@ class MeshData : public IMeshData FaceValue<double> ll{m_mesh.connectivity()}; parallel_for( - m_mesh.numberOfFaces(), PUGS_LAMBDA(FaceId face_id) { ll[face_id] = L2Norm(Nl[face_id]); }); + m_mesh.numberOfFaces(), PUGS_LAMBDA(FaceId face_id) { ll[face_id] = l2Norm(Nl[face_id]); }); m_ll = ll; } -- GitLab