From e007880ae40fe73a8509eef05dac20ce14ff3bf8 Mon Sep 17 00:00:00 2001 From: bangerth Date: Fri, 4 Sep 2009 19:54:09 +0000 Subject: [PATCH] Do less output. Do less mesh refinement. git-svn-id: https://svn.dealii.org/trunk@19395 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-32/step-32.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 (); -- 2.39.5