From: Guido Kanschat Date: Mon, 8 Aug 2011 16:08:15 +0000 (+0000) Subject: test FE_FaceQ shape functions on faces\ X-Git-Tag: v8.0.0~3736 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ca357c0c0626f0edda428c1104080e0440081d9c;p=dealii.git test FE_FaceQ shape functions on faces\ test fails because FESystem does not copy information correctly git-svn-id: https://svn.dealii.org/trunk@24032 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/fe/shapes_faceq.cc b/tests/fe/shapes_faceq.cc index c2ffd1a854..c72574ff42 100644 --- a/tests/fe/shapes_faceq.cc +++ b/tests/fe/shapes_faceq.cc @@ -6,6 +6,8 @@ #include "../tests.h" #include "shapes.h" #include +#include +#include #include #include #include @@ -30,8 +32,16 @@ void plot_FE_FaceQ_shape_functions() FE_FaceQ q3(3); plot_face_shape_functions(m, q3, "FaceQ3", update_values); - FE_FaceQ q4(4); - plot_face_shape_functions(m, q4, "FaceQ4", update_values); + FESystem sys0(q0,1); + plot_face_shape_functions(m, sys0, "System0", update_values); + + FE_DGQ dg0(0); + FESystem sys00(q0,1,dg0,1); + plot_face_shape_functions(m, sys00, "System0-0", update_values); + + FE_DGQ dg1(1); + FESystem sys11(q1,1,dg1,1); + plot_face_shape_functions(m, sys11, "System1-1", update_values); }