From: Wolfgang Bangerth Date: Sat, 23 Apr 2011 03:24:26 +0000 (+0000) Subject: Get it closer to what we want. X-Git-Tag: v8.0.0~4123 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=897bf5c02473a952d830051aea47d50059e39b56;p=dealii.git Get it closer to what we want. git-svn-id: https://svn.dealii.org/trunk@23634 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 5b7032f770..d39d7a883c 100644 --- a/deal.II/examples/step-46/step-46.cc +++ b/deal.II/examples/step-46/step-46.cc @@ -287,8 +287,9 @@ cell_is_in_solid_domain (const typename hp::DoFHandler::cell_iterator &cell template void FluidStructureProblem::make_grid () -{ - GridGenerator::subdivided_hyper_cube (triangulation, 1, -1, 1); +{ +// not quite what we want... + GridGenerator::subdivided_hyper_cube (triangulation, 4, -1, 1); for (typename Triangulation::active_cell_iterator cell = triangulation.begin_active(); cell != triangulation.end(); ++cell) @@ -298,7 +299,7 @@ FluidStructureProblem::make_grid () (cell->face(f)->center()[dim-1] == 1)) cell->face(f)->set_all_boundary_indicators(1); - triangulation.refine_global (5-dim); + triangulation.refine_global (3-dim); }