From 897bf5c02473a952d830051aea47d50059e39b56 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sat, 23 Apr 2011 03:24:26 +0000 Subject: [PATCH] Get it closer to what we want. git-svn-id: https://svn.dealii.org/trunk@23634 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-46/step-46.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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); } -- 2.39.5