From: Katharina Kormann Date: Wed, 23 Feb 2011 18:52:28 +0000 (+0000) Subject: Test of get_fe_from_name for FE_Q with Gauss-Lobatto points. X-Git-Tag: v8.0.0~4262 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=078b51270bc451dbd632f864033d642311f14628;p=dealii.git Test of get_fe_from_name for FE_Q with Gauss-Lobatto points. git-svn-id: https://svn.dealii.org/trunk@23440 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/fe/fe_tools_01.cc b/tests/fe/fe_tools_01.cc index 5db5f8cedb..968b1d769f 100644 --- a/tests/fe/fe_tools_01.cc +++ b/tests/fe/fe_tools_01.cc @@ -22,6 +22,7 @@ #include #include #include +#include template void test_fe(const char* name) @@ -49,11 +50,15 @@ main() test_fe<1>("FE_Q(1)"); test_fe<1>("FE_Q(2)"); test_fe<1>("FE_Q<1>(2)"); + test_fe<1>("FE_Q(QGaussLobatto(3))"); + test_fe<1>("FE_Q(QGaussLobatto(4))"); test_fe<2>("FE_Q(1)"); test_fe<2>("FE_Q<2>(2)"); test_fe<2>("FE_Q(2)"); test_fe<2>("FE_DGQ(1)"); test_fe<2>("FE_RaviartThomas(1)"); + test_fe<2>("FE_Q(QGaussLobatto(3))"); + test_fe<2>("FE_Q(QGaussLobatto(4))"); test_fe<3>("FE_Q(1)"); test_fe<1>("FESystem<1>[FE_Q(2)^dim-FE_DGQ(1)]"); test_fe<2>("FESystem<2>[FE_Q<2>(2)^dim-FE_DGQ<2>(1)]"); diff --git a/tests/fe/fe_tools_01/cmp/generic b/tests/fe/fe_tools_01/cmp/generic index e17791ec26..3541bf4dea 100644 --- a/tests/fe/fe_tools_01/cmp/generic +++ b/tests/fe/fe_tools_01/cmp/generic @@ -5,6 +5,10 @@ DEAL::FE_Q<1>(2) DEAL:: 3 1 1 0 0 DEAL::FE_Q<1>(2) DEAL:: 3 1 1 0 0 +DEAL::FE_Q<1>(2) +DEAL:: 3 1 1 0 0 +DEAL::FE_Q<1>(QGaussLobatto(4)) +DEAL:: 4 1 2 0 0 DEAL::FE_Q<2>(1) DEAL:: 4 1 0 0 0 DEAL::FE_Q<2>(2) @@ -15,6 +19,10 @@ DEAL::FE_DGQ<2>(1) DEAL:: 4 0 0 4 0 DEAL::FE_RaviartThomas<2>(1) DEAL:: 12 0 2 4 0 +DEAL::FE_Q<2>(2) +DEAL:: 9 1 1 1 0 +DEAL::FE_Q<2>(QGaussLobatto(4)) +DEAL:: 16 1 2 4 0 DEAL::FE_Q<3>(1) DEAL:: 8 1 0 0 0 DEAL::FESystem<1>[FE_Q<1>(2)-FE_DGQ<1>(1)]