From: Wolfgang Bangerth Date: Mon, 24 Aug 2009 16:17:33 +0000 (+0000) Subject: Print maximal velocity. X-Git-Tag: v8.0.0~7235 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=beeb103d10804145ba1d8399637a2281d6f8f42f;p=dealii.git Print maximal velocity. git-svn-id: https://svn.dealii.org/trunk@19333 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 b1193d003c..e948419cfe 100644 --- a/deal.II/examples/step-32/step-32.cc +++ b/deal.II/examples/step-32/step-32.cc @@ -2702,6 +2702,10 @@ void BoussinesqFlowProblem::solve () GridTools::minimal_cell_diameter(triangulation) / 1e-10; + pcout << " Maximal velocity: " + << maximal_velocity * EquationData::year_in_seconds * 100 + << " cm/year" + << std::endl; pcout << " " << "Time step: " << time_step/EquationData::year_in_seconds << " years"