From 365c0baeaf0de98cb821f0eff4cfd12c51aa38d8 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sun, 23 Mar 2025 11:09:48 -0600 Subject: [PATCH] Fix a problem with DoFTools::map_dofs_to_support_points() and FE_Nothing. --- source/dofs/dof_tools.cc | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/source/dofs/dof_tools.cc b/source/dofs/dof_tools.cc index 13fe524a42..50904b6a76 100644 --- a/source/dofs/dof_tools.cc +++ b/source/dofs/dof_tools.cc @@ -2497,8 +2497,13 @@ namespace DoFTools std::vector local_dof_indices; for (const auto &cell : dof_handler.active_cell_iterators()) - // only work on locally relevant cells - if (cell->is_artificial() == false) + // Only work on locally relevant cells. Exclude cells + // without DoFs (e.g., if a cell has FE_Nothing associated + // with it) because that trips up internal assertions about + // using FEValues with quadrature formulas without + // quadrature points. + if ((cell->is_artificial() == false) && + (cell->get_fe().n_dofs_per_cell() > 0)) { hp_fe_values.reinit(cell); const FEValues &fe_values = -- 2.39.5