From: Wolfgang Bangerth Date: Wed, 17 Oct 2007 21:14:15 +0000 (+0000) Subject: Remove debug output, make time step closer to the limit. X-Git-Tag: v8.0.0~9742 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e0264d0f4ead0356bf084fb99e9efb1cf6a0aef9;p=dealii.git Remove debug output, make time step closer to the limit. git-svn-id: https://svn.dealii.org/trunk@15343 0785d39b-7218-0410-832d-ea1e28bc413d --- 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); }