From: Martin Kronbichler Date: Sun, 5 Apr 2020 11:42:57 +0000 (+0200) Subject: Fix bug in VectorTools::get_position_vector for high order mappings X-Git-Tag: v9.2.0-rc1~283^2~3 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2913042ec7a05c7626e55da16795f628d862b100;p=dealii.git Fix bug in VectorTools::get_position_vector for high order mappings --- diff --git a/include/deal.II/numerics/vector_tools.templates.h b/include/deal.II/numerics/vector_tools.templates.h index 8bce666efa..18917f863f 100644 --- a/include/deal.II/numerics/vector_tools.templates.h +++ b/include/deal.II/numerics/vector_tools.templates.h @@ -9697,7 +9697,7 @@ namespace VectorTools { const Quadrature quad(fe.get_unit_support_points()); - MappingQ map_q(fe.degree); + MappingQGeneric map_q(fe.degree); FEValues fe_v(map_q, fe, quad, update_quadrature_points); std::vector dofs(fe.dofs_per_cell);