55 zero_indices(
unsigned int (&indices)[dim])
57 for (
unsigned int d = 0; d < dim; ++d)
68 increment_indices(
unsigned int (&indices)[dim],
const unsigned int dofs1d)
71 for (
unsigned int d = 0; d < dim - 1; ++d)
72 if (indices[d] == dofs1d)
88template <
int xdim,
int xspacedim>
95 template <
int spacedim>
104 template <
int spacedim>
109 const unsigned int dim = 2;
111 unsigned int q_deg = fe.
degree;
160 std::vector<
Point<dim - 1>> constraint_points;
162 constraint_points.emplace_back(0.5);
165 for (
unsigned int i = 1; i < q_deg; ++i)
166 constraint_points.push_back(
170 for (
unsigned int i = 1; i < q_deg; ++i)
171 constraint_points.push_back(
183 const std::vector<unsigned int> &index_map_inverse =
185 const std::vector<unsigned int> face_index_map =
192 for (
unsigned int i = 0; i < constraint_points.size(); ++i)
193 for (
unsigned int j = 0; j < q_deg + 1; ++j)
196 p[0] = constraint_points[i][0];
198 fe.
poly_space->compute_value(index_map_inverse[j], p);
210 template <
int spacedim>
215 const unsigned int dim = 3;
217 unsigned int q_deg = fe.
degree;
237 std::vector<
Point<dim - 1>> constraint_points;
240 constraint_points.emplace_back(0.5, 0.5);
243 constraint_points.emplace_back(0, 0.5);
244 constraint_points.emplace_back(1, 0.5);
245 constraint_points.emplace_back(0.5, 0);
246 constraint_points.emplace_back(0.5, 1);
250 const unsigned int n = q_deg - 1;
251 const double step = 1. / q_deg;
252 std::vector<
Point<dim - 2>> line_support_points(n);
253 for (
unsigned int i = 0; i < n; ++i)
254 line_support_points[i][0] = (i + 1) * step;
255 const Quadrature<dim - 2> qline(line_support_points);
258 std::vector<
Point<dim - 1>> p_line(n);
264 ReferenceCells::get_hypercube<dim - 1>(), qline, 0, 0, p_line);
265 for (
unsigned int i = 0; i < n; ++i)
269 ReferenceCells::get_hypercube<dim - 1>(), qline, 0, 1, p_line);
270 for (
unsigned int i = 0; i < n; ++i)
274 ReferenceCells::get_hypercube<dim - 1>(), qline, 2, 0, p_line);
275 for (
unsigned int i = 0; i < n; ++i)
279 ReferenceCells::get_hypercube<dim - 1>(), qline, 2, 1, p_line);
280 for (
unsigned int i = 0; i < n; ++i)
284 for (
unsigned int face = 0;
287 for (
unsigned int subface = 0;
292 ReferenceCells::get_hypercube<dim - 1>(),
297 constraint_points.insert(constraint_points.end(),
303 std::vector<
Point<dim - 1>> inner_points(n * n);
304 for (
unsigned int i = 0, iy = 1; iy <= n; ++iy)
305 for (
unsigned int ix = 1; ix <= n; ++ix)
309 for (
unsigned int child = 0;
312 for (
const auto &inner_point : inner_points)
313 constraint_points.push_back(
320 const unsigned int pnts = (q_deg + 1) * (q_deg + 1);
324 const std::vector<unsigned int> &index_map_inverse =
326 const std::vector<unsigned int> face_index_map =
336 for (
unsigned int i = 0; i < constraint_points.size(); ++i)
338 const double interval =
static_cast<double>(q_deg * 2);
339 bool mirror[dim - 1];
351 for (
unsigned int k = 0; k < dim - 1; ++k)
353 const int coord_int =
354 static_cast<int>(constraint_points[i][k] * interval + 0.25);
355 constraint_point[k] = 1. * coord_int / interval;
377 mirror[k] = (constraint_point[k] > 0.5);
379 constraint_point[k] = 1.0 - constraint_point[k];
382 for (
unsigned int j = 0; j < pnts; ++j)
384 unsigned int indices[2] = {j % (q_deg + 1), j / (q_deg + 1)};
386 for (
unsigned int k = 0; k < 2; ++k)
388 indices[k] = q_deg - indices[k];
390 const unsigned int new_index =
391 indices[1] * (q_deg + 1) + indices[0];
394 fe.
poly_space->compute_value(index_map_inverse[new_index],
411template <
int dim,
int spacedim>
415 const std::vector<bool> &restriction_is_additive_flags)
419 restriction_is_additive_flags,
422 &poly_space) != nullptr ?
429template <
int dim,
int spacedim>
434 ExcMessage(
"The first support point has to be zero."));
435 Assert(points.back()[0] == 1,
436 ExcMessage(
"The last support point has to be one."));
441 const unsigned int q_dofs_per_cell =
442 Utilities::fixed_power<dim>(
q_degree + 1);
448 [
this, q_dofs_per_cell]() {
449 std::vector<unsigned int> renumber =
450 FETools::hierarchic_to_lexicographic_numbering<dim>(
q_degree);
451 for (
unsigned int i = q_dofs_per_cell; i < this->
n_dofs_per_cell(); ++i)
452 renumber.push_back(i);
453 auto *tensor_poly_space_ptr =
455 if (tensor_poly_space_ptr !=
nullptr)
460 auto *tensor_piecewise_poly_space_ptr =
dynamic_cast<
463 if (tensor_piecewise_poly_space_ptr !=
nullptr)
468 auto *tensor_bubbles_poly_space_ptr =
471 if (tensor_bubbles_poly_space_ptr !=
nullptr)
476 auto *tensor_const_poly_space_ptr =
479 if (tensor_const_poly_space_ptr !=
nullptr)
505template <
int dim,
int spacedim>
516 Assert(interpolation_matrix.
m() == this->n_dofs_per_cell(),
518 this->n_dofs_per_cell()));
524 const unsigned int q_dofs_per_cell =
525 Utilities::fixed_power<dim>(
q_degree + 1);
526 const unsigned int source_q_dofs_per_cell =
527 Utilities::fixed_power<dim>(source_fe->degree + 1);
533 for (
unsigned int j = 0; j < q_dofs_per_cell; ++j)
543 for (
unsigned int i = 0; i < source_q_dofs_per_cell; ++i)
544 interpolation_matrix(j, i) =
545 source_fe->poly_space->compute_value(i, p);
552 source_fe->n_dofs_per_cell());
553 for (
unsigned int i = 0; i < source_q_dofs_per_cell; ++i)
554 interpolation_matrix(q_dofs_per_cell, i) = 0.;
555 for (
unsigned int j = 0; j < q_dofs_per_cell; ++j)
556 interpolation_matrix(j, source_q_dofs_per_cell) = 0.;
557 interpolation_matrix(q_dofs_per_cell, source_q_dofs_per_cell) = 1.;
563 for (
unsigned int j = 0; j < source_fe->n_dofs_per_cell(); ++j)
564 if (std::fabs(interpolation_matrix(i, j)) <
eps)
565 interpolation_matrix(i, j) = 0.;
573 for (
unsigned int j = 0; j < source_fe->n_dofs_per_cell(); ++j)
574 sum += interpolation_matrix(i, j);
605template <
int dim,
int spacedim>
610 const unsigned int face_no)
const
614 interpolation_matrix,
620template <
int dim,
int spacedim>
624 const unsigned int subface,
626 const unsigned int face_no)
const
640 Assert(interpolation_matrix.
n() == this->n_dofs_per_face(face_no),
642 this->n_dofs_per_face(face_no)));
683 double matrix_entry =
689 if (std::fabs(matrix_entry - 1.0) < eps)
691 if (std::fabs(matrix_entry) < eps)
694 interpolation_matrix(i, j) = matrix_entry;
706 sum += interpolation_matrix(j, i);
725template <
int dim,
int spacedim>
734template <
int dim,
int spacedim>
735std::vector<std::pair<unsigned int, unsigned int>>
787template <
int dim,
int spacedim>
788std::vector<std::pair<unsigned int, unsigned int>>
805 const unsigned int p = this->
degree;
806 const unsigned int q = fe_q_other->degree;
808 std::vector<std::pair<unsigned int, unsigned int>> identities;
810 const std::vector<unsigned int> &index_map_inverse =
812 const std::vector<unsigned int> &index_map_inverse_other =
813 fe_q_other->get_poly_space_numbering_inverse();
815 for (
unsigned int i = 0; i < p - 1; ++i)
816 for (
unsigned int j = 0; j < q - 1; ++j)
819 fe_q_other->unit_support_points[index_map_inverse_other[j + 1]]
821 identities.emplace_back(i, j);
842 const std::vector<unsigned int> &index_map_inverse_q =
845 std::vector<std::pair<unsigned int, unsigned int>> identities;
847 for (
unsigned int i = 0; i < this->
degree - 1; ++i)
848 for (
unsigned int j = 0; j < fe_p_other->degree - 1; ++j)
851 fe_p_other->get_unit_support_points()[j + 3][0]) < 1e-14)
852 identities.emplace_back(i, j);
882template <
int dim,
int spacedim>
883std::vector<std::pair<unsigned int, unsigned int>>
886 const unsigned int)
const
898 const unsigned int p = this->
degree;
899 const unsigned int q = fe_q_other->degree;
901 std::vector<std::pair<unsigned int, unsigned int>> identities;
903 const std::vector<unsigned int> &index_map_inverse =
905 const std::vector<unsigned int> &index_map_inverse_other =
906 fe_q_other->get_poly_space_numbering_inverse();
908 for (
unsigned int i1 = 0; i1 < p - 1; ++i1)
909 for (
unsigned int i2 = 0; i2 < p - 1; ++i2)
910 for (
unsigned int j1 = 0; j1 < q - 1; ++j1)
911 for (
unsigned int j2 = 0; j2 < q - 1; ++j2)
922 identities.emplace_back(i1 * (p - 1) + i2, j1 * (q - 1) + j2);
930 return std::vector<std::pair<unsigned int, unsigned int>>();
941 return std::vector<std::pair<unsigned int, unsigned int>>();
946 return std::vector<std::pair<unsigned int, unsigned int>>();
958template <
int dim,
int spacedim>
961 const std::vector<
Point<1>> &points)
963 const std::vector<unsigned int> &index_map_inverse =
976 for (
unsigned int k = 0; k < support_quadrature.size(); ++k)
978 support_quadrature.point(k);
983template <
int dim,
int spacedim>
986 const std::vector<
Point<1>> &points)
991 const unsigned int face_no = 0;
994 Utilities::fixed_power<dim - 1>(
q_degree + 1));
1002 const std::vector<unsigned int> face_index_map =
1010 const Quadrature<dim - 1> support_quadrature(support_1d);
1015 for (
unsigned int k = 0; k < support_quadrature.size(); ++k)
1017 support_quadrature.point(k);
1022template <
int dim,
int spacedim>
1038 const unsigned int face_no = 0;
1046 const unsigned int n =
q_degree - 1;
1067 for (
unsigned int local = 0; local < this->
n_dofs_per_quad(face_no); ++local)
1071 unsigned int i = local % n, j = local / n;
1080 i + (n - 1 - j) * n - local;
1084 (n - 1 - j) + (n - 1 - i) * n - local;
1088 (n - 1 - i) + j * n - local;
1095 j + (n - 1 - i) * n - local;
1099 (n - 1 - i) + (n - 1 - j) * n - local;
1103 (n - 1 - j) + i * n - local;
1109template <
int dim,
int spacedim>
1112 const unsigned int face_index,
1113 const unsigned int face,
1114 const unsigned char combined_orientation)
const
1127 const unsigned int dof_index_on_vertex =
1133 face, face_vertex, combined_orientation) *
1135 dof_index_on_vertex;
1142 const unsigned int index =
1150 unsigned int adjusted_dof_index_on_line = 0;
1158 if (combined_orientation ==
1160 adjusted_dof_index_on_line = dof_index_on_line;
1162 adjusted_dof_index_on_line =
1175 combined_orientation ==
1178 adjusted_dof_index_on_line = dof_index_on_line;
1188 combined_orientation) *
1190 adjusted_dof_index_on_line);
1198 const unsigned int index =
1205 combined_orientation ==
1214template <
int dim,
int spacedim>
1215std::vector<unsigned int>
1220 std::vector<unsigned int> dpo(dim + 1, 1U);
1221 for (
unsigned int i = 1; i < dpo.size(); ++i)
1222 dpo[i] = dpo[i - 1] * (
degree - 1);
1228template <
int dim,
int spacedim>
1231 const std::vector<
Point<1>> &points)
1238template <
int dim,
int spacedim>
1241 const unsigned int child,
1248 "Prolongation matrices are only available for refined cells!"));
1252 if (this->
prolongation[refinement_case - 1][child].n() == 0)
1257 if (this->
prolongation[refinement_case - 1][child].n() ==
1262 const unsigned int q_dofs_per_cell =
1263 Utilities::fixed_power<dim>(
q_degree + 1);
1276 for (
unsigned int i = 0; i < q_dofs_per_cell; ++i)
1279 i, this->unit_support_points[i])) < eps,
1281 "to one or zero in a nodal point. "
1282 "This typically indicates that the "
1283 "polynomial interpolation is "
1284 "ill-conditioned such that round-off "
1285 "prevents the sum to be one."));
1286 for (
unsigned int j = 0; j < q_dofs_per_cell; ++j)
1289 i, this->unit_support_points[j])) < eps,
1291 "The Lagrange polynomial does not evaluate "
1292 "to one or zero in a nodal point. "
1293 "This typically indicates that the "
1294 "polynomial interpolation is "
1295 "ill-conditioned such that round-off "
1296 "prevents the sum to be one."));
1304 const unsigned int dofs1d =
q_degree + 1;
1305 std::vector<Table<2, double>> subcell_evaluations(
1308 const std::vector<unsigned int> &index_map_inverse =
1313 unsigned int step_size_diag = 0;
1315 unsigned int factor = 1;
1316 for (
unsigned int d = 0;
d < dim; ++
d)
1318 step_size_diag += factor;
1328 for (
unsigned int j = 0; j < dofs1d; ++j)
1330 const unsigned int diag_comp = index_map_inverse[j * step_size_diag];
1336 for (
unsigned int i = 0; i < dofs1d; ++i)
1337 for (
unsigned int d = 0;
d < dim; ++
d)
1342 const double cell_value =
1343 this->
poly_space->compute_value(index_map_inverse[i], point);
1362 if (std::fabs(cell_value) < eps)
1363 subcell_evaluations[
d](j, i) = 0;
1365 subcell_evaluations[
d](j, i) = cell_value;
1371 unsigned int j_indices[dim];
1372 internal::FE_Q_Base::zero_indices<dim>(j_indices);
1373 for (
unsigned int j = 0; j < q_dofs_per_cell; j += dofs1d)
1375 unsigned int i_indices[dim];
1376 internal::FE_Q_Base::zero_indices<dim>(i_indices);
1377 for (
unsigned int i = 0; i < q_dofs_per_cell; i += dofs1d)
1379 double val_extra_dim = 1.;
1380 for (
unsigned int d = 1;
d < dim; ++
d)
1382 subcell_evaluations[d](j_indices[d - 1], i_indices[d - 1]);
1386 for (
unsigned int jj = 0; jj < dofs1d; ++jj)
1388 const unsigned int j_ind = index_map_inverse[j + jj];
1389 for (
unsigned int ii = 0; ii < dofs1d; ++ii)
1390 prolongate(j_ind, index_map_inverse[i + ii]) =
1391 val_extra_dim * subcell_evaluations[0](jj, ii);
1396 internal::FE_Q_Base::increment_indices<dim>(i_indices, dofs1d);
1399 internal::FE_Q_Base::increment_indices<dim>(j_indices, dofs1d);
1405 prolongate(q_dofs_per_cell, q_dofs_per_cell) = 1.;
1414 sum += prolongate(row, col);
1415 Assert(std::fabs(sum - 1.) <
1418 "prolongation matrix do not add to one. "
1419 "This typically indicates that the "
1420 "polynomial interpolation is "
1421 "ill-conditioned such that round-off "
1422 "prevents the sum to be one."));
1428 this->
prolongation[refinement_case - 1][child]) = std::move(prolongate);
1437template <
int dim,
int spacedim>
1440 const unsigned int child,
1447 "Restriction matrices are only available for refined cells!"));
1451 if (this->
restriction[refinement_case - 1][child].n() == 0)
1456 if (this->
restriction[refinement_case - 1][child].n() ==
1458 return this->
restriction[refinement_case - 1][child];
1463 const unsigned int q_dofs_per_cell =
1464 Utilities::fixed_power<dim>(
q_degree + 1);
1485 const std::vector<unsigned int> &index_map_inverse =
1488 const unsigned int dofs1d =
q_degree + 1;
1489 std::vector<Tensor<1, dim>> evaluations1d(dofs1d);
1493 for (
unsigned int i = 0; i < q_dofs_per_cell; ++i)
1495 unsigned int mother_dof = index_map_inverse[i];
1510 for (
unsigned int j = 0; j < dofs1d; ++j)
1511 for (
unsigned int d = 0;
d < dim; ++
d)
1515 evaluations1d[j][
d] =
1516 this->
poly_space->compute_value(index_map_inverse[j],
1519 unsigned int j_indices[dim];
1520 internal::FE_Q_Base::zero_indices<dim>(j_indices);
1521 double sum_check = 0;
1522 for (
unsigned int j = 0; j < q_dofs_per_cell; j += dofs1d)
1524 double val_extra_dim = 1.;
1525 for (
unsigned int d = 1;
d < dim; ++
d)
1526 val_extra_dim *= evaluations1d[j_indices[d - 1]][d];
1527 for (
unsigned int jj = 0; jj < dofs1d; ++jj)
1535 const double val = val_extra_dim * evaluations1d[jj][0];
1536 const unsigned int child_dof = index_map_inverse[j + jj];
1537 if (std::fabs(val - 1.) < eps)
1538 my_restriction(mother_dof, child_dof) = 1.;
1539 else if (std::fabs(val) > eps)
1540 my_restriction(mother_dof, child_dof) = val;
1543 internal::FE_Q_Base::increment_indices<dim>(j_indices,
1547 Assert(std::fabs(sum_check - 1.0) <
1551 "restriction matrix do not add to one. "
1552 "This typically indicates that the "
1553 "polynomial interpolation is "
1554 "ill-conditioned such that round-off "
1555 "prevents the sum to be one."));
1569 std::move(my_restriction);
1572 return this->
restriction[refinement_case - 1][child];
1582template <
int dim,
int spacedim>
1585 const unsigned int shape_index,
1586 const unsigned int face_index)
const
1595 return (((shape_index == 0) && (face_index == 0)) ||
1596 ((shape_index == 1) && (face_index == 1)));
1611 const unsigned int vertex_no = shape_index;
1615 for (
unsigned int v = 0; v < GeometryInfo<dim>::vertices_per_face; ++v)
1625 const unsigned int line_index =
1631 if constexpr (dim == 2)
1632 return (line_index == face_index);
1633 else if constexpr (dim == 3)
1636 for (
unsigned int l = 0; l < GeometryInfo<3>::lines_per_face; ++
l)
1649 const unsigned int quad_index =
1660 return (quad_index == face_index);
1679template <
int dim,
int spacedim>
1680std::pair<Table<2, bool>, std::vector<unsigned int>>
1688 for (
unsigned int i = 0; i < Utilities::fixed_power<dim>(
q_degree + 1); ++i)
1689 constant_modes(0, i) =
true;
1690 return std::pair<Table<2, bool>, std::vector<unsigned int>>(
1691 constant_modes, std::vector<unsigned int>(1, 0));
1697#include "fe_q_base.inst"
std::vector< unsigned int > get_poly_space_numbering_inverse() const
const ScalarPolynomialsBase< dim > & get_poly_space() const
virtual double shape_value(const unsigned int i, const Point< dim > &p) const override
const std::unique_ptr< ScalarPolynomialsBase< dim > > poly_space
Threads::Mutex prolongation_matrix_mutex
void initialize_unit_face_support_points(const std::vector< Point< 1 > > &points)
virtual bool hp_constraints_are_implemented() const override
virtual std::vector< std::pair< unsigned int, unsigned int > > hp_line_dof_identities(const FiniteElement< dim, spacedim > &fe_other) const override
virtual void get_interpolation_matrix(const FiniteElement< dim, spacedim > &source, FullMatrix< double > &matrix) const override
Threads::Mutex restriction_matrix_mutex
virtual std::vector< std::pair< unsigned int, unsigned int > > hp_quad_dof_identities(const FiniteElement< dim, spacedim > &fe_other, const unsigned int face_no=0) const override
const unsigned int q_degree
virtual std::pair< Table< 2, bool >, std::vector< unsigned int > > get_constant_modes() const override
void initialize(const std::vector< Point< 1 > > &support_points_1d)
void initialize_unit_support_points(const std::vector< Point< 1 > > &points)
virtual void get_subface_interpolation_matrix(const FiniteElement< dim, spacedim > &source, const unsigned int subface, FullMatrix< double > &matrix, const unsigned int face_no=0) const override
virtual void get_face_interpolation_matrix(const FiniteElement< dim, spacedim > &source, FullMatrix< double > &matrix, const unsigned int face_no=0) const override
static std::vector< unsigned int > get_dpo_vector(const unsigned int degree)
void initialize_constraints(const std::vector< Point< 1 > > &points)
void initialize_dof_index_permutations()
virtual const FullMatrix< double > & get_restriction_matrix(const unsigned int child, const RefinementCase< dim > &refinement_case=RefinementCase< dim >::isotropic_refinement) const override
virtual const FullMatrix< double > & get_prolongation_matrix(const unsigned int child, const RefinementCase< dim > &refinement_case=RefinementCase< dim >::isotropic_refinement) const override
virtual unsigned int face_to_cell_index(const unsigned int face_dof_index, const unsigned int face, const unsigned char combined_orientation=ReferenceCell::default_combined_face_orientation()) const override
virtual bool has_support_on_face(const unsigned int shape_index, const unsigned int face_index) const override
virtual std::vector< std::pair< unsigned int, unsigned int > > hp_vertex_dof_identities(const FiniteElement< dim, spacedim > &fe_other) const override
FE_Q_Base(const ScalarPolynomialsBase< dim > &poly_space, const FiniteElementData< dim > &fe_data, const std::vector< bool > &restriction_is_additive_flags)
unsigned int get_first_line_index() const
unsigned int n_dofs_per_vertex() const
const unsigned int degree
unsigned int n_dofs_per_cell() const
unsigned int n_dofs_per_line() const
unsigned int get_first_quad_index(const unsigned int quad_no=0) const
unsigned int n_dofs_per_face(unsigned int face_no=0, unsigned int child=0) const
unsigned int n_components() const
ReferenceCell reference_cell() const
unsigned int get_first_face_line_index(const unsigned int face_no=0) const
unsigned int get_first_face_quad_index(const unsigned int face_no=0) const
unsigned int n_unique_faces() const
unsigned int n_dofs_per_quad(unsigned int face_no=0) const
unsigned int get_first_hex_index() const
std::vector< std::vector< Point< dim - 1 > > > unit_face_support_points
bool has_face_support_points(const unsigned int face_no=0) const
std::vector< std::vector< FullMatrix< double > > > restriction
std::vector< Table< 2, int > > adjust_quad_dof_index_for_face_orientation_table
const std::vector< Point< dim - 1 > > & get_unit_face_support_points(const unsigned int face_no=0) const
std::vector< int > adjust_line_dof_index_for_line_orientation_table
TableIndices< 2 > interface_constraints_size() const
std::vector< Point< dim > > unit_support_points
FullMatrix< double > interface_constraints
std::vector< std::vector< FullMatrix< double > > > prolongation
static void project_to_subface(const ReferenceCell &reference_cell, const SubQuadrature &quadrature, const unsigned int face_no, const unsigned int subface_no, std::vector< Point< dim > > &q_points, const RefinementCase< dim - 1 > &ref_case=RefinementCase< dim - 1 >::isotropic_refinement)
static void project_to_face(const ReferenceCell &reference_cell, const SubQuadrature &quadrature, const unsigned int face_no, std::vector< Point< dim > > &q_points)
const Point< dim > & point(const unsigned int i) const
unsigned int face_to_cell_vertices(const unsigned int face, const unsigned int vertex, const unsigned char face_orientation) const
static constexpr unsigned char default_combined_face_orientation()
void set_numbering(const std::vector< unsigned int > &renumber)
void set_numbering(const std::vector< unsigned int > &renumber)
void set_numbering(const std::vector< unsigned int > &renumber)
#define DEAL_II_NAMESPACE_OPEN
#define DEAL_II_NAMESPACE_CLOSE
static ::ExceptionBase & ExcNotImplemented()
#define Assert(cond, exc)
#define AssertDimension(dim1, dim2)
#define AssertIndexRange(index, range)
static ::ExceptionBase & ExcInternalError()
static ::ExceptionBase & ExcDimensionMismatch(std::size_t arg1, std::size_t arg2)
static ::ExceptionBase & ExcInterpolationNotImplemented()
static ::ExceptionBase & ExcMessage(std::string arg1)
#define AssertThrow(cond, exc)
Task< RT > new_task(const std::function< RT()> &function)
#define DEAL_II_ASSERT_UNREACHABLE()
#define DEAL_II_NOT_IMPLEMENTED()
Point< spacedim > point(const gp_Pnt &p, const double tolerance=1e-10)
SymmetricTensor< 2, dim, Number > e(const Tensor< 2, dim, Number > &F)
Tensor< 2, dim, Number > l(const Tensor< 2, dim, Number > &F, const Tensor< 2, dim, Number > &dF_dt)
SymmetricTensor< 2, dim, Number > d(const Tensor< 2, dim, Number > &F, const Tensor< 2, dim, Number > &dF_dt)
T sum(const T &t, const MPI_Comm mpi_communicator)
unsigned char combined_face_orientation(const bool face_orientation, const bool face_rotation, const bool face_flip)
static const unsigned int invalid_unsigned_int
::VectorizedArray< Number, width > max(const ::VectorizedArray< Number, width > &, const ::VectorizedArray< Number, width > &)
::VectorizedArray< Number, width > sqrt(const ::VectorizedArray< Number, width > &)
::VectorizedArray< Number, width > abs(const ::VectorizedArray< Number, width > &)
static void initialize_constraints(const std::vector< Point< 1 > > &, FE_Q_Base< 3, spacedim > &fe)
static void initialize_constraints(const std::vector< Point< 1 > > &, FE_Q_Base< 1, spacedim > &)
static void initialize_constraints(const std::vector< Point< 1 > > &, FE_Q_Base< 2, spacedim > &fe)
static unsigned int n_children(const RefinementCase< dim > &refinement_case)
static Point< dim > cell_to_child_coordinates(const Point< dim > &p, const unsigned int child_index, const RefinementCase< dim > refine_case=RefinementCase< dim >::isotropic_refinement)
static Point< dim > child_to_cell_coordinates(const Point< dim > &p, const unsigned int child_index, const RefinementCase< dim > refine_case=RefinementCase< dim >::isotropic_refinement)