From 3886527c1f725f9ebf973d19a0cae54c6a1dcc7f Mon Sep 17 00:00:00 2001 From: bangerth Date: Fri, 18 Feb 2011 19:44:41 +0000 Subject: [PATCH] A tiny bit more infrastructure. git-svn-id: https://svn.dealii.org/trunk@23399 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-46/step-46.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/deal.II/examples/step-46/step-46.cc b/deal.II/examples/step-46/step-46.cc index a21d7ca381..140b2c6f23 100644 --- a/deal.II/examples/step-46/step-46.cc +++ b/deal.II/examples/step-46/step-46.cc @@ -185,6 +185,7 @@ StokesProblem::StokesProblem (const unsigned int stokes_degree, dof_handler (triangulation) { fe_collection.push_back (stokes_fe); + fe_collection.push_back (elasticity_fe); } @@ -249,8 +250,11 @@ void StokesProblem::assemble_system () system_rhs=0; QGauss stokes_quadrature(stokes_degree+2); + QGauss elasticity_quadrature(elasticity_degree+2); + hp::QCollection q_collection; q_collection.push_back (stokes_quadrature); + q_collection.push_back (elasticity_quadrature); hp::FEValues hp_fe_values (fe_collection, q_collection, update_values | -- 2.39.5