From: Wolfgang Bangerth Date: Fri, 17 May 2002 10:47:23 +0000 (+0000) Subject: Add something more tricky: systems of systems. X-Git-Tag: v8.0.0~18023 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e1ac7463300a3c470b2bf1dc20ad695cd7ba6872;p=dealii.git Add something more tricky: systems of systems. git-svn-id: https://svn.dealii.org/trunk@5852 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/fe/fe_data_test.cc b/tests/fe/fe_data_test.cc index 73a082b77a..ff84cb1894 100644 --- a/tests/fe/fe_data_test.cc +++ b/tests/fe/fe_data_test.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 1998, 1999, 2000, 2001 by the deal.II authors +// Copyright (C) 1998, 1999, 2000, 2001, 2002 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -19,6 +19,7 @@ #include #include #include +#include #include @@ -40,6 +41,15 @@ void test_fe_datas() FE_Q (3), 1)); fe_datas.push_back(new FESystem(FE_Q (4), 2)); } + // have systems of systems + fe_datas.push_back (new FESystem (FESystem (FE_Q(2),2),2)); + fe_datas.push_back (new FESystem (FESystem (FE_Q(1),2),1, + FESystem (FE_Q(2),2),1)); + fe_datas.push_back (new FESystem (FESystem (FE_Q(1),1, + FE_Q(2),1),1, + FESystem (FE_Q(2),2),1, + FESystem (FE_DGQ(2),2),1)); + deallog << std::endl << "dim=" << dim << std::endl; for (unsigned int n=0; n