From: David Wells Date: Thu, 3 Apr 2025 16:50:37 +0000 (-0400) Subject: QProjector: use ReferenceCell::n_face_orientations(). X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F18327%2Fhead;p=dealii.git QProjector: use ReferenceCell::n_face_orientations(). --- diff --git a/source/base/qprojector.cc b/source/base/qprojector.cc index f5acca4ef7..9a8785dae1 100644 --- a/source/base/qprojector.cc +++ b/source/base/qprojector.cc @@ -1314,37 +1314,17 @@ QProjector::DataSetDescriptor::face( Assert(combined_orientation < reference_cell.n_face_orientations(face_no), ExcInternalError()); - static const unsigned int X = numbers::invalid_unsigned_int; - static const std::array scale_tri = {{2, 2, 2, X, X}}; - static const std::array scale_tet = {{6, 6, 6, 6, X}}; - static const std::array scale_wedge = {{6, 6, 8, 8, 8}}; - static const std::array scale_pyramid = { - {8, 6, 6, 6, 6}}; - - const auto &scale = - (reference_cell == ReferenceCells::Triangle) ? - scale_tri : - ((reference_cell == ReferenceCells::Tetrahedron) ? - scale_tet : - ((reference_cell == ReferenceCells::Wedge) ? scale_wedge : - scale_pyramid)); - if (quadrature.size() == 1) - offset = scale[0] * quadrature[0].size() * face_no; + offset = reference_cell.n_face_orientations(0) * quadrature[0].size() * + face_no; else for (unsigned int i = 0; i < face_no; ++i) - offset += scale[i] * quadrature[i].size(); + offset += + reference_cell.n_face_orientations(i) * quadrature[i].size(); - if (dim == 2) - return {offset + - combined_orientation * - quadrature[quadrature.size() == 1 ? 0 : face_no].size()}; - else if (dim == 3) - { - return {offset + - combined_orientation * - quadrature[quadrature.size() == 1 ? 0 : face_no].size()}; - } + return {offset + + combined_orientation * + quadrature[quadrature.size() == 1 ? 0 : face_no].size()}; } Assert(reference_cell == ReferenceCells::get_hypercube(),