From: Wolfgang Bangerth Date: Fri, 4 Sep 2009 19:54:09 +0000 (+0000) Subject: Do less output. Do less mesh refinement. X-Git-Tag: v8.0.0~7178 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3f47a179780a54edab2ede723145b113f75830af;p=dealii.git Do less output. Do less mesh refinement. git-svn-id: https://svn.dealii.org/trunk@19395 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-32/step-32.cc b/deal.II/examples/step-32/step-32.cc index 23667c50fb..4f33c70c3a 100644 --- a/deal.II/examples/step-32/step-32.cc +++ b/deal.II/examples/step-32/step-32.cc @@ -2825,7 +2825,7 @@ void BoussinesqFlowProblem::solve () template void BoussinesqFlowProblem::output_results () { - if (timestep_number % 20 != 0) + if (timestep_number % 25 != 0) return; computing_timer.enter_section ("Postprocessing"); @@ -3097,7 +3097,7 @@ void BoussinesqFlowProblem::run () goto start_time_iteration; } else - if ((timestep_number > 0) && (timestep_number % 5 == 0)) + if ((timestep_number > 0) && (timestep_number % 10 == 0)) refine_mesh (initial_refinement + n_pre_refinement_steps); output_results ();