From 456894f0e6f0f6358a9b700c69fb002a5b495ede Mon Sep 17 00:00:00 2001 From: David Wells Date: Thu, 29 Jul 2021 15:52:46 -0400 Subject: [PATCH] Convert some (mislabeled) boundary ids to manifold ids. --- source/fe/mapping_fe.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/source/fe/mapping_fe.cc b/source/fe/mapping_fe.cc index 9362d01ae6..7a19a1b6c3 100644 --- a/source/fe/mapping_fe.cc +++ b/source/fe/mapping_fe.cc @@ -2242,10 +2242,10 @@ namespace check_all_manifold_ids_identical( const TriaIterator> &cell) { - const auto b_id = cell->manifold_id(); + const auto m_id = cell->manifold_id(); for (const auto f : cell->face_indices()) - if (b_id != cell->face(f)->manifold_id()) + if (m_id != cell->face(f)->manifold_id()) return false; return true; @@ -2258,14 +2258,14 @@ namespace check_all_manifold_ids_identical( const TriaIterator> &cell) { - const auto b_id = cell->manifold_id(); + const auto m_id = cell->manifold_id(); for (const auto f : cell->face_indices()) - if (b_id != cell->face(f)->manifold_id()) + if (m_id != cell->face(f)->manifold_id()) return false; for (const auto l : cell->line_indices()) - if (b_id != cell->line(l)->manifold_id()) + if (m_id != cell->line(l)->manifold_id()) return false; return true; @@ -2282,7 +2282,7 @@ MappingFE::compute_mapping_support_points( Assert( check_all_manifold_ids_identical(cell), ExcMessage( - "All entities of a cell need to have the same boundary id as the cell has.")); + "All entities of a cell need to have the same manifold id as the cell has.")); std::vector> vertices(cell->n_vertices()); -- 2.39.5