From: Wolfgang Bangerth Date: Fri, 18 Feb 2011 19:44:41 +0000 (+0000) Subject: A tiny bit more infrastructure. X-Git-Tag: v8.0.0~4303 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=841aae794ad2bb7e2f20d39ad8f511b3eefecf99;p=dealii.git A tiny bit more infrastructure. git-svn-id: https://svn.dealii.org/trunk@23399 0785d39b-7218-0410-832d-ea1e28bc413d --- 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 |