From: Wolfgang Bangerth Date: Sun, 23 Mar 2025 17:09:48 +0000 (-0600) Subject: Fix a problem with DoFTools::map_dofs_to_support_points() and FE_Nothing. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=365c0baeaf0de98cb821f0eff4cfd12c51aa38d8;p=dealii.git Fix a problem with DoFTools::map_dofs_to_support_points() and FE_Nothing. --- 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 =