From 0f5aabbd2a2a40599ebf4e269c9bf9aa2f114de0 Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Thu, 7 Sep 2023 20:59:35 +0200 Subject: [PATCH] Matrix-free shape info: Generate face orientation table for Raviart-Thomas --- include/deal.II/matrix_free/shape_info.templates.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/deal.II/matrix_free/shape_info.templates.h b/include/deal.II/matrix_free/shape_info.templates.h index d534befa3d..94c7622e37 100644 --- a/include/deal.II/matrix_free/shape_info.templates.h +++ b/include/deal.II/matrix_free/shape_info.templates.h @@ -307,6 +307,9 @@ namespace internal data[direction].check_and_set_shapes_symmetric(); } + if (dim == 3) + face_orientations_quad = compute_orientation_table(n_q_points_1d); + return; } else if (quad_in.is_tensor_product() == false || -- 2.39.5