From 2cc82f10a3547444093eec6db7f1dd396b66d4b0 Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Mon, 13 Apr 2020 12:41:56 -0400 Subject: [PATCH] Remove FiniteElement::[has|get]_generalized_face_support_points --- .../incompatibilities/20200413DanielArndt | 5 + include/deal.II/fe/fe.h | 28 ---- source/fe/fe.cc | 24 --- source/fe/fe_raviart_thomas_nodal.cc | 4 +- tests/fe/fe_data_test.cc | 3 - tests/fe/fe_data_test.output | 126 ---------------- tests/fe/fe_support_points_bdm.output | 8 - tests/fe/fe_support_points_common.h | 18 --- tests/fe/fe_support_points_nedelec.output | 20 --- tests/fe/fe_support_points_q.output | 138 ------------------ tests/fe/fe_support_points_q_bubbles.output | 138 ------------------ tests/fe/fe_support_points_q_dg0.output | 138 ------------------ .../fe_support_points_q_hierarchical.output | 24 --- tests/fe/fe_support_points_q_iso_q1.output | 138 ------------------ tests/fe/fe_support_points_rt.output | 20 --- tests/fe/fe_support_points_sys_01.output | 28 ---- tests/fe/fe_support_points_sys_02.output | 4 - tests/fe/fe_support_points_sys_03.output | 28 ---- tests/fe/fe_support_points_sys_04.output | 64 +------- tests/fe/fe_support_points_sys_05.output | 112 +------------- tests/fe/fe_support_points_sys_06.output | 88 +---------- tests/fe/fe_support_points_sys_07.output | 4 - tests/fe/fe_support_points_sys_08.output | 16 +- tests/fe/fe_support_points_sys_09.output | 4 - tests/fe/fe_support_points_sys_10.output | 16 +- tests/fe/rtn_1.cc | 58 -------- tests/fe/rtn_1.output | 22 --- 27 files changed, 37 insertions(+), 1239 deletions(-) create mode 100644 doc/news/changes/incompatibilities/20200413DanielArndt diff --git a/doc/news/changes/incompatibilities/20200413DanielArndt b/doc/news/changes/incompatibilities/20200413DanielArndt new file mode 100644 index 0000000000..292737e259 --- /dev/null +++ b/doc/news/changes/incompatibilities/20200413DanielArndt @@ -0,0 +1,5 @@ +Removed: The deprecated member fucntions +FiniteElement::has_generalized_face_support_points() +and FiniteElement::get_generalized_face_support_points() have been removed. +
+(Daniel Arndt, 2020/04/13) diff --git a/include/deal.II/fe/fe.h b/include/deal.II/fe/fe.h index 8615f306d2..74bf5adde2 100644 --- a/include/deal.II/fe/fe.h +++ b/include/deal.II/fe/fe.h @@ -2149,34 +2149,6 @@ public: bool has_generalized_support_points() const; - /** - * Return the equivalent to get_generalized_support_points(), except - * for faces. - * - * @deprecated In general, it is not possible to associate a unique - * subset of generalized support points describing degrees of freedom for - * a given face. Don't use this function - */ - DEAL_II_DEPRECATED - const std::vector> & - get_generalized_face_support_points() const; - - /** - * Return whether a finite element has defined generalized support points on - * faces. If the result is true, then a call to the - * get_generalized_face_support_points() function yields a non-empty array. - * - * For more information, see the documentation for the has_support_points() - * function. - * - * @deprecated In general, it is not possible to associate a unique - * subset of generalized support points describing degrees of freedom for - * a given face. Don't use this function - */ - DEAL_II_DEPRECATED - bool - has_generalized_face_support_points() const; - /** * For a given degree of freedom, return whether it is logically associated * with a vertex, line, quad or hex. diff --git a/source/fe/fe.cc b/source/fe/fe.cc index 0aa371137e..bd7fad2536 100644 --- a/source/fe/fe.cc +++ b/source/fe/fe.cc @@ -1070,30 +1070,6 @@ FiniteElement::has_face_support_points() const -template -const std::vector> & -FiniteElement::get_generalized_face_support_points() const -{ - // a finite element may define - // support points, but only if - // there are as many as there are - // degrees of freedom on a face - return ((generalized_face_support_points.size() == 0) ? - unit_face_support_points : - generalized_face_support_points); -} - - - -template -bool -FiniteElement::has_generalized_face_support_points() const -{ - return (generalized_face_support_points.size() != 0); -} - - - template Point FiniteElement::unit_face_support_point( diff --git a/source/fe/fe_raviart_thomas_nodal.cc b/source/fe/fe_raviart_thomas_nodal.cc index 06e928d071..4b495c096d 100644 --- a/source/fe/fe_raviart_thomas_nodal.cc +++ b/source/fe/fe_raviart_thomas_nodal.cc @@ -607,7 +607,7 @@ FE_RaviartThomasNodal::get_face_interpolation_matrix( // which returns the support // points on the face. Quadrature quad_face_support( - source_fe.get_generalized_face_support_points()); + source_fe.generalized_face_support_points); // Rule of thumb for FP accuracy, // that can be expected for a @@ -711,7 +711,7 @@ FE_RaviartThomasNodal::get_subface_interpolation_matrix( // which returns the support // points on the face. Quadrature quad_face_support( - source_fe.get_generalized_face_support_points()); + source_fe.generalized_face_support_points); // Rule of thumb for FP accuracy, // that can be expected for a diff --git a/tests/fe/fe_data_test.cc b/tests/fe/fe_data_test.cc index fcdac4dbdc..ec4736317f 100644 --- a/tests/fe/fe_data_test.cc +++ b/tests/fe/fe_data_test.cc @@ -255,9 +255,6 @@ test_fe_datas() << fe_data->get_unit_face_support_points().size() << std::endl; deallog << "generalized_support_points=" << fe_data->get_generalized_support_points().size() << std::endl; - deallog << "generalized_face_support_points=" - << fe_data->get_generalized_face_support_points().size() - << std::endl; deallog << "face_to_equivalent_cell_index:"; for (unsigned int i = 0; i < fe_data->dofs_per_face; ++i) diff --git a/tests/fe/fe_data_test.output b/tests/fe/fe_data_test.output index cb9b20c38e..59f81d769f 100644 --- a/tests/fe/fe_data_test.output +++ b/tests/fe/fe_data_test.output @@ -52,7 +52,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=2 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=2 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: 0 DEAL::face_to_cell_index: 0 DEAL::face_to_cell_index: 1 @@ -79,7 +78,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=3 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=3 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: 0 DEAL::face_to_cell_index: 0 DEAL::face_to_cell_index: 1 @@ -106,7 +104,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=5 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=5 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: 0 DEAL::face_to_cell_index: 0 DEAL::face_to_cell_index: 1 @@ -133,7 +130,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=2 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: 0 DEAL::face_to_cell_index: 0 DEAL::face_to_cell_index: 1 @@ -160,7 +156,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=3 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: 0 DEAL::face_to_cell_index: 0 DEAL::face_to_cell_index: 1 @@ -187,7 +182,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=5 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: 0 DEAL::face_to_cell_index: 0 DEAL::face_to_cell_index: 1 @@ -214,7 +208,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=2 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=2 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -241,7 +234,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=3 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=3 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -268,7 +260,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=5 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=5 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -295,7 +286,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=5 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=5 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -322,7 +312,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=3 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=3 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -349,7 +338,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=0 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -376,7 +364,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=0 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -403,7 +390,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=0 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -430,7 +416,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=0 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -457,7 +442,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=0 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -484,7 +468,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=6 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=3 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: 0 1 DEAL::face_to_cell_index: 0 1 DEAL::face_to_cell_index: 2 3 @@ -511,7 +494,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=7 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=3 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: 0 1 2 DEAL::face_to_cell_index: 0 1 2 DEAL::face_to_cell_index: 3 4 5 @@ -538,7 +520,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=2 DEAL::unit_face_support_points=1 DEAL::generalized_support_points=2 -DEAL::generalized_face_support_points=1 DEAL::face_to_equivalent_cell_index: 0 DEAL::face_to_cell_index: 0 DEAL::face_to_cell_index: 1 @@ -565,7 +546,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=2 DEAL::unit_face_support_points=1 DEAL::generalized_support_points=2 -DEAL::generalized_face_support_points=1 DEAL::face_to_equivalent_cell_index: 0 DEAL::face_to_cell_index: 0 DEAL::face_to_cell_index: 1 @@ -592,7 +572,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=2 DEAL::unit_face_support_points=1 DEAL::generalized_support_points=2 -DEAL::generalized_face_support_points=1 DEAL::face_to_equivalent_cell_index: 0 DEAL::face_to_cell_index: 0 DEAL::face_to_cell_index: 1 @@ -619,7 +598,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=2 DEAL::unit_face_support_points=1 DEAL::generalized_support_points=2 -DEAL::generalized_face_support_points=1 DEAL::face_to_equivalent_cell_index: 0 DEAL::face_to_cell_index: 0 DEAL::face_to_cell_index: 1 @@ -646,7 +624,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=2 DEAL::unit_face_support_points=1 DEAL::generalized_support_points=2 -DEAL::generalized_face_support_points=1 DEAL::face_to_equivalent_cell_index: 0 DEAL::face_to_cell_index: 0 DEAL::face_to_cell_index: 1 @@ -673,7 +650,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=2 DEAL::unit_face_support_points=1 DEAL::generalized_support_points=2 -DEAL::generalized_face_support_points=1 DEAL::face_to_equivalent_cell_index: 0 DEAL::face_to_cell_index: 0 DEAL::face_to_cell_index: 1 @@ -700,7 +676,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=8 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=4 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: 0 1 DEAL::face_to_cell_index: 0 1 DEAL::face_to_cell_index: 2 3 @@ -727,7 +702,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=8 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=4 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: 0 1 2 DEAL::face_to_cell_index: 0 1 2 DEAL::face_to_cell_index: 3 4 5 @@ -754,7 +728,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=10 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=5 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: 0 1 DEAL::face_to_cell_index: 0 1 DEAL::face_to_cell_index: 2 3 @@ -781,7 +754,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=8 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=2 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: 0 1 2 3 DEAL::face_to_cell_index: 0 1 2 3 DEAL::face_to_cell_index: 4 5 6 7 @@ -808,7 +780,6 @@ DEAL::conformity= DEAL::unit_support_points=8 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=2 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: 0 1 DEAL::face_to_cell_index: 0 1 DEAL::face_to_cell_index: 2 3 @@ -835,7 +806,6 @@ DEAL::conformity= DEAL::unit_support_points=17 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=3 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: 0 1 2 3 DEAL::face_to_cell_index: 0 1 2 3 DEAL::face_to_cell_index: 4 5 6 7 @@ -862,7 +832,6 @@ DEAL::conformity= DEAL::unit_support_points=58 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=3 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 DEAL::face_to_cell_index: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 DEAL::face_to_cell_index: 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 @@ -941,7 +910,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=4 DEAL::unit_face_support_points=2 DEAL::generalized_support_points=4 -DEAL::generalized_face_support_points=2 DEAL::face_to_equivalent_cell_index: 0 2 DEAL::face_to_cell_index: 0 2 DEAL::face_to_cell_index: 1 3 @@ -972,7 +940,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=9 DEAL::unit_face_support_points=3 DEAL::generalized_support_points=9 -DEAL::generalized_face_support_points=3 DEAL::face_to_equivalent_cell_index: 0 2 4 DEAL::face_to_cell_index: 0 2 4 DEAL::face_to_cell_index: 1 3 5 @@ -1003,7 +970,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=25 DEAL::unit_face_support_points=5 DEAL::generalized_support_points=25 -DEAL::generalized_face_support_points=5 DEAL::face_to_equivalent_cell_index: 0 2 4 5 6 DEAL::face_to_cell_index: 0 2 4 5 6 DEAL::face_to_cell_index: 1 3 7 8 9 @@ -1034,7 +1000,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=4 -DEAL::generalized_face_support_points=2 DEAL::face_to_equivalent_cell_index: 0 2 DEAL::face_to_cell_index: 0 2 DEAL::face_to_cell_index: 1 3 @@ -1065,7 +1030,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=9 -DEAL::generalized_face_support_points=3 DEAL::face_to_equivalent_cell_index: 0 2 4 DEAL::face_to_cell_index: 0 2 4 DEAL::face_to_cell_index: 1 3 5 @@ -1096,7 +1060,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=25 -DEAL::generalized_face_support_points=5 DEAL::face_to_equivalent_cell_index: 0 2 4 5 6 DEAL::face_to_cell_index: 0 2 4 5 6 DEAL::face_to_cell_index: 1 3 7 8 9 @@ -1127,7 +1090,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=4 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=4 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -1158,7 +1120,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=9 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=9 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -1189,7 +1150,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=25 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=25 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -1220,7 +1180,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=25 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=25 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -1251,7 +1210,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=9 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=9 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -1282,7 +1240,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=0 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -1313,7 +1270,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=0 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -1344,7 +1300,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=0 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -1375,7 +1330,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=0 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -1406,7 +1360,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=0 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -1437,7 +1390,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=18 DEAL::unit_face_support_points=6 DEAL::generalized_support_points=9 -DEAL::generalized_face_support_points=6 DEAL::face_to_equivalent_cell_index: 0 1 4 5 8 9 DEAL::face_to_cell_index: 0 1 4 5 8 9 DEAL::face_to_cell_index: 2 3 6 7 10 11 @@ -1468,7 +1420,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=17 DEAL::unit_face_support_points=7 DEAL::generalized_support_points=9 -DEAL::generalized_face_support_points=7 DEAL::face_to_equivalent_cell_index: 0 1 2 6 7 8 12 DEAL::face_to_cell_index: 0 1 2 6 7 8 12 DEAL::face_to_cell_index: 3 4 5 9 10 11 13 @@ -1499,7 +1450,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=4 DEAL::unit_face_support_points=1 DEAL::generalized_support_points=4 -DEAL::generalized_face_support_points=1 DEAL::face_to_equivalent_cell_index: 0 DEAL::face_to_cell_index: 0 DEAL::face_to_cell_index: 1 @@ -1530,7 +1480,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=8 DEAL::unit_face_support_points=2 DEAL::generalized_support_points=8 -DEAL::generalized_face_support_points=2 DEAL::face_to_equivalent_cell_index: 0 1 DEAL::face_to_cell_index: 0 1 DEAL::face_to_cell_index: 2 3 @@ -1561,7 +1510,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=16 DEAL::unit_face_support_points=4 DEAL::generalized_support_points=16 -DEAL::generalized_face_support_points=4 DEAL::face_to_equivalent_cell_index: 0 1 2 3 DEAL::face_to_cell_index: 0 1 2 3 DEAL::face_to_cell_index: 4 5 6 7 @@ -1592,7 +1540,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=0 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: 0 DEAL::face_to_cell_index: 0 DEAL::face_to_cell_index: 1 @@ -1623,7 +1570,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=0 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: 0 1 DEAL::face_to_cell_index: 0 1 DEAL::face_to_cell_index: 2 3 @@ -1654,7 +1600,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=0 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: 0 1 2 3 DEAL::face_to_cell_index: 0 1 2 3 DEAL::face_to_cell_index: 4 5 6 7 @@ -1685,7 +1630,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=4 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -1716,7 +1660,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=9 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -1747,7 +1690,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=9 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -1778,7 +1720,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=16 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -1809,7 +1750,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=4 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -1840,7 +1780,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=9 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -1871,7 +1810,6 @@ DEAL::conformity= Hdiv DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=4 -DEAL::generalized_face_support_points=1 DEAL::face_to_equivalent_cell_index: 0 DEAL::face_to_cell_index: 0 DEAL::face_to_cell_index: 1 @@ -1902,7 +1840,6 @@ DEAL::conformity= Hdiv DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=12 -DEAL::generalized_face_support_points=2 DEAL::face_to_equivalent_cell_index: 0 1 DEAL::face_to_cell_index: 0 1 DEAL::face_to_cell_index: 2 3 @@ -1933,7 +1870,6 @@ DEAL::conformity= Hdiv DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=21 -DEAL::generalized_face_support_points=3 DEAL::face_to_equivalent_cell_index: 0 1 2 DEAL::face_to_cell_index: 0 1 2 DEAL::face_to_cell_index: 3 4 5 @@ -1964,7 +1900,6 @@ DEAL::conformity= DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=16 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: 0 1 DEAL::face_to_cell_index: 0 1 DEAL::face_to_cell_index: 2 3 @@ -1995,7 +1930,6 @@ DEAL::conformity= Hdiv DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=8 -DEAL::generalized_face_support_points=2 DEAL::face_to_equivalent_cell_index: 0 1 DEAL::face_to_cell_index: 0 1 DEAL::face_to_cell_index: 2 3 @@ -2026,7 +1960,6 @@ DEAL::conformity= Hdiv DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=16 -DEAL::generalized_face_support_points=3 DEAL::face_to_equivalent_cell_index: 0 1 2 DEAL::face_to_cell_index: 0 1 2 DEAL::face_to_cell_index: 3 4 5 @@ -2057,7 +1990,6 @@ DEAL::conformity= Hcurl DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=4 -DEAL::generalized_face_support_points=1 DEAL::face_to_equivalent_cell_index: 0 DEAL::face_to_cell_index: 0 DEAL::face_to_cell_index: 1 @@ -2088,7 +2020,6 @@ DEAL::conformity= Hcurl DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=12 -DEAL::generalized_face_support_points=2 DEAL::face_to_equivalent_cell_index: 0 1 DEAL::face_to_cell_index: 0 1 DEAL::face_to_cell_index: 2 3 @@ -2119,7 +2050,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=9 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -2150,7 +2080,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=16 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -2181,7 +2110,6 @@ DEAL::conformity= Hdiv DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=4 -DEAL::generalized_face_support_points=1 DEAL::face_to_equivalent_cell_index: 0 DEAL::face_to_cell_index: 0 DEAL::face_to_cell_index: 1 @@ -2212,7 +2140,6 @@ DEAL::conformity= Hdiv DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=12 -DEAL::generalized_face_support_points=2 DEAL::face_to_equivalent_cell_index: 0 1 DEAL::face_to_cell_index: 0 1 DEAL::face_to_cell_index: 2 3 @@ -2243,7 +2170,6 @@ DEAL::conformity= DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=16 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: 0 1 DEAL::face_to_cell_index: 0 1 DEAL::face_to_cell_index: 2 3 @@ -2274,7 +2200,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=32 DEAL::unit_face_support_points=8 DEAL::generalized_support_points=16 -DEAL::generalized_face_support_points=8 DEAL::face_to_equivalent_cell_index: 0 1 4 5 8 9 10 11 DEAL::face_to_cell_index: 0 1 4 5 8 9 10 11 DEAL::face_to_cell_index: 2 3 6 7 12 13 14 15 @@ -2305,7 +2230,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=24 DEAL::unit_face_support_points=8 DEAL::generalized_support_points=16 -DEAL::generalized_face_support_points=8 DEAL::face_to_equivalent_cell_index: 0 1 2 6 7 8 12 13 DEAL::face_to_cell_index: 0 1 2 6 7 8 12 13 DEAL::face_to_cell_index: 3 4 5 9 10 11 14 15 @@ -2336,7 +2260,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=50 DEAL::unit_face_support_points=10 DEAL::generalized_support_points=25 -DEAL::generalized_face_support_points=10 DEAL::face_to_equivalent_cell_index: 0 1 4 5 8 9 10 11 12 13 DEAL::face_to_cell_index: 0 1 4 5 8 9 10 11 12 13 DEAL::face_to_cell_index: 2 3 6 7 14 15 16 17 18 19 @@ -2367,7 +2290,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=16 DEAL::unit_face_support_points=8 DEAL::generalized_support_points=4 -DEAL::generalized_face_support_points=8 DEAL::face_to_equivalent_cell_index: 0 1 2 3 8 9 10 11 DEAL::face_to_cell_index: 0 1 2 3 8 9 10 11 DEAL::face_to_cell_index: 4 5 6 7 12 13 14 15 @@ -2398,7 +2320,6 @@ DEAL::conformity= DEAL::unit_support_points=16 DEAL::unit_face_support_points=4 DEAL::generalized_support_points=4 -DEAL::generalized_face_support_points=4 DEAL::face_to_equivalent_cell_index: 0 1 4 5 DEAL::face_to_cell_index: 0 1 4 5 DEAL::face_to_cell_index: 2 3 6 7 @@ -2429,7 +2350,6 @@ DEAL::conformity= DEAL::unit_support_points=49 DEAL::unit_face_support_points=11 DEAL::generalized_support_points=9 -DEAL::generalized_face_support_points=11 DEAL::face_to_equivalent_cell_index: 0 1 2 3 8 9 10 11 16 17 18 DEAL::face_to_cell_index: 0 1 2 3 8 9 10 11 16 17 18 DEAL::face_to_cell_index: 4 5 6 7 12 13 14 15 19 20 21 @@ -2460,7 +2380,6 @@ DEAL::conformity= DEAL::unit_support_points=146 DEAL::unit_face_support_points=42 DEAL::generalized_support_points=9 -DEAL::generalized_face_support_points=42 DEAL::face_to_equivalent_cell_index: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 72 73 74 75 76 77 DEAL::face_to_cell_index: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 72 73 74 75 76 77 DEAL::face_to_cell_index: 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 78 79 80 81 82 83 @@ -2538,7 +2457,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=8 DEAL::unit_face_support_points=4 DEAL::generalized_support_points=8 -DEAL::generalized_face_support_points=4 DEAL::face_to_equivalent_cell_index: 0 2 4 6 DEAL::face_to_cell_index: 0 2 4 6 DEAL::face_to_cell_index: 1 3 5 7 @@ -2573,7 +2491,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=27 DEAL::unit_face_support_points=9 DEAL::generalized_support_points=27 -DEAL::generalized_face_support_points=9 DEAL::face_to_equivalent_cell_index: 0 2 4 6 16 18 8 12 20 DEAL::face_to_cell_index: 0 2 4 6 16 18 8 12 20 DEAL::face_to_cell_index: 1 3 5 7 17 19 9 13 21 @@ -2608,7 +2525,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=125 DEAL::unit_face_support_points=25 DEAL::generalized_support_points=125 -DEAL::generalized_face_support_points=25 DEAL::face_to_equivalent_cell_index: 0 2 4 6 32 33 34 38 39 40 8 9 10 20 21 22 44 45 46 47 48 49 50 51 52 DEAL::face_to_cell_index: 0 2 4 6 32 33 34 38 39 40 8 9 10 20 21 22 44 45 46 47 48 49 50 51 52 DEAL::face_to_cell_index: 1 3 5 7 35 36 37 41 42 43 11 12 13 23 24 25 53 54 55 56 57 58 59 60 61 @@ -2643,7 +2559,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=8 -DEAL::generalized_face_support_points=4 DEAL::face_to_equivalent_cell_index: 0 2 4 6 DEAL::face_to_cell_index: 0 2 4 6 DEAL::face_to_cell_index: 1 3 5 7 @@ -2678,7 +2593,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=27 -DEAL::generalized_face_support_points=9 DEAL::face_to_equivalent_cell_index: 0 2 4 6 16 18 8 12 20 DEAL::face_to_cell_index: 0 2 4 6 16 18 8 12 20 DEAL::face_to_cell_index: 1 3 5 7 17 19 9 13 21 @@ -2713,7 +2627,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=125 -DEAL::generalized_face_support_points=25 DEAL::face_to_equivalent_cell_index: 0 2 4 6 32 33 34 38 39 40 8 9 10 20 21 22 44 45 46 47 48 49 50 51 52 DEAL::face_to_cell_index: 0 2 4 6 32 33 34 38 39 40 8 9 10 20 21 22 44 45 46 47 48 49 50 51 52 DEAL::face_to_cell_index: 1 3 5 7 35 36 37 41 42 43 11 12 13 23 24 25 53 54 55 56 57 58 59 60 61 @@ -2748,7 +2661,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=8 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=8 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -2783,7 +2695,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=27 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=27 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -2818,7 +2729,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=125 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=125 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -2853,7 +2763,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=125 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=125 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -2888,7 +2797,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=27 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=27 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -2923,7 +2831,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=0 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -2958,7 +2865,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=0 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -2993,7 +2899,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=0 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -3028,7 +2933,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=0 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -3063,7 +2967,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=0 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -3098,7 +3001,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=54 DEAL::unit_face_support_points=18 DEAL::generalized_support_points=27 -DEAL::generalized_face_support_points=18 DEAL::face_to_equivalent_cell_index: 0 1 4 5 8 9 12 13 32 33 36 37 16 17 24 25 40 41 DEAL::face_to_cell_index: 0 1 4 5 8 9 12 13 32 33 36 37 16 17 24 25 40 41 DEAL::face_to_cell_index: 2 3 6 7 10 11 14 15 34 35 38 39 18 19 26 27 42 43 @@ -3133,7 +3035,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=43 DEAL::unit_face_support_points=17 DEAL::generalized_support_points=27 -DEAL::generalized_face_support_points=17 DEAL::face_to_equivalent_cell_index: 0 1 2 6 7 8 12 13 14 18 19 20 32 34 24 28 36 DEAL::face_to_cell_index: 0 1 2 6 7 8 12 13 14 18 19 20 32 34 24 28 36 DEAL::face_to_cell_index: 3 4 5 9 10 11 15 16 17 21 22 23 33 35 25 29 37 @@ -3168,7 +3069,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=6 DEAL::unit_face_support_points=1 DEAL::generalized_support_points=6 -DEAL::generalized_face_support_points=1 DEAL::face_to_equivalent_cell_index: 0 DEAL::face_to_cell_index: 0 DEAL::face_to_cell_index: 1 @@ -3203,7 +3103,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=24 DEAL::unit_face_support_points=4 DEAL::generalized_support_points=24 -DEAL::generalized_face_support_points=4 DEAL::face_to_equivalent_cell_index: 0 1 2 3 DEAL::face_to_cell_index: 0 1 2 3 DEAL::face_to_cell_index: 4 5 6 7 @@ -3238,7 +3137,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=96 DEAL::unit_face_support_points=16 DEAL::generalized_support_points=96 -DEAL::generalized_face_support_points=16 DEAL::face_to_equivalent_cell_index: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 DEAL::face_to_cell_index: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 DEAL::face_to_cell_index: 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 @@ -3273,7 +3171,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=0 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: 0 DEAL::face_to_cell_index: 0 DEAL::face_to_cell_index: 1 @@ -3308,7 +3205,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=0 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: 0 1 2 DEAL::face_to_cell_index: 0 1 2 DEAL::face_to_cell_index: 3 4 5 @@ -3343,7 +3239,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=0 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: 0 1 2 3 4 5 6 7 8 9 DEAL::face_to_cell_index: 0 1 2 3 4 5 6 7 8 9 DEAL::face_to_cell_index: 10 11 12 13 14 15 16 17 18 19 @@ -3378,7 +3273,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=8 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -3413,7 +3307,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=27 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -3448,7 +3341,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=27 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -3483,7 +3375,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=64 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -3518,7 +3409,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=8 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -3553,7 +3443,6 @@ DEAL::conformity= L2 DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=27 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: DEAL::face_to_cell_index: DEAL::face_to_cell_index: @@ -3588,7 +3477,6 @@ DEAL::conformity= Hdiv DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=6 -DEAL::generalized_face_support_points=1 DEAL::face_to_equivalent_cell_index: 0 DEAL::face_to_cell_index: 0 DEAL::face_to_cell_index: 1 @@ -3623,7 +3511,6 @@ DEAL::conformity= Hdiv DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=32 -DEAL::generalized_face_support_points=4 DEAL::face_to_equivalent_cell_index: 0 1 2 3 DEAL::face_to_cell_index: 0 1 2 3 DEAL::face_to_cell_index: 4 5 6 7 @@ -3658,7 +3545,6 @@ DEAL::conformity= Hdiv DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=81 -DEAL::generalized_face_support_points=9 DEAL::face_to_equivalent_cell_index: 0 1 2 3 4 5 6 7 8 DEAL::face_to_cell_index: 0 1 2 3 4 5 6 7 8 DEAL::face_to_cell_index: 9 10 11 12 13 14 15 16 17 @@ -3693,7 +3579,6 @@ DEAL::conformity= DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=40 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: 0 1 2 3 DEAL::face_to_cell_index: 0 1 2 3 DEAL::face_to_cell_index: 4 5 6 7 @@ -3728,7 +3613,6 @@ DEAL::conformity= Hdiv DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=24 -DEAL::generalized_face_support_points=4 DEAL::face_to_equivalent_cell_index: 0 1 2 DEAL::face_to_cell_index: 0 1 2 DEAL::face_to_cell_index: 3 4 5 @@ -3763,7 +3647,6 @@ DEAL::conformity= Hdiv DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=62 -DEAL::generalized_face_support_points=9 DEAL::face_to_equivalent_cell_index: 0 1 2 3 4 5 DEAL::face_to_cell_index: 0 1 2 3 4 5 DEAL::face_to_cell_index: 6 7 8 9 10 11 @@ -3798,7 +3681,6 @@ DEAL::conformity= Hcurl DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=12 -DEAL::generalized_face_support_points=4 DEAL::face_to_equivalent_cell_index: 8 10 0 4 DEAL::face_to_cell_index: 8 10 0 4 DEAL::face_to_cell_index: 9 11 1 5 @@ -3833,7 +3715,6 @@ DEAL::conformity= Hcurl DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=56 -DEAL::generalized_face_support_points=12 DEAL::face_to_equivalent_cell_index: 16 17 20 21 0 1 8 9 24 25 26 27 DEAL::face_to_cell_index: 16 17 20 21 0 1 8 9 24 25 26 27 DEAL::face_to_cell_index: 18 19 22 23 2 3 10 11 28 29 30 31 @@ -3868,7 +3749,6 @@ DEAL::conformity= Hdiv DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=6 -DEAL::generalized_face_support_points=1 DEAL::face_to_equivalent_cell_index: 0 DEAL::face_to_cell_index: 0 DEAL::face_to_cell_index: 1 @@ -3903,7 +3783,6 @@ DEAL::conformity= Hdiv DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=36 -DEAL::generalized_face_support_points=4 DEAL::face_to_equivalent_cell_index: 0 1 2 3 DEAL::face_to_cell_index: 0 1 2 3 DEAL::face_to_cell_index: 4 5 6 7 @@ -3938,7 +3817,6 @@ DEAL::conformity= DEAL::unit_support_points=0 DEAL::unit_face_support_points=0 DEAL::generalized_support_points=44 -DEAL::generalized_face_support_points=0 DEAL::face_to_equivalent_cell_index: 0 1 2 3 DEAL::face_to_cell_index: 0 1 2 3 DEAL::face_to_cell_index: 4 5 6 7 @@ -3973,7 +3851,6 @@ DEAL::conformity= Hcurl Hdiv H1 DEAL::unit_support_points=32 DEAL::unit_face_support_points=16 DEAL::generalized_support_points=8 -DEAL::generalized_face_support_points=16 DEAL::face_to_equivalent_cell_index: 0 1 2 3 8 9 10 11 16 17 18 19 24 25 26 27 DEAL::face_to_cell_index: 0 1 2 3 8 9 10 11 16 17 18 19 24 25 26 27 DEAL::face_to_cell_index: 4 5 6 7 12 13 14 15 20 21 22 23 28 29 30 31 @@ -4008,7 +3885,6 @@ DEAL::conformity= DEAL::unit_support_points=32 DEAL::unit_face_support_points=8 DEAL::generalized_support_points=8 -DEAL::generalized_face_support_points=8 DEAL::face_to_equivalent_cell_index: 0 1 4 5 8 9 12 13 DEAL::face_to_cell_index: 0 1 4 5 8 9 12 13 DEAL::face_to_cell_index: 2 3 6 7 10 11 14 15 @@ -4043,7 +3919,6 @@ DEAL::conformity= DEAL::unit_support_points=143 DEAL::unit_face_support_points=31 DEAL::generalized_support_points=27 -DEAL::generalized_face_support_points=31 DEAL::face_to_equivalent_cell_index: 0 1 2 3 8 9 10 11 16 17 18 19 24 25 26 27 56 57 58 62 63 64 32 33 34 44 45 46 68 69 70 DEAL::face_to_cell_index: 0 1 2 3 8 9 10 11 16 17 18 19 24 25 26 27 56 57 58 62 63 64 32 33 34 44 45 46 68 69 70 DEAL::face_to_cell_index: 4 5 6 7 12 13 14 15 20 21 22 23 28 29 30 31 59 60 61 65 66 67 35 36 37 47 48 49 71 72 73 @@ -4078,7 +3953,6 @@ DEAL::conformity= DEAL::unit_support_points=382 DEAL::unit_face_support_points=102 DEAL::generalized_support_points=27 -DEAL::generalized_face_support_points=102 DEAL::face_to_equivalent_cell_index: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 192 193 194 195 196 197 204 205 206 207 208 209 144 145 146 147 148 149 168 169 170 171 172 173 216 217 218 219 220 221 DEAL::face_to_cell_index: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 192 193 194 195 196 197 204 205 206 207 208 209 144 145 146 147 148 149 168 169 170 171 172 173 216 217 218 219 220 221 DEAL::face_to_cell_index: 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 198 199 200 201 202 203 210 211 212 213 214 215 150 151 152 153 154 155 174 175 176 177 178 179 222 223 224 225 226 227 diff --git a/tests/fe/fe_support_points_bdm.output b/tests/fe/fe_support_points_bdm.output index 83bd293783..d84631b3c0 100644 --- a/tests/fe/fe_support_points_bdm.output +++ b/tests/fe/fe_support_points_bdm.output @@ -13,10 +13,6 @@ DEAL::0.211 0.00 DEAL::0.789 0.00 DEAL::0.211 1.00 DEAL::0.789 1.00 -DEAL::BDM1<2> face 0 generalized support points -DEAL::BDM1<2> face 1 generalized support points -DEAL::BDM1<2> face 2 generalized support points -DEAL::BDM1<2> face 3 generalized support points DEAL::BDM2<2> cell support points DEAL::BDM2<2> face 0 support points DEAL::BDM2<2> face 1 support points @@ -39,7 +35,3 @@ DEAL::0.211 0.211 DEAL::0.789 0.211 DEAL::0.211 0.789 DEAL::0.789 0.789 -DEAL::BDM2<2> face 0 generalized support points -DEAL::BDM2<2> face 1 generalized support points -DEAL::BDM2<2> face 2 generalized support points -DEAL::BDM2<2> face 3 generalized support points diff --git a/tests/fe/fe_support_points_common.h b/tests/fe/fe_support_points_common.h index f049d3fa7e..d54d6bed3f 100644 --- a/tests/fe/fe_support_points_common.h +++ b/tests/fe/fe_support_points_common.h @@ -89,24 +89,6 @@ check_support(const FiniteElement &finel, const char *name) for (unsigned int k = 0; k < cell_g_points.size(); ++k) deallog << std::setprecision(3) << cell_g_points[k] << std::endl; - - const std::vector> &face_g_points = - finel.get_generalized_face_support_points(); - const std::vector dummy_g_weights(face_g_points.size()); - - Quadrature qg(face_g_points, dummy_g_weights); - - for (const unsigned int i : GeometryInfo::face_indices()) - { - std::vector> q_points(qg.get_points().size()); - QProjector::project_to_face(qg, i, q_points); - Quadrature qp(q_points); - deallog << name << '<' << dim << '>' << " face " << i - << " generalized support points" << std::endl; - - for (unsigned int k = 0; k < face_points.size(); ++k) - deallog << std::setprecision(3) << qp.point(k) << std::endl; - } } diff --git a/tests/fe/fe_support_points_nedelec.output b/tests/fe/fe_support_points_nedelec.output index 8741328b8a..e6d187843a 100644 --- a/tests/fe/fe_support_points_nedelec.output +++ b/tests/fe/fe_support_points_nedelec.output @@ -9,10 +9,6 @@ DEAL::0.00 0.500 DEAL::1.00 0.500 DEAL::0.500 0.00 DEAL::0.500 1.00 -DEAL::Nedelec0<2> face 0 generalized support points -DEAL::Nedelec0<2> face 1 generalized support points -DEAL::Nedelec0<2> face 2 generalized support points -DEAL::Nedelec0<2> face 3 generalized support points DEAL::Nedelec0<3> cell support points DEAL::Nedelec0<3> face 0 support points DEAL::Nedelec0<3> face 1 support points @@ -33,12 +29,6 @@ DEAL::0.00 0.00 0.500 DEAL::1.00 0.00 0.500 DEAL::0.00 1.00 0.500 DEAL::1.00 1.00 0.500 -DEAL::Nedelec0<3> face 0 generalized support points -DEAL::Nedelec0<3> face 1 generalized support points -DEAL::Nedelec0<3> face 2 generalized support points -DEAL::Nedelec0<3> face 3 generalized support points -DEAL::Nedelec0<3> face 4 generalized support points -DEAL::Nedelec0<3> face 5 generalized support points DEAL::Nedelec1<2> cell support points DEAL::Nedelec1<2> face 0 support points DEAL::Nedelec1<2> face 1 support points @@ -57,10 +47,6 @@ DEAL::0.211 0.211 DEAL::0.789 0.211 DEAL::0.211 0.789 DEAL::0.789 0.789 -DEAL::Nedelec1<2> face 0 generalized support points -DEAL::Nedelec1<2> face 1 generalized support points -DEAL::Nedelec1<2> face 2 generalized support points -DEAL::Nedelec1<2> face 3 generalized support points DEAL::Nedelec1<3> cell support points DEAL::Nedelec1<3> face 0 support points DEAL::Nedelec1<3> face 1 support points @@ -125,9 +111,3 @@ DEAL::0.211 0.211 0.789 DEAL::0.789 0.211 0.789 DEAL::0.211 0.789 0.789 DEAL::0.789 0.789 0.789 -DEAL::Nedelec1<3> face 0 generalized support points -DEAL::Nedelec1<3> face 1 generalized support points -DEAL::Nedelec1<3> face 2 generalized support points -DEAL::Nedelec1<3> face 3 generalized support points -DEAL::Nedelec1<3> face 4 generalized support points -DEAL::Nedelec1<3> face 5 generalized support points diff --git a/tests/fe/fe_support_points_q.output b/tests/fe/fe_support_points_q.output index 4135948f92..11cc9484c5 100644 --- a/tests/fe/fe_support_points_q.output +++ b/tests/fe/fe_support_points_q.output @@ -21,18 +21,6 @@ DEAL::0.00 0.00 DEAL::1.00 0.00 DEAL::0.00 1.00 DEAL::1.00 1.00 -DEAL::Q1<2> face 0 generalized support points -DEAL::0.00 0.00 -DEAL::0.00 1.00 -DEAL::Q1<2> face 1 generalized support points -DEAL::1.00 0.00 -DEAL::1.00 1.00 -DEAL::Q1<2> face 2 generalized support points -DEAL::0.00 0.00 -DEAL::1.00 0.00 -DEAL::Q1<2> face 3 generalized support points -DEAL::0.00 1.00 -DEAL::1.00 1.00 DEAL::Q2<2> cell support points DEAL::0.00 0.00 DEAL::1.00 0.00 @@ -69,22 +57,6 @@ DEAL::1.00 0.500 DEAL::0.500 0.00 DEAL::0.500 1.00 DEAL::0.500 0.500 -DEAL::Q2<2> face 0 generalized support points -DEAL::0.00 0.00 -DEAL::0.00 1.00 -DEAL::0.00 0.500 -DEAL::Q2<2> face 1 generalized support points -DEAL::1.00 0.00 -DEAL::1.00 1.00 -DEAL::1.00 0.500 -DEAL::Q2<2> face 2 generalized support points -DEAL::0.00 0.00 -DEAL::1.00 0.00 -DEAL::0.500 0.00 -DEAL::Q2<2> face 3 generalized support points -DEAL::0.00 1.00 -DEAL::1.00 1.00 -DEAL::0.500 1.00 DEAL::Q3<2> cell support points DEAL::0.00 0.00 DEAL::1.00 0.00 @@ -139,26 +111,6 @@ DEAL::0.276 0.276 DEAL::0.724 0.276 DEAL::0.276 0.724 DEAL::0.724 0.724 -DEAL::Q3<2> face 0 generalized support points -DEAL::0.00 0.00 -DEAL::0.00 1.00 -DEAL::0.00 0.276 -DEAL::0.00 0.724 -DEAL::Q3<2> face 1 generalized support points -DEAL::1.00 0.00 -DEAL::1.00 1.00 -DEAL::1.00 0.276 -DEAL::1.00 0.724 -DEAL::Q3<2> face 2 generalized support points -DEAL::0.00 0.00 -DEAL::1.00 0.00 -DEAL::0.276 0.00 -DEAL::0.724 0.00 -DEAL::Q3<2> face 3 generalized support points -DEAL::0.00 1.00 -DEAL::1.00 1.00 -DEAL::0.276 1.00 -DEAL::0.724 1.00 DEAL::Q1<3> cell support points DEAL::0.00 0.00 0.00 DEAL::1.00 0.00 0.00 @@ -207,36 +159,6 @@ DEAL::0.00 0.00 1.00 DEAL::1.00 0.00 1.00 DEAL::0.00 1.00 1.00 DEAL::1.00 1.00 1.00 -DEAL::Q1<3> face 0 generalized support points -DEAL::0.00 0.00 0.00 -DEAL::0.00 1.00 0.00 -DEAL::0.00 0.00 1.00 -DEAL::0.00 1.00 1.00 -DEAL::Q1<3> face 1 generalized support points -DEAL::1.00 0.00 0.00 -DEAL::1.00 1.00 0.00 -DEAL::1.00 0.00 1.00 -DEAL::1.00 1.00 1.00 -DEAL::Q1<3> face 2 generalized support points -DEAL::0.00 0.00 0.00 -DEAL::0.00 0.00 1.00 -DEAL::1.00 0.00 0.00 -DEAL::1.00 0.00 1.00 -DEAL::Q1<3> face 3 generalized support points -DEAL::0.00 1.00 0.00 -DEAL::0.00 1.00 1.00 -DEAL::1.00 1.00 0.00 -DEAL::1.00 1.00 1.00 -DEAL::Q1<3> face 4 generalized support points -DEAL::0.00 0.00 0.00 -DEAL::1.00 0.00 0.00 -DEAL::0.00 1.00 0.00 -DEAL::1.00 1.00 0.00 -DEAL::Q1<3> face 5 generalized support points -DEAL::0.00 0.00 1.00 -DEAL::1.00 0.00 1.00 -DEAL::0.00 1.00 1.00 -DEAL::1.00 1.00 1.00 DEAL::Q2<3> cell support points DEAL::0.00 0.00 0.00 DEAL::1.00 0.00 0.00 @@ -353,63 +275,3 @@ DEAL::0.500 1.00 0.500 DEAL::0.500 0.500 0.00 DEAL::0.500 0.500 1.00 DEAL::0.500 0.500 0.500 -DEAL::Q2<3> face 0 generalized support points -DEAL::0.00 0.00 0.00 -DEAL::0.00 1.00 0.00 -DEAL::0.00 0.00 1.00 -DEAL::0.00 1.00 1.00 -DEAL::0.00 0.00 0.500 -DEAL::0.00 1.00 0.500 -DEAL::0.00 0.500 0.00 -DEAL::0.00 0.500 1.00 -DEAL::0.00 0.500 0.500 -DEAL::Q2<3> face 1 generalized support points -DEAL::1.00 0.00 0.00 -DEAL::1.00 1.00 0.00 -DEAL::1.00 0.00 1.00 -DEAL::1.00 1.00 1.00 -DEAL::1.00 0.00 0.500 -DEAL::1.00 1.00 0.500 -DEAL::1.00 0.500 0.00 -DEAL::1.00 0.500 1.00 -DEAL::1.00 0.500 0.500 -DEAL::Q2<3> face 2 generalized support points -DEAL::0.00 0.00 0.00 -DEAL::0.00 0.00 1.00 -DEAL::1.00 0.00 0.00 -DEAL::1.00 0.00 1.00 -DEAL::0.500 0.00 0.00 -DEAL::0.500 0.00 1.00 -DEAL::0.00 0.00 0.500 -DEAL::1.00 0.00 0.500 -DEAL::0.500 0.00 0.500 -DEAL::Q2<3> face 3 generalized support points -DEAL::0.00 1.00 0.00 -DEAL::0.00 1.00 1.00 -DEAL::1.00 1.00 0.00 -DEAL::1.00 1.00 1.00 -DEAL::0.500 1.00 0.00 -DEAL::0.500 1.00 1.00 -DEAL::0.00 1.00 0.500 -DEAL::1.00 1.00 0.500 -DEAL::0.500 1.00 0.500 -DEAL::Q2<3> face 4 generalized support points -DEAL::0.00 0.00 0.00 -DEAL::1.00 0.00 0.00 -DEAL::0.00 1.00 0.00 -DEAL::1.00 1.00 0.00 -DEAL::0.00 0.500 0.00 -DEAL::1.00 0.500 0.00 -DEAL::0.500 0.00 0.00 -DEAL::0.500 1.00 0.00 -DEAL::0.500 0.500 0.00 -DEAL::Q2<3> face 5 generalized support points -DEAL::0.00 0.00 1.00 -DEAL::1.00 0.00 1.00 -DEAL::0.00 1.00 1.00 -DEAL::1.00 1.00 1.00 -DEAL::0.00 0.500 1.00 -DEAL::1.00 0.500 1.00 -DEAL::0.500 0.00 1.00 -DEAL::0.500 1.00 1.00 -DEAL::0.500 0.500 1.00 diff --git a/tests/fe/fe_support_points_q_bubbles.output b/tests/fe/fe_support_points_q_bubbles.output index 80132096eb..29c7cad88b 100644 --- a/tests/fe/fe_support_points_q_bubbles.output +++ b/tests/fe/fe_support_points_q_bubbles.output @@ -23,18 +23,6 @@ DEAL::1.00 0.00 DEAL::0.00 1.00 DEAL::1.00 1.00 DEAL::0.500 0.500 -DEAL::Q_Bubbles1<2> face 0 generalized support points -DEAL::0.00 0.00 -DEAL::0.00 1.00 -DEAL::Q_Bubbles1<2> face 1 generalized support points -DEAL::1.00 0.00 -DEAL::1.00 1.00 -DEAL::Q_Bubbles1<2> face 2 generalized support points -DEAL::0.00 0.00 -DEAL::1.00 0.00 -DEAL::Q_Bubbles1<2> face 3 generalized support points -DEAL::0.00 1.00 -DEAL::1.00 1.00 DEAL::Q_Bubbles2<2> cell support points DEAL::0.00 0.00 DEAL::1.00 0.00 @@ -75,22 +63,6 @@ DEAL::0.500 1.00 DEAL::0.500 0.500 DEAL::0.500 0.500 DEAL::0.500 0.500 -DEAL::Q_Bubbles2<2> face 0 generalized support points -DEAL::0.00 0.00 -DEAL::0.00 1.00 -DEAL::0.00 0.500 -DEAL::Q_Bubbles2<2> face 1 generalized support points -DEAL::1.00 0.00 -DEAL::1.00 1.00 -DEAL::1.00 0.500 -DEAL::Q_Bubbles2<2> face 2 generalized support points -DEAL::0.00 0.00 -DEAL::1.00 0.00 -DEAL::0.500 0.00 -DEAL::Q_Bubbles2<2> face 3 generalized support points -DEAL::0.00 1.00 -DEAL::1.00 1.00 -DEAL::0.500 1.00 DEAL::Q_Bubbles3<2> cell support points DEAL::0.00 0.00 DEAL::1.00 0.00 @@ -149,26 +121,6 @@ DEAL::0.276 0.724 DEAL::0.724 0.724 DEAL::0.500 0.500 DEAL::0.500 0.500 -DEAL::Q_Bubbles3<2> face 0 generalized support points -DEAL::0.00 0.00 -DEAL::0.00 1.00 -DEAL::0.00 0.276 -DEAL::0.00 0.724 -DEAL::Q_Bubbles3<2> face 1 generalized support points -DEAL::1.00 0.00 -DEAL::1.00 1.00 -DEAL::1.00 0.276 -DEAL::1.00 0.724 -DEAL::Q_Bubbles3<2> face 2 generalized support points -DEAL::0.00 0.00 -DEAL::1.00 0.00 -DEAL::0.276 0.00 -DEAL::0.724 0.00 -DEAL::Q_Bubbles3<2> face 3 generalized support points -DEAL::0.00 1.00 -DEAL::1.00 1.00 -DEAL::0.276 1.00 -DEAL::0.724 1.00 DEAL::Q_Bubbles1<3> cell support points DEAL::0.00 0.00 0.00 DEAL::1.00 0.00 0.00 @@ -219,36 +171,6 @@ DEAL::1.00 0.00 1.00 DEAL::0.00 1.00 1.00 DEAL::1.00 1.00 1.00 DEAL::0.500 0.500 0.500 -DEAL::Q_Bubbles1<3> face 0 generalized support points -DEAL::0.00 0.00 0.00 -DEAL::0.00 1.00 0.00 -DEAL::0.00 0.00 1.00 -DEAL::0.00 1.00 1.00 -DEAL::Q_Bubbles1<3> face 1 generalized support points -DEAL::1.00 0.00 0.00 -DEAL::1.00 1.00 0.00 -DEAL::1.00 0.00 1.00 -DEAL::1.00 1.00 1.00 -DEAL::Q_Bubbles1<3> face 2 generalized support points -DEAL::0.00 0.00 0.00 -DEAL::0.00 0.00 1.00 -DEAL::1.00 0.00 0.00 -DEAL::1.00 0.00 1.00 -DEAL::Q_Bubbles1<3> face 3 generalized support points -DEAL::0.00 1.00 0.00 -DEAL::0.00 1.00 1.00 -DEAL::1.00 1.00 0.00 -DEAL::1.00 1.00 1.00 -DEAL::Q_Bubbles1<3> face 4 generalized support points -DEAL::0.00 0.00 0.00 -DEAL::1.00 0.00 0.00 -DEAL::0.00 1.00 0.00 -DEAL::1.00 1.00 0.00 -DEAL::Q_Bubbles1<3> face 5 generalized support points -DEAL::0.00 0.00 1.00 -DEAL::1.00 0.00 1.00 -DEAL::0.00 1.00 1.00 -DEAL::1.00 1.00 1.00 DEAL::Q_Bubbles2<3> cell support points DEAL::0.00 0.00 0.00 DEAL::1.00 0.00 0.00 @@ -371,63 +293,3 @@ DEAL::0.500 0.500 0.500 DEAL::0.500 0.500 0.500 DEAL::0.500 0.500 0.500 DEAL::0.500 0.500 0.500 -DEAL::Q_Bubbles2<3> face 0 generalized support points -DEAL::0.00 0.00 0.00 -DEAL::0.00 1.00 0.00 -DEAL::0.00 0.00 1.00 -DEAL::0.00 1.00 1.00 -DEAL::0.00 0.00 0.500 -DEAL::0.00 1.00 0.500 -DEAL::0.00 0.500 0.00 -DEAL::0.00 0.500 1.00 -DEAL::0.00 0.500 0.500 -DEAL::Q_Bubbles2<3> face 1 generalized support points -DEAL::1.00 0.00 0.00 -DEAL::1.00 1.00 0.00 -DEAL::1.00 0.00 1.00 -DEAL::1.00 1.00 1.00 -DEAL::1.00 0.00 0.500 -DEAL::1.00 1.00 0.500 -DEAL::1.00 0.500 0.00 -DEAL::1.00 0.500 1.00 -DEAL::1.00 0.500 0.500 -DEAL::Q_Bubbles2<3> face 2 generalized support points -DEAL::0.00 0.00 0.00 -DEAL::0.00 0.00 1.00 -DEAL::1.00 0.00 0.00 -DEAL::1.00 0.00 1.00 -DEAL::0.500 0.00 0.00 -DEAL::0.500 0.00 1.00 -DEAL::0.00 0.00 0.500 -DEAL::1.00 0.00 0.500 -DEAL::0.500 0.00 0.500 -DEAL::Q_Bubbles2<3> face 3 generalized support points -DEAL::0.00 1.00 0.00 -DEAL::0.00 1.00 1.00 -DEAL::1.00 1.00 0.00 -DEAL::1.00 1.00 1.00 -DEAL::0.500 1.00 0.00 -DEAL::0.500 1.00 1.00 -DEAL::0.00 1.00 0.500 -DEAL::1.00 1.00 0.500 -DEAL::0.500 1.00 0.500 -DEAL::Q_Bubbles2<3> face 4 generalized support points -DEAL::0.00 0.00 0.00 -DEAL::1.00 0.00 0.00 -DEAL::0.00 1.00 0.00 -DEAL::1.00 1.00 0.00 -DEAL::0.00 0.500 0.00 -DEAL::1.00 0.500 0.00 -DEAL::0.500 0.00 0.00 -DEAL::0.500 1.00 0.00 -DEAL::0.500 0.500 0.00 -DEAL::Q_Bubbles2<3> face 5 generalized support points -DEAL::0.00 0.00 1.00 -DEAL::1.00 0.00 1.00 -DEAL::0.00 1.00 1.00 -DEAL::1.00 1.00 1.00 -DEAL::0.00 0.500 1.00 -DEAL::1.00 0.500 1.00 -DEAL::0.500 0.00 1.00 -DEAL::0.500 1.00 1.00 -DEAL::0.500 0.500 1.00 diff --git a/tests/fe/fe_support_points_q_dg0.output b/tests/fe/fe_support_points_q_dg0.output index 3b02439e85..312509b737 100644 --- a/tests/fe/fe_support_points_q_dg0.output +++ b/tests/fe/fe_support_points_q_dg0.output @@ -23,18 +23,6 @@ DEAL::1.00 0.00 DEAL::0.00 1.00 DEAL::1.00 1.00 DEAL::0.500 0.500 -DEAL::Q_DG01<2> face 0 generalized support points -DEAL::0.00 0.00 -DEAL::0.00 1.00 -DEAL::Q_DG01<2> face 1 generalized support points -DEAL::1.00 0.00 -DEAL::1.00 1.00 -DEAL::Q_DG01<2> face 2 generalized support points -DEAL::0.00 0.00 -DEAL::1.00 0.00 -DEAL::Q_DG01<2> face 3 generalized support points -DEAL::0.00 1.00 -DEAL::1.00 1.00 DEAL::Q_DG02<2> cell support points DEAL::0.00 0.00 DEAL::1.00 0.00 @@ -73,22 +61,6 @@ DEAL::0.500 0.00 DEAL::0.500 1.00 DEAL::0.500 0.500 DEAL::0.500 0.500 -DEAL::Q_DG02<2> face 0 generalized support points -DEAL::0.00 0.00 -DEAL::0.00 1.00 -DEAL::0.00 0.500 -DEAL::Q_DG02<2> face 1 generalized support points -DEAL::1.00 0.00 -DEAL::1.00 1.00 -DEAL::1.00 0.500 -DEAL::Q_DG02<2> face 2 generalized support points -DEAL::0.00 0.00 -DEAL::1.00 0.00 -DEAL::0.500 0.00 -DEAL::Q_DG02<2> face 3 generalized support points -DEAL::0.00 1.00 -DEAL::1.00 1.00 -DEAL::0.500 1.00 DEAL::Q_DG03<2> cell support points DEAL::0.00 0.00 DEAL::1.00 0.00 @@ -145,26 +117,6 @@ DEAL::0.724 0.276 DEAL::0.276 0.724 DEAL::0.724 0.724 DEAL::0.500 0.500 -DEAL::Q_DG03<2> face 0 generalized support points -DEAL::0.00 0.00 -DEAL::0.00 1.00 -DEAL::0.00 0.276 -DEAL::0.00 0.724 -DEAL::Q_DG03<2> face 1 generalized support points -DEAL::1.00 0.00 -DEAL::1.00 1.00 -DEAL::1.00 0.276 -DEAL::1.00 0.724 -DEAL::Q_DG03<2> face 2 generalized support points -DEAL::0.00 0.00 -DEAL::1.00 0.00 -DEAL::0.276 0.00 -DEAL::0.724 0.00 -DEAL::Q_DG03<2> face 3 generalized support points -DEAL::0.00 1.00 -DEAL::1.00 1.00 -DEAL::0.276 1.00 -DEAL::0.724 1.00 DEAL::Q_DG01<3> cell support points DEAL::0.00 0.00 0.00 DEAL::1.00 0.00 0.00 @@ -215,36 +167,6 @@ DEAL::1.00 0.00 1.00 DEAL::0.00 1.00 1.00 DEAL::1.00 1.00 1.00 DEAL::0.500 0.500 0.500 -DEAL::Q_DG01<3> face 0 generalized support points -DEAL::0.00 0.00 0.00 -DEAL::0.00 1.00 0.00 -DEAL::0.00 0.00 1.00 -DEAL::0.00 1.00 1.00 -DEAL::Q_DG01<3> face 1 generalized support points -DEAL::1.00 0.00 0.00 -DEAL::1.00 1.00 0.00 -DEAL::1.00 0.00 1.00 -DEAL::1.00 1.00 1.00 -DEAL::Q_DG01<3> face 2 generalized support points -DEAL::0.00 0.00 0.00 -DEAL::0.00 0.00 1.00 -DEAL::1.00 0.00 0.00 -DEAL::1.00 0.00 1.00 -DEAL::Q_DG01<3> face 3 generalized support points -DEAL::0.00 1.00 0.00 -DEAL::0.00 1.00 1.00 -DEAL::1.00 1.00 0.00 -DEAL::1.00 1.00 1.00 -DEAL::Q_DG01<3> face 4 generalized support points -DEAL::0.00 0.00 0.00 -DEAL::1.00 0.00 0.00 -DEAL::0.00 1.00 0.00 -DEAL::1.00 1.00 0.00 -DEAL::Q_DG01<3> face 5 generalized support points -DEAL::0.00 0.00 1.00 -DEAL::1.00 0.00 1.00 -DEAL::0.00 1.00 1.00 -DEAL::1.00 1.00 1.00 DEAL::Q_DG02<3> cell support points DEAL::0.00 0.00 0.00 DEAL::1.00 0.00 0.00 @@ -363,63 +285,3 @@ DEAL::0.500 0.500 0.00 DEAL::0.500 0.500 1.00 DEAL::0.500 0.500 0.500 DEAL::0.500 0.500 0.500 -DEAL::Q_DG02<3> face 0 generalized support points -DEAL::0.00 0.00 0.00 -DEAL::0.00 1.00 0.00 -DEAL::0.00 0.00 1.00 -DEAL::0.00 1.00 1.00 -DEAL::0.00 0.00 0.500 -DEAL::0.00 1.00 0.500 -DEAL::0.00 0.500 0.00 -DEAL::0.00 0.500 1.00 -DEAL::0.00 0.500 0.500 -DEAL::Q_DG02<3> face 1 generalized support points -DEAL::1.00 0.00 0.00 -DEAL::1.00 1.00 0.00 -DEAL::1.00 0.00 1.00 -DEAL::1.00 1.00 1.00 -DEAL::1.00 0.00 0.500 -DEAL::1.00 1.00 0.500 -DEAL::1.00 0.500 0.00 -DEAL::1.00 0.500 1.00 -DEAL::1.00 0.500 0.500 -DEAL::Q_DG02<3> face 2 generalized support points -DEAL::0.00 0.00 0.00 -DEAL::0.00 0.00 1.00 -DEAL::1.00 0.00 0.00 -DEAL::1.00 0.00 1.00 -DEAL::0.500 0.00 0.00 -DEAL::0.500 0.00 1.00 -DEAL::0.00 0.00 0.500 -DEAL::1.00 0.00 0.500 -DEAL::0.500 0.00 0.500 -DEAL::Q_DG02<3> face 3 generalized support points -DEAL::0.00 1.00 0.00 -DEAL::0.00 1.00 1.00 -DEAL::1.00 1.00 0.00 -DEAL::1.00 1.00 1.00 -DEAL::0.500 1.00 0.00 -DEAL::0.500 1.00 1.00 -DEAL::0.00 1.00 0.500 -DEAL::1.00 1.00 0.500 -DEAL::0.500 1.00 0.500 -DEAL::Q_DG02<3> face 4 generalized support points -DEAL::0.00 0.00 0.00 -DEAL::1.00 0.00 0.00 -DEAL::0.00 1.00 0.00 -DEAL::1.00 1.00 0.00 -DEAL::0.00 0.500 0.00 -DEAL::1.00 0.500 0.00 -DEAL::0.500 0.00 0.00 -DEAL::0.500 1.00 0.00 -DEAL::0.500 0.500 0.00 -DEAL::Q_DG02<3> face 5 generalized support points -DEAL::0.00 0.00 1.00 -DEAL::1.00 0.00 1.00 -DEAL::0.00 1.00 1.00 -DEAL::1.00 1.00 1.00 -DEAL::0.00 0.500 1.00 -DEAL::1.00 0.500 1.00 -DEAL::0.500 0.00 1.00 -DEAL::0.500 1.00 1.00 -DEAL::0.500 0.500 1.00 diff --git a/tests/fe/fe_support_points_q_hierarchical.output b/tests/fe/fe_support_points_q_hierarchical.output index 1aeb3641dd..afff8f7ab2 100644 --- a/tests/fe/fe_support_points_q_hierarchical.output +++ b/tests/fe/fe_support_points_q_hierarchical.output @@ -9,10 +9,6 @@ DEAL::0.00 0.00 DEAL::1.00 0.00 DEAL::0.00 1.00 DEAL::1.00 1.00 -DEAL::Q_Hierarchical1<2> face 0 generalized support points -DEAL::Q_Hierarchical1<2> face 1 generalized support points -DEAL::Q_Hierarchical1<2> face 2 generalized support points -DEAL::Q_Hierarchical1<2> face 3 generalized support points DEAL::Q_Hierarchical2<2> cell support points DEAL::Q_Hierarchical2<2> face 0 support points DEAL::Q_Hierarchical2<2> face 1 support points @@ -28,10 +24,6 @@ DEAL::1.00 0.500 DEAL::0.500 0.00 DEAL::0.500 1.00 DEAL::0.500 0.500 -DEAL::Q_Hierarchical2<2> face 0 generalized support points -DEAL::Q_Hierarchical2<2> face 1 generalized support points -DEAL::Q_Hierarchical2<2> face 2 generalized support points -DEAL::Q_Hierarchical2<2> face 3 generalized support points DEAL::Q_Hierarchical3<2> cell support points DEAL::Q_Hierarchical3<2> face 0 support points DEAL::Q_Hierarchical3<2> face 1 support points @@ -54,10 +46,6 @@ DEAL::0.500 0.500 DEAL::0.500 0.500 DEAL::0.500 0.500 DEAL::0.500 0.500 -DEAL::Q_Hierarchical3<2> face 0 generalized support points -DEAL::Q_Hierarchical3<2> face 1 generalized support points -DEAL::Q_Hierarchical3<2> face 2 generalized support points -DEAL::Q_Hierarchical3<2> face 3 generalized support points DEAL::Q_Hierarchical1<3> cell support points DEAL::Q_Hierarchical1<3> face 0 support points DEAL::Q_Hierarchical1<3> face 1 support points @@ -74,12 +62,6 @@ DEAL::0.00 0.00 1.00 DEAL::1.00 0.00 1.00 DEAL::0.00 1.00 1.00 DEAL::1.00 1.00 1.00 -DEAL::Q_Hierarchical1<3> face 0 generalized support points -DEAL::Q_Hierarchical1<3> face 1 generalized support points -DEAL::Q_Hierarchical1<3> face 2 generalized support points -DEAL::Q_Hierarchical1<3> face 3 generalized support points -DEAL::Q_Hierarchical1<3> face 4 generalized support points -DEAL::Q_Hierarchical1<3> face 5 generalized support points DEAL::Q_Hierarchical2<3> cell support points DEAL::Q_Hierarchical2<3> face 0 support points DEAL::Q_Hierarchical2<3> face 1 support points @@ -115,9 +97,3 @@ DEAL::0.500 1.00 0.500 DEAL::0.500 0.500 0.00 DEAL::0.500 0.500 1.00 DEAL::0.500 0.500 0.500 -DEAL::Q_Hierarchical2<3> face 0 generalized support points -DEAL::Q_Hierarchical2<3> face 1 generalized support points -DEAL::Q_Hierarchical2<3> face 2 generalized support points -DEAL::Q_Hierarchical2<3> face 3 generalized support points -DEAL::Q_Hierarchical2<3> face 4 generalized support points -DEAL::Q_Hierarchical2<3> face 5 generalized support points diff --git a/tests/fe/fe_support_points_q_iso_q1.output b/tests/fe/fe_support_points_q_iso_q1.output index b33a5d4594..0afa01f8c2 100644 --- a/tests/fe/fe_support_points_q_iso_q1.output +++ b/tests/fe/fe_support_points_q_iso_q1.output @@ -21,18 +21,6 @@ DEAL::0.00 0.00 DEAL::1.00 0.00 DEAL::0.00 1.00 DEAL::1.00 1.00 -DEAL::Q_iso_Q11<2> face 0 generalized support points -DEAL::0.00 0.00 -DEAL::0.00 1.00 -DEAL::Q_iso_Q11<2> face 1 generalized support points -DEAL::1.00 0.00 -DEAL::1.00 1.00 -DEAL::Q_iso_Q11<2> face 2 generalized support points -DEAL::0.00 0.00 -DEAL::1.00 0.00 -DEAL::Q_iso_Q11<2> face 3 generalized support points -DEAL::0.00 1.00 -DEAL::1.00 1.00 DEAL::Q_iso_Q12<2> cell support points DEAL::0.00 0.00 DEAL::1.00 0.00 @@ -69,22 +57,6 @@ DEAL::1.00 0.500 DEAL::0.500 0.00 DEAL::0.500 1.00 DEAL::0.500 0.500 -DEAL::Q_iso_Q12<2> face 0 generalized support points -DEAL::0.00 0.00 -DEAL::0.00 1.00 -DEAL::0.00 0.500 -DEAL::Q_iso_Q12<2> face 1 generalized support points -DEAL::1.00 0.00 -DEAL::1.00 1.00 -DEAL::1.00 0.500 -DEAL::Q_iso_Q12<2> face 2 generalized support points -DEAL::0.00 0.00 -DEAL::1.00 0.00 -DEAL::0.500 0.00 -DEAL::Q_iso_Q12<2> face 3 generalized support points -DEAL::0.00 1.00 -DEAL::1.00 1.00 -DEAL::0.500 1.00 DEAL::Q_iso_Q13<2> cell support points DEAL::0.00 0.00 DEAL::1.00 0.00 @@ -139,26 +111,6 @@ DEAL::0.333 0.333 DEAL::0.667 0.333 DEAL::0.333 0.667 DEAL::0.667 0.667 -DEAL::Q_iso_Q13<2> face 0 generalized support points -DEAL::0.00 0.00 -DEAL::0.00 1.00 -DEAL::0.00 0.333 -DEAL::0.00 0.667 -DEAL::Q_iso_Q13<2> face 1 generalized support points -DEAL::1.00 0.00 -DEAL::1.00 1.00 -DEAL::1.00 0.333 -DEAL::1.00 0.667 -DEAL::Q_iso_Q13<2> face 2 generalized support points -DEAL::0.00 0.00 -DEAL::1.00 0.00 -DEAL::0.333 0.00 -DEAL::0.667 0.00 -DEAL::Q_iso_Q13<2> face 3 generalized support points -DEAL::0.00 1.00 -DEAL::1.00 1.00 -DEAL::0.333 1.00 -DEAL::0.667 1.00 DEAL::Q_iso_Q11<3> cell support points DEAL::0.00 0.00 0.00 DEAL::1.00 0.00 0.00 @@ -207,36 +159,6 @@ DEAL::0.00 0.00 1.00 DEAL::1.00 0.00 1.00 DEAL::0.00 1.00 1.00 DEAL::1.00 1.00 1.00 -DEAL::Q_iso_Q11<3> face 0 generalized support points -DEAL::0.00 0.00 0.00 -DEAL::0.00 1.00 0.00 -DEAL::0.00 0.00 1.00 -DEAL::0.00 1.00 1.00 -DEAL::Q_iso_Q11<3> face 1 generalized support points -DEAL::1.00 0.00 0.00 -DEAL::1.00 1.00 0.00 -DEAL::1.00 0.00 1.00 -DEAL::1.00 1.00 1.00 -DEAL::Q_iso_Q11<3> face 2 generalized support points -DEAL::0.00 0.00 0.00 -DEAL::0.00 0.00 1.00 -DEAL::1.00 0.00 0.00 -DEAL::1.00 0.00 1.00 -DEAL::Q_iso_Q11<3> face 3 generalized support points -DEAL::0.00 1.00 0.00 -DEAL::0.00 1.00 1.00 -DEAL::1.00 1.00 0.00 -DEAL::1.00 1.00 1.00 -DEAL::Q_iso_Q11<3> face 4 generalized support points -DEAL::0.00 0.00 0.00 -DEAL::1.00 0.00 0.00 -DEAL::0.00 1.00 0.00 -DEAL::1.00 1.00 0.00 -DEAL::Q_iso_Q11<3> face 5 generalized support points -DEAL::0.00 0.00 1.00 -DEAL::1.00 0.00 1.00 -DEAL::0.00 1.00 1.00 -DEAL::1.00 1.00 1.00 DEAL::Q_iso_Q12<3> cell support points DEAL::0.00 0.00 0.00 DEAL::1.00 0.00 0.00 @@ -353,63 +275,3 @@ DEAL::0.500 1.00 0.500 DEAL::0.500 0.500 0.00 DEAL::0.500 0.500 1.00 DEAL::0.500 0.500 0.500 -DEAL::Q_iso_Q12<3> face 0 generalized support points -DEAL::0.00 0.00 0.00 -DEAL::0.00 1.00 0.00 -DEAL::0.00 0.00 1.00 -DEAL::0.00 1.00 1.00 -DEAL::0.00 0.00 0.500 -DEAL::0.00 1.00 0.500 -DEAL::0.00 0.500 0.00 -DEAL::0.00 0.500 1.00 -DEAL::0.00 0.500 0.500 -DEAL::Q_iso_Q12<3> face 1 generalized support points -DEAL::1.00 0.00 0.00 -DEAL::1.00 1.00 0.00 -DEAL::1.00 0.00 1.00 -DEAL::1.00 1.00 1.00 -DEAL::1.00 0.00 0.500 -DEAL::1.00 1.00 0.500 -DEAL::1.00 0.500 0.00 -DEAL::1.00 0.500 1.00 -DEAL::1.00 0.500 0.500 -DEAL::Q_iso_Q12<3> face 2 generalized support points -DEAL::0.00 0.00 0.00 -DEAL::0.00 0.00 1.00 -DEAL::1.00 0.00 0.00 -DEAL::1.00 0.00 1.00 -DEAL::0.500 0.00 0.00 -DEAL::0.500 0.00 1.00 -DEAL::0.00 0.00 0.500 -DEAL::1.00 0.00 0.500 -DEAL::0.500 0.00 0.500 -DEAL::Q_iso_Q12<3> face 3 generalized support points -DEAL::0.00 1.00 0.00 -DEAL::0.00 1.00 1.00 -DEAL::1.00 1.00 0.00 -DEAL::1.00 1.00 1.00 -DEAL::0.500 1.00 0.00 -DEAL::0.500 1.00 1.00 -DEAL::0.00 1.00 0.500 -DEAL::1.00 1.00 0.500 -DEAL::0.500 1.00 0.500 -DEAL::Q_iso_Q12<3> face 4 generalized support points -DEAL::0.00 0.00 0.00 -DEAL::1.00 0.00 0.00 -DEAL::0.00 1.00 0.00 -DEAL::1.00 1.00 0.00 -DEAL::0.00 0.500 0.00 -DEAL::1.00 0.500 0.00 -DEAL::0.500 0.00 0.00 -DEAL::0.500 1.00 0.00 -DEAL::0.500 0.500 0.00 -DEAL::Q_iso_Q12<3> face 5 generalized support points -DEAL::0.00 0.00 1.00 -DEAL::1.00 0.00 1.00 -DEAL::0.00 1.00 1.00 -DEAL::1.00 1.00 1.00 -DEAL::0.00 0.500 1.00 -DEAL::1.00 0.500 1.00 -DEAL::0.500 0.00 1.00 -DEAL::0.500 1.00 1.00 -DEAL::0.500 0.500 1.00 diff --git a/tests/fe/fe_support_points_rt.output b/tests/fe/fe_support_points_rt.output index 5e9c6d6f98..0ff01956f8 100644 --- a/tests/fe/fe_support_points_rt.output +++ b/tests/fe/fe_support_points_rt.output @@ -9,10 +9,6 @@ DEAL::0.00 0.500 DEAL::1.00 0.500 DEAL::0.500 0.00 DEAL::0.500 1.00 -DEAL::RaviartThomas0<2> face 0 generalized support points -DEAL::RaviartThomas0<2> face 1 generalized support points -DEAL::RaviartThomas0<2> face 2 generalized support points -DEAL::RaviartThomas0<2> face 3 generalized support points DEAL::RaviartThomas0<3> cell support points DEAL::RaviartThomas0<3> face 0 support points DEAL::RaviartThomas0<3> face 1 support points @@ -27,12 +23,6 @@ DEAL::0.500 0.00 0.500 DEAL::0.500 1.00 0.500 DEAL::0.500 0.500 0.00 DEAL::0.500 0.500 1.00 -DEAL::RaviartThomas0<3> face 0 generalized support points -DEAL::RaviartThomas0<3> face 1 generalized support points -DEAL::RaviartThomas0<3> face 2 generalized support points -DEAL::RaviartThomas0<3> face 3 generalized support points -DEAL::RaviartThomas0<3> face 4 generalized support points -DEAL::RaviartThomas0<3> face 5 generalized support points DEAL::RaviartThomas1<2> cell support points DEAL::RaviartThomas1<2> face 0 support points DEAL::RaviartThomas1<2> face 1 support points @@ -51,10 +41,6 @@ DEAL::0.211 0.211 DEAL::0.789 0.211 DEAL::0.211 0.789 DEAL::0.789 0.789 -DEAL::RaviartThomas1<2> face 0 generalized support points -DEAL::RaviartThomas1<2> face 1 generalized support points -DEAL::RaviartThomas1<2> face 2 generalized support points -DEAL::RaviartThomas1<2> face 3 generalized support points DEAL::RaviartThomas1<3> cell support points DEAL::RaviartThomas1<3> face 0 support points DEAL::RaviartThomas1<3> face 1 support points @@ -95,9 +81,3 @@ DEAL::0.211 0.211 0.789 DEAL::0.789 0.211 0.789 DEAL::0.211 0.789 0.789 DEAL::0.789 0.789 0.789 -DEAL::RaviartThomas1<3> face 0 generalized support points -DEAL::RaviartThomas1<3> face 1 generalized support points -DEAL::RaviartThomas1<3> face 2 generalized support points -DEAL::RaviartThomas1<3> face 3 generalized support points -DEAL::RaviartThomas1<3> face 4 generalized support points -DEAL::RaviartThomas1<3> face 5 generalized support points diff --git a/tests/fe/fe_support_points_sys_01.output b/tests/fe/fe_support_points_sys_01.output index b78bb01838..f96c02b050 100644 --- a/tests/fe/fe_support_points_sys_01.output +++ b/tests/fe/fe_support_points_sys_01.output @@ -45,31 +45,3 @@ DEAL::0.00 0.00 DEAL::1.00 0.00 DEAL::0.00 1.00 DEAL::1.00 1.00 -DEAL::FE_Q<2>(1)3<2> face 0 generalized support points -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::FE_Q<2>(1)3<2> face 1 generalized support points -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::FE_Q<2>(1)3<2> face 2 generalized support points -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::FE_Q<2>(1)3<2> face 3 generalized support points -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 diff --git a/tests/fe/fe_support_points_sys_02.output b/tests/fe/fe_support_points_sys_02.output index 8d91b17137..729f803617 100644 --- a/tests/fe/fe_support_points_sys_02.output +++ b/tests/fe/fe_support_points_sys_02.output @@ -32,7 +32,3 @@ DEAL::1.00 0.500 DEAL::0.00 1.00 DEAL::0.500 1.00 DEAL::1.00 1.00 -DEAL::FE_DGQ<2>(2)2<2> face 0 generalized support points -DEAL::FE_DGQ<2>(2)2<2> face 1 generalized support points -DEAL::FE_DGQ<2>(2)2<2> face 2 generalized support points -DEAL::FE_DGQ<2>(2)2<2> face 3 generalized support points diff --git a/tests/fe/fe_support_points_sys_03.output b/tests/fe/fe_support_points_sys_03.output index 623dee325c..ea951142b2 100644 --- a/tests/fe/fe_support_points_sys_03.output +++ b/tests/fe/fe_support_points_sys_03.output @@ -68,31 +68,3 @@ DEAL::0.00 0.500 DEAL::0.500 0.500 DEAL::1.00 0.500 DEAL::0.500 1.00 -DEAL::FE_Q<2>(1)3FE_DGQ<2>(2)2<2> face 0 generalized support points -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::FE_Q<2>(1)3FE_DGQ<2>(2)2<2> face 1 generalized support points -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::FE_Q<2>(1)3FE_DGQ<2>(2)2<2> face 2 generalized support points -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::FE_Q<2>(1)3FE_DGQ<2>(2)2<2> face 3 generalized support points -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 diff --git a/tests/fe/fe_support_points_sys_04.output b/tests/fe/fe_support_points_sys_04.output index 0558ece7e1..914001eec8 100644 --- a/tests/fe/fe_support_points_sys_04.output +++ b/tests/fe/fe_support_points_sys_04.output @@ -1,5 +1,5 @@ -DEAL::FE_DGQ<2>(2)2FE_DGQ<2>(2)2FE_Q<2>(QIterated<1>(QTrapez<1>(),3))3<2> cell support points +DEAL::FE_DGQ<2>(2)2FE_DGQ<2>(2)2FE_Q<2>(QIterated<1>(QTrapez<1>(), 3))3<2> cell support points DEAL::0.00 0.00 DEAL::0.00 0.00 DEAL::0.00 0.00 @@ -84,7 +84,7 @@ DEAL::0.333 0.333 DEAL::0.667 0.333 DEAL::0.333 0.667 DEAL::0.667 0.667 -DEAL::FE_DGQ<2>(2)2FE_DGQ<2>(2)2FE_Q<2>(QIterated<1>(QTrapez<1>(),3))3<2> face 0 support points +DEAL::FE_DGQ<2>(2)2FE_DGQ<2>(2)2FE_Q<2>(QIterated<1>(QTrapez<1>(), 3))3<2> face 0 support points DEAL::0.00 0.00 DEAL::0.00 0.00 DEAL::0.00 0.00 @@ -97,7 +97,7 @@ DEAL::0.00 0.333 DEAL::0.00 0.667 DEAL::0.00 0.333 DEAL::0.00 0.667 -DEAL::FE_DGQ<2>(2)2FE_DGQ<2>(2)2FE_Q<2>(QIterated<1>(QTrapez<1>(),3))3<2> face 1 support points +DEAL::FE_DGQ<2>(2)2FE_DGQ<2>(2)2FE_Q<2>(QIterated<1>(QTrapez<1>(), 3))3<2> face 1 support points DEAL::1.00 0.00 DEAL::1.00 0.00 DEAL::1.00 0.00 @@ -110,7 +110,7 @@ DEAL::1.00 0.333 DEAL::1.00 0.667 DEAL::1.00 0.333 DEAL::1.00 0.667 -DEAL::FE_DGQ<2>(2)2FE_DGQ<2>(2)2FE_Q<2>(QIterated<1>(QTrapez<1>(),3))3<2> face 2 support points +DEAL::FE_DGQ<2>(2)2FE_DGQ<2>(2)2FE_Q<2>(QIterated<1>(QTrapez<1>(), 3))3<2> face 2 support points DEAL::0.00 0.00 DEAL::0.00 0.00 DEAL::0.00 0.00 @@ -123,7 +123,7 @@ DEAL::0.333 0.00 DEAL::0.667 0.00 DEAL::0.333 0.00 DEAL::0.667 0.00 -DEAL::FE_DGQ<2>(2)2FE_DGQ<2>(2)2FE_Q<2>(QIterated<1>(QTrapez<1>(),3))3<2> face 3 support points +DEAL::FE_DGQ<2>(2)2FE_DGQ<2>(2)2FE_Q<2>(QIterated<1>(QTrapez<1>(), 3))3<2> face 3 support points DEAL::0.00 1.00 DEAL::0.00 1.00 DEAL::0.00 1.00 @@ -136,7 +136,7 @@ DEAL::0.333 1.00 DEAL::0.667 1.00 DEAL::0.333 1.00 DEAL::0.667 1.00 -DEAL::FE_DGQ<2>(2)2FE_DGQ<2>(2)2FE_Q<2>(QIterated<1>(QTrapez<1>(),3))3<2> cell generalized support points +DEAL::FE_DGQ<2>(2)2FE_DGQ<2>(2)2FE_Q<2>(QIterated<1>(QTrapez<1>(), 3))3<2> cell generalized support points DEAL::0.00 0.00 DEAL::0.500 0.00 DEAL::1.00 0.00 @@ -158,55 +158,3 @@ DEAL::0.333 0.333 DEAL::0.667 0.333 DEAL::0.333 0.667 DEAL::0.667 0.667 -DEAL::FE_DGQ<2>(2)2FE_DGQ<2>(2)2FE_Q<2>(QIterated<1>(QTrapez<1>(),3))3<2> face 0 generalized support points -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 0.333 -DEAL::0.00 0.667 -DEAL::0.00 0.333 -DEAL::0.00 0.667 -DEAL::0.00 0.333 -DEAL::0.00 0.667 -DEAL::FE_DGQ<2>(2)2FE_DGQ<2>(2)2FE_Q<2>(QIterated<1>(QTrapez<1>(),3))3<2> face 1 generalized support points -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 0.333 -DEAL::1.00 0.667 -DEAL::1.00 0.333 -DEAL::1.00 0.667 -DEAL::1.00 0.333 -DEAL::1.00 0.667 -DEAL::FE_DGQ<2>(2)2FE_DGQ<2>(2)2FE_Q<2>(QIterated<1>(QTrapez<1>(),3))3<2> face 2 generalized support points -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::0.333 0.00 -DEAL::0.667 0.00 -DEAL::0.333 0.00 -DEAL::0.667 0.00 -DEAL::0.333 0.00 -DEAL::0.667 0.00 -DEAL::FE_DGQ<2>(2)2FE_DGQ<2>(2)2FE_Q<2>(QIterated<1>(QTrapez<1>(),3))3<2> face 3 generalized support points -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::0.333 1.00 -DEAL::0.667 1.00 -DEAL::0.333 1.00 -DEAL::0.667 1.00 -DEAL::0.333 1.00 -DEAL::0.667 1.00 diff --git a/tests/fe/fe_support_points_sys_05.output b/tests/fe/fe_support_points_sys_05.output index 7303ae05cb..19eff24002 100644 --- a/tests/fe/fe_support_points_sys_05.output +++ b/tests/fe/fe_support_points_sys_05.output @@ -1,5 +1,5 @@ -DEAL::(FESystem<2>(FE_Q<2>(1),3))3FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(),3))1FE_Q<2>(1)3<2> cell support points +DEAL::(FESystem<2>(FE_Q<2>(1), 3))3FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(), 3))1FE_Q<2>(1)3<2> cell support points DEAL::0.00 0.00 DEAL::0.00 0.00 DEAL::0.00 0.00 @@ -64,7 +64,7 @@ DEAL::0.00 1.00 DEAL::0.333 1.00 DEAL::0.667 1.00 DEAL::1.00 1.00 -DEAL::(FESystem<2>(FE_Q<2>(1),3))3FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(),3))1FE_Q<2>(1)3<2> face 0 support points +DEAL::(FESystem<2>(FE_Q<2>(1), 3))3FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(), 3))1FE_Q<2>(1)3<2> face 0 support points DEAL::0.00 0.00 DEAL::0.00 0.00 DEAL::0.00 0.00 @@ -89,7 +89,7 @@ DEAL::0.00 1.00 DEAL::0.00 1.00 DEAL::0.00 1.00 DEAL::0.00 1.00 -DEAL::(FESystem<2>(FE_Q<2>(1),3))3FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(),3))1FE_Q<2>(1)3<2> face 1 support points +DEAL::(FESystem<2>(FE_Q<2>(1), 3))3FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(), 3))1FE_Q<2>(1)3<2> face 1 support points DEAL::1.00 0.00 DEAL::1.00 0.00 DEAL::1.00 0.00 @@ -114,7 +114,7 @@ DEAL::1.00 1.00 DEAL::1.00 1.00 DEAL::1.00 1.00 DEAL::1.00 1.00 -DEAL::(FESystem<2>(FE_Q<2>(1),3))3FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(),3))1FE_Q<2>(1)3<2> face 2 support points +DEAL::(FESystem<2>(FE_Q<2>(1), 3))3FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(), 3))1FE_Q<2>(1)3<2> face 2 support points DEAL::0.00 0.00 DEAL::0.00 0.00 DEAL::0.00 0.00 @@ -139,7 +139,7 @@ DEAL::1.00 0.00 DEAL::1.00 0.00 DEAL::1.00 0.00 DEAL::1.00 0.00 -DEAL::(FESystem<2>(FE_Q<2>(1),3))3FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(),3))1FE_Q<2>(1)3<2> face 3 support points +DEAL::(FESystem<2>(FE_Q<2>(1), 3))3FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(), 3))1FE_Q<2>(1)3<2> face 3 support points DEAL::0.00 1.00 DEAL::0.00 1.00 DEAL::0.00 1.00 @@ -164,7 +164,7 @@ DEAL::1.00 1.00 DEAL::1.00 1.00 DEAL::1.00 1.00 DEAL::1.00 1.00 -DEAL::(FESystem<2>(FE_Q<2>(1),3))3FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(),3))1FE_Q<2>(1)3<2> cell generalized support points +DEAL::(FESystem<2>(FE_Q<2>(1), 3))3FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(), 3))1FE_Q<2>(1)3<2> cell generalized support points DEAL::0.00 0.00 DEAL::1.00 0.00 DEAL::0.00 1.00 @@ -181,103 +181,3 @@ DEAL::0.667 0.667 DEAL::1.00 0.667 DEAL::0.333 1.00 DEAL::0.667 1.00 -DEAL::(FESystem<2>(FE_Q<2>(1),3))3FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(),3))1FE_Q<2>(1)3<2> face 0 generalized support points -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::(FESystem<2>(FE_Q<2>(1),3))3FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(),3))1FE_Q<2>(1)3<2> face 1 generalized support points -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::(FESystem<2>(FE_Q<2>(1),3))3FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(),3))1FE_Q<2>(1)3<2> face 2 generalized support points -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::(FESystem<2>(FE_Q<2>(1),3))3FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(),3))1FE_Q<2>(1)3<2> face 3 generalized support points -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 diff --git a/tests/fe/fe_support_points_sys_06.output b/tests/fe/fe_support_points_sys_06.output index 81c7e149a1..9da5ef1989 100644 --- a/tests/fe/fe_support_points_sys_06.output +++ b/tests/fe/fe_support_points_sys_06.output @@ -1,5 +1,5 @@ -DEAL::FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(),3))1FESystem<2>(FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(),3)),3)1FESystem<2>(FE_Q<2>(QIterated<1>(QTrapez<1>(),2)),3, FE_DGQ<2>(0),1)2<2> cell support points +DEAL::FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(), 3))1FESystem<2>(FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(), 3)), 3)1FESystem<2>(FE_Q<2>(QIterated<1>(QTrapez<1>(), 2)), 3, FE_DGQ<2>(0), 1)2<2> cell support points DEAL::0.00 0.00 DEAL::0.00 0.00 DEAL::0.00 0.00 @@ -120,7 +120,7 @@ DEAL::0.500 0.500 DEAL::0.500 0.500 DEAL::0.500 0.500 DEAL::0.500 0.500 -DEAL::FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(),3))1FESystem<2>(FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(),3)),3)1FESystem<2>(FE_Q<2>(QIterated<1>(QTrapez<1>(),2)),3, FE_DGQ<2>(0),1)2<2> face 0 support points +DEAL::FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(), 3))1FESystem<2>(FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(), 3)), 3)1FESystem<2>(FE_Q<2>(QIterated<1>(QTrapez<1>(), 2)), 3, FE_DGQ<2>(0), 1)2<2> face 0 support points DEAL::0.00 0.00 DEAL::0.00 0.00 DEAL::0.00 0.00 @@ -139,7 +139,7 @@ DEAL::0.00 0.500 DEAL::0.00 0.500 DEAL::0.00 0.500 DEAL::0.00 0.500 -DEAL::FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(),3))1FESystem<2>(FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(),3)),3)1FESystem<2>(FE_Q<2>(QIterated<1>(QTrapez<1>(),2)),3, FE_DGQ<2>(0),1)2<2> face 1 support points +DEAL::FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(), 3))1FESystem<2>(FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(), 3)), 3)1FESystem<2>(FE_Q<2>(QIterated<1>(QTrapez<1>(), 2)), 3, FE_DGQ<2>(0), 1)2<2> face 1 support points DEAL::1.00 0.00 DEAL::1.00 0.00 DEAL::1.00 0.00 @@ -158,7 +158,7 @@ DEAL::1.00 0.500 DEAL::1.00 0.500 DEAL::1.00 0.500 DEAL::1.00 0.500 -DEAL::FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(),3))1FESystem<2>(FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(),3)),3)1FESystem<2>(FE_Q<2>(QIterated<1>(QTrapez<1>(),2)),3, FE_DGQ<2>(0),1)2<2> face 2 support points +DEAL::FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(), 3))1FESystem<2>(FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(), 3)), 3)1FESystem<2>(FE_Q<2>(QIterated<1>(QTrapez<1>(), 2)), 3, FE_DGQ<2>(0), 1)2<2> face 2 support points DEAL::0.00 0.00 DEAL::0.00 0.00 DEAL::0.00 0.00 @@ -177,7 +177,7 @@ DEAL::0.500 0.00 DEAL::0.500 0.00 DEAL::0.500 0.00 DEAL::0.500 0.00 -DEAL::FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(),3))1FESystem<2>(FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(),3)),3)1FESystem<2>(FE_Q<2>(QIterated<1>(QTrapez<1>(),2)),3, FE_DGQ<2>(0),1)2<2> face 3 support points +DEAL::FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(), 3))1FESystem<2>(FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(), 3)), 3)1FESystem<2>(FE_Q<2>(QIterated<1>(QTrapez<1>(), 2)), 3, FE_DGQ<2>(0), 1)2<2> face 3 support points DEAL::0.00 1.00 DEAL::0.00 1.00 DEAL::0.00 1.00 @@ -196,7 +196,7 @@ DEAL::0.500 1.00 DEAL::0.500 1.00 DEAL::0.500 1.00 DEAL::0.500 1.00 -DEAL::FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(),3))1FESystem<2>(FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(),3)),3)1FESystem<2>(FE_Q<2>(QIterated<1>(QTrapez<1>(),2)),3, FE_DGQ<2>(0),1)2<2> cell generalized support points +DEAL::FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(), 3))1FESystem<2>(FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(), 3)), 3)1FESystem<2>(FE_Q<2>(QIterated<1>(QTrapez<1>(), 2)), 3, FE_DGQ<2>(0), 1)2<2> cell generalized support points DEAL::0.00 0.00 DEAL::0.333 0.00 DEAL::0.667 0.00 @@ -218,79 +218,3 @@ DEAL::1.00 0.500 DEAL::0.500 0.00 DEAL::0.500 1.00 DEAL::0.500 0.500 -DEAL::FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(),3))1FESystem<2>(FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(),3)),3)1FESystem<2>(FE_Q<2>(QIterated<1>(QTrapez<1>(),2)),3, FE_DGQ<2>(0),1)2<2> face 0 generalized support points -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 0.500 -DEAL::0.00 0.500 -DEAL::0.00 0.500 -DEAL::0.00 0.500 -DEAL::0.00 0.500 -DEAL::0.00 0.500 -DEAL::FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(),3))1FESystem<2>(FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(),3)),3)1FESystem<2>(FE_Q<2>(QIterated<1>(QTrapez<1>(),2)),3, FE_DGQ<2>(0),1)2<2> face 1 generalized support points -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 0.500 -DEAL::1.00 0.500 -DEAL::1.00 0.500 -DEAL::1.00 0.500 -DEAL::1.00 0.500 -DEAL::1.00 0.500 -DEAL::FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(),3))1FESystem<2>(FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(),3)),3)1FESystem<2>(FE_Q<2>(QIterated<1>(QTrapez<1>(),2)),3, FE_DGQ<2>(0),1)2<2> face 2 generalized support points -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::0.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::1.00 0.00 -DEAL::0.500 0.00 -DEAL::0.500 0.00 -DEAL::0.500 0.00 -DEAL::0.500 0.00 -DEAL::0.500 0.00 -DEAL::0.500 0.00 -DEAL::FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(),3))1FESystem<2>(FE_DGQArbitraryNodes<2>(QIterated<1>(QTrapez<1>(),3)),3)1FESystem<2>(FE_Q<2>(QIterated<1>(QTrapez<1>(),2)),3, FE_DGQ<2>(0),1)2<2> face 3 generalized support points -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::0.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::1.00 1.00 -DEAL::0.500 1.00 -DEAL::0.500 1.00 -DEAL::0.500 1.00 -DEAL::0.500 1.00 -DEAL::0.500 1.00 -DEAL::0.500 1.00 diff --git a/tests/fe/fe_support_points_sys_07.output b/tests/fe/fe_support_points_sys_07.output index 3c3cacb018..15d8da50c2 100644 --- a/tests/fe/fe_support_points_sys_07.output +++ b/tests/fe/fe_support_points_sys_07.output @@ -25,7 +25,3 @@ DEAL::0.00 0.500 DEAL::1.00 0.500 DEAL::0.500 0.00 DEAL::0.500 1.00 -DEAL::FE_DGQ<2>(3)1FE_Nedelec<2>(0)2<2> face 0 generalized support points -DEAL::FE_DGQ<2>(3)1FE_Nedelec<2>(0)2<2> face 1 generalized support points -DEAL::FE_DGQ<2>(3)1FE_Nedelec<2>(0)2<2> face 2 generalized support points -DEAL::FE_DGQ<2>(3)1FE_Nedelec<2>(0)2<2> face 3 generalized support points diff --git a/tests/fe/fe_support_points_sys_08.output b/tests/fe/fe_support_points_sys_08.output index 1fd434a018..d5f898aaec 100644 --- a/tests/fe/fe_support_points_sys_08.output +++ b/tests/fe/fe_support_points_sys_08.output @@ -1,10 +1,10 @@ -DEAL::FE_Nedelec<2>(0)1FESystem<2>(FE_DGQ<2>(3),3)1FESystem<2>(FE_Q<2>(2),3, FE_Nedelec<2>(0),2)2<2> cell support points -DEAL::FE_Nedelec<2>(0)1FESystem<2>(FE_DGQ<2>(3),3)1FESystem<2>(FE_Q<2>(2),3, FE_Nedelec<2>(0),2)2<2> face 0 support points -DEAL::FE_Nedelec<2>(0)1FESystem<2>(FE_DGQ<2>(3),3)1FESystem<2>(FE_Q<2>(2),3, FE_Nedelec<2>(0),2)2<2> face 1 support points -DEAL::FE_Nedelec<2>(0)1FESystem<2>(FE_DGQ<2>(3),3)1FESystem<2>(FE_Q<2>(2),3, FE_Nedelec<2>(0),2)2<2> face 2 support points -DEAL::FE_Nedelec<2>(0)1FESystem<2>(FE_DGQ<2>(3),3)1FESystem<2>(FE_Q<2>(2),3, FE_Nedelec<2>(0),2)2<2> face 3 support points -DEAL::FE_Nedelec<2>(0)1FESystem<2>(FE_DGQ<2>(3),3)1FESystem<2>(FE_Q<2>(2),3, FE_Nedelec<2>(0),2)2<2> cell generalized support points +DEAL::FE_Nedelec<2>(0)1FESystem<2>(FE_DGQ<2>(3), 3)1FESystem<2>(FE_Q<2>(2), 3, FE_Nedelec<2>(0), 2)2<2> cell support points +DEAL::FE_Nedelec<2>(0)1FESystem<2>(FE_DGQ<2>(3), 3)1FESystem<2>(FE_Q<2>(2), 3, FE_Nedelec<2>(0), 2)2<2> face 0 support points +DEAL::FE_Nedelec<2>(0)1FESystem<2>(FE_DGQ<2>(3), 3)1FESystem<2>(FE_Q<2>(2), 3, FE_Nedelec<2>(0), 2)2<2> face 1 support points +DEAL::FE_Nedelec<2>(0)1FESystem<2>(FE_DGQ<2>(3), 3)1FESystem<2>(FE_Q<2>(2), 3, FE_Nedelec<2>(0), 2)2<2> face 2 support points +DEAL::FE_Nedelec<2>(0)1FESystem<2>(FE_DGQ<2>(3), 3)1FESystem<2>(FE_Q<2>(2), 3, FE_Nedelec<2>(0), 2)2<2> face 3 support points +DEAL::FE_Nedelec<2>(0)1FESystem<2>(FE_DGQ<2>(3), 3)1FESystem<2>(FE_Q<2>(2), 3, FE_Nedelec<2>(0), 2)2<2> cell generalized support points DEAL::0.00 0.500 DEAL::1.00 0.500 DEAL::0.500 0.00 @@ -26,7 +26,3 @@ DEAL::0.276 1.00 DEAL::0.724 1.00 DEAL::1.00 1.00 DEAL::0.500 0.500 -DEAL::FE_Nedelec<2>(0)1FESystem<2>(FE_DGQ<2>(3),3)1FESystem<2>(FE_Q<2>(2),3, FE_Nedelec<2>(0),2)2<2> face 0 generalized support points -DEAL::FE_Nedelec<2>(0)1FESystem<2>(FE_DGQ<2>(3),3)1FESystem<2>(FE_Q<2>(2),3, FE_Nedelec<2>(0),2)2<2> face 1 generalized support points -DEAL::FE_Nedelec<2>(0)1FESystem<2>(FE_DGQ<2>(3),3)1FESystem<2>(FE_Q<2>(2),3, FE_Nedelec<2>(0),2)2<2> face 2 generalized support points -DEAL::FE_Nedelec<2>(0)1FESystem<2>(FE_DGQ<2>(3),3)1FESystem<2>(FE_Q<2>(2),3, FE_Nedelec<2>(0),2)2<2> face 3 generalized support points diff --git a/tests/fe/fe_support_points_sys_09.output b/tests/fe/fe_support_points_sys_09.output index 2a3b3e6db4..9f56eda5e5 100644 --- a/tests/fe/fe_support_points_sys_09.output +++ b/tests/fe/fe_support_points_sys_09.output @@ -33,7 +33,3 @@ DEAL::0.211 0.211 DEAL::0.789 0.211 DEAL::0.211 0.789 DEAL::0.789 0.789 -DEAL::FE_DGQ<2>(3)1FE_Nedelec<2>(1)2<2> face 0 generalized support points -DEAL::FE_DGQ<2>(3)1FE_Nedelec<2>(1)2<2> face 1 generalized support points -DEAL::FE_DGQ<2>(3)1FE_Nedelec<2>(1)2<2> face 2 generalized support points -DEAL::FE_DGQ<2>(3)1FE_Nedelec<2>(1)2<2> face 3 generalized support points diff --git a/tests/fe/fe_support_points_sys_10.output b/tests/fe/fe_support_points_sys_10.output index d4a7ded22a..3346938cfe 100644 --- a/tests/fe/fe_support_points_sys_10.output +++ b/tests/fe/fe_support_points_sys_10.output @@ -1,10 +1,10 @@ -DEAL::FE_Nedelec<2>(1)1FESystem<2>(FE_DGQ<2>(3),3)1FESystem<2>(FE_Q<2>(2),3, FE_Nedelec<2>(1),2)2<2> cell support points -DEAL::FE_Nedelec<2>(1)1FESystem<2>(FE_DGQ<2>(3),3)1FESystem<2>(FE_Q<2>(2),3, FE_Nedelec<2>(1),2)2<2> face 0 support points -DEAL::FE_Nedelec<2>(1)1FESystem<2>(FE_DGQ<2>(3),3)1FESystem<2>(FE_Q<2>(2),3, FE_Nedelec<2>(1),2)2<2> face 1 support points -DEAL::FE_Nedelec<2>(1)1FESystem<2>(FE_DGQ<2>(3),3)1FESystem<2>(FE_Q<2>(2),3, FE_Nedelec<2>(1),2)2<2> face 2 support points -DEAL::FE_Nedelec<2>(1)1FESystem<2>(FE_DGQ<2>(3),3)1FESystem<2>(FE_Q<2>(2),3, FE_Nedelec<2>(1),2)2<2> face 3 support points -DEAL::FE_Nedelec<2>(1)1FESystem<2>(FE_DGQ<2>(3),3)1FESystem<2>(FE_Q<2>(2),3, FE_Nedelec<2>(1),2)2<2> cell generalized support points +DEAL::FE_Nedelec<2>(1)1FESystem<2>(FE_DGQ<2>(3), 3)1FESystem<2>(FE_Q<2>(2), 3, FE_Nedelec<2>(1), 2)2<2> cell support points +DEAL::FE_Nedelec<2>(1)1FESystem<2>(FE_DGQ<2>(3), 3)1FESystem<2>(FE_Q<2>(2), 3, FE_Nedelec<2>(1), 2)2<2> face 0 support points +DEAL::FE_Nedelec<2>(1)1FESystem<2>(FE_DGQ<2>(3), 3)1FESystem<2>(FE_Q<2>(2), 3, FE_Nedelec<2>(1), 2)2<2> face 1 support points +DEAL::FE_Nedelec<2>(1)1FESystem<2>(FE_DGQ<2>(3), 3)1FESystem<2>(FE_Q<2>(2), 3, FE_Nedelec<2>(1), 2)2<2> face 2 support points +DEAL::FE_Nedelec<2>(1)1FESystem<2>(FE_DGQ<2>(3), 3)1FESystem<2>(FE_Q<2>(2), 3, FE_Nedelec<2>(1), 2)2<2> face 3 support points +DEAL::FE_Nedelec<2>(1)1FESystem<2>(FE_DGQ<2>(3), 3)1FESystem<2>(FE_Q<2>(2), 3, FE_Nedelec<2>(1), 2)2<2> cell generalized support points DEAL::0.00 0.211 DEAL::0.00 0.789 DEAL::1.00 0.211 @@ -38,7 +38,3 @@ DEAL::1.00 0.500 DEAL::0.500 0.00 DEAL::0.500 1.00 DEAL::0.500 0.500 -DEAL::FE_Nedelec<2>(1)1FESystem<2>(FE_DGQ<2>(3),3)1FESystem<2>(FE_Q<2>(2),3, FE_Nedelec<2>(1),2)2<2> face 0 generalized support points -DEAL::FE_Nedelec<2>(1)1FESystem<2>(FE_DGQ<2>(3),3)1FESystem<2>(FE_Q<2>(2),3, FE_Nedelec<2>(1),2)2<2> face 1 generalized support points -DEAL::FE_Nedelec<2>(1)1FESystem<2>(FE_DGQ<2>(3),3)1FESystem<2>(FE_Q<2>(2),3, FE_Nedelec<2>(1),2)2<2> face 2 generalized support points -DEAL::FE_Nedelec<2>(1)1FESystem<2>(FE_DGQ<2>(3),3)1FESystem<2>(FE_Q<2>(2),3, FE_Nedelec<2>(1),2)2<2> face 3 generalized support points diff --git a/tests/fe/rtn_1.cc b/tests/fe/rtn_1.cc index f9b4b874fd..0a45fdd667 100644 --- a/tests/fe/rtn_1.cc +++ b/tests/fe/rtn_1.cc @@ -81,62 +81,6 @@ check_support_points(const FiniteElement &fe) } -template -void -check_face_support_points(const FiniteElement &fe) -{ - deallog << "Face " << fe.get_name() << std::endl; - - const std::vector> &sub_points = - fe.get_generalized_face_support_points(); - std::vector weights(sub_points.size()); - Quadrature sub_quadrature(sub_points, weights); - std::vector> points(sub_points.size()); - - Triangulation tr; - GridGenerator::hyper_cube(tr); - DoFHandler dof(tr); - dof.distribute_dofs(fe); - - MappingCartesian mapping; - - UpdateFlags flags = update_values | update_gradients; - FEFaceValues vals(mapping, fe, sub_quadrature, flags); - - for (const unsigned int face : GeometryInfo::face_indices()) - { - QProjector::project_to_face(sub_quadrature, face, points); - vals.reinit(dof.begin_active(), face); - - for (unsigned int k = 0; k < points.size(); ++k) - { - const Point &p = points[k]; - deallog << p; - for (unsigned int i = 0; i < fe.dofs_per_cell; ++i) - { - deallog << '\t'; - for (unsigned int d = 0; d < dim; ++d) - { - const double sf = fe.shape_value_component(i, p, d); - deallog << ' ' << (int)rint(60 * sf); - - const double diff = - std::abs(sf - vals.shape_value_component(i, k, d)); - if (diff > 1.e-12) - deallog << "Error values" << std::endl; - Tensor<1, dim> grad = fe.shape_grad_component(i, p, d); - grad -= vals.shape_grad_component(i, k, d); - if (grad.norm() > 1.e-12) - deallog << "Error grads" << std::endl; - } - } - deallog << std::endl; - } - deallog << std::endl; - } -} - - int main() { @@ -146,8 +90,6 @@ main() check_support_points(e20); FE_RaviartThomasNodal<3> e30(0); check_support_points(e30); - check_face_support_points(e20); FE_RaviartThomasNodal<2> e21(1); check_support_points(e21); - check_face_support_points(e21); } diff --git a/tests/fe/rtn_1.output b/tests/fe/rtn_1.output index b7cd0678a2..dd13cfc6be 100644 --- a/tests/fe/rtn_1.output +++ b/tests/fe/rtn_1.output @@ -13,15 +13,6 @@ DEAL::0.500000 1.00000 0.500000 30 0 0 30 0 0 0 0 0 0 60 0 0 0 30 0 0 30 DEAL::0.500000 0.500000 0.00000 30 0 0 30 0 0 0 30 0 0 30 0 0 0 60 0 0 0 DEAL::0.500000 0.500000 1.00000 30 0 0 30 0 0 0 30 0 0 30 0 0 0 0 0 0 60 DEAL:: -DEAL::Face FE_RaviartThomasNodal<2>(0) -DEAL::0.00000 0.500000 60 0 0 0 0 30 0 30 -DEAL:: -DEAL::1.00000 0.500000 0 0 60 0 0 30 0 30 -DEAL:: -DEAL::0.500000 0.00000 30 0 30 0 0 60 0 0 -DEAL:: -DEAL::0.500000 1.00000 30 0 30 0 0 0 0 60 -DEAL:: DEAL::FE_RaviartThomasNodal<2>(1) DEAL::0.00000 0.211325 60 0 0 0 0 0 0 0 0 37 0 -10 0 -10 0 3 0 0 0 0 0 55 0 -15 DEAL::0.00000 0.788675 0 0 60 0 0 0 0 0 0 -10 0 3 0 37 0 -10 0 0 0 0 0 55 0 -15 @@ -36,16 +27,3 @@ DEAL::0.500000 0.788675 0 0 0 0 0 0 0 0 0 -4 0 -4 0 14 0 14 0 0 60 0 DEAL::0.211325 0.500000 14 0 14 0 -4 0 -4 0 0 0 0 0 0 0 0 0 20 0 20 0 0 60 0 0 DEAL::0.788675 0.500000 -4 0 -4 0 14 0 14 0 0 0 0 0 0 0 0 0 20 0 20 0 0 0 0 60 DEAL:: -DEAL::Face FE_RaviartThomasNodal<2>(1) -DEAL::0.00000 0.211325 60 0 0 0 0 0 0 0 0 37 0 -10 0 -10 0 3 0 0 0 0 0 55 0 -15 -DEAL::0.00000 0.788675 0 0 60 0 0 0 0 0 0 -10 0 3 0 37 0 -10 0 0 0 0 0 55 0 -15 -DEAL:: -DEAL::1.00000 0.211325 0 0 0 0 60 0 0 0 0 -10 0 37 0 3 0 -10 0 0 0 0 0 -15 0 55 -DEAL::1.00000 0.788675 0 0 0 0 0 0 60 0 0 3 0 -10 0 -10 0 37 0 0 0 0 0 -15 0 55 -DEAL:: -DEAL::0.211325 0.00000 37 0 -10 0 -10 0 3 0 0 60 0 0 0 0 0 0 55 0 -15 0 0 0 0 0 -DEAL::0.788675 0.00000 -10 0 3 0 37 0 -10 0 0 0 0 60 0 0 0 0 55 0 -15 0 0 0 0 0 -DEAL:: -DEAL::0.211325 1.00000 -10 0 37 0 3 0 -10 0 0 0 0 0 0 60 0 0 -15 0 55 0 0 0 0 0 -DEAL::0.788675 1.00000 3 0 -10 0 -10 0 37 0 0 0 0 0 0 0 0 60 -15 0 55 0 0 0 0 0 -DEAL:: -- 2.39.5