From 1bd98b885cfbb51a1ebb20ca22a7f343d1d68309 Mon Sep 17 00:00:00 2001 From: bangerth Date: Wed, 17 Oct 2007 21:14:15 +0000 Subject: [PATCH] Remove debug output, make time step closer to the limit. git-svn-id: https://svn.dealii.org/trunk@15343 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-22/step-22.cc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/deal.II/examples/step-22/step-22.cc b/deal.II/examples/step-22/step-22.cc index f984931980..12e0d3f5b4 100644 --- a/deal.II/examples/step-22/step-22.cc +++ b/deal.II/examples/step-22/step-22.cc @@ -787,7 +787,7 @@ void BoussinesqFlowProblem::solve () } time_step = GridTools::minimal_cell_diameter(triangulation) / - get_maximal_velocity() / 10; + get_maximal_velocity() / 2; assemble_rhs_T (); { @@ -889,8 +889,6 @@ BoussinesqFlowProblem::get_maximal_velocity () const velocity.norm()); } } - - std::cout << "Maximal velocity=" << max_velocity << std::endl; return max_velocity; } @@ -940,7 +938,7 @@ void BoussinesqFlowProblem::run () std::cout << std::endl; } - while (time <= 40); + while (time <= 500); } -- 2.39.5