]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Fix a problem with DoFTools::map_dofs_to_support_points() and FE_Nothing.
authorWolfgang Bangerth <bangerth@colostate.edu>
Sun, 23 Mar 2025 17:09:48 +0000 (11:09 -0600)
committerWolfgang Bangerth <bangerth@colostate.edu>
Sun, 23 Mar 2025 17:09:48 +0000 (11:09 -0600)
source/dofs/dof_tools.cc

index 13fe524a42f25365c1d6862ea72a338f4a012b2f..50904b6a76a69a4177e962d44f493a6bd7a6173f 100644 (file)
@@ -2497,8 +2497,13 @@ namespace DoFTools
 
         std::vector<types::global_dof_index> 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<dim, spacedim> &fe_values =

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.