From dd3f3257fadee10a6a6020be51451c30e9fc63b8 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 17 Aug 2009 13:52:41 +0000 Subject: [PATCH] Set end time to 30 million years. git-svn-id: https://svn.dealii.org/trunk@19285 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-32/doc/intro.dox | 2 +- deal.II/examples/step-32/step-32.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/examples/step-32/doc/intro.dox b/deal.II/examples/step-32/doc/intro.dox index 30c5baf428..e5e7812a80 100644 --- a/deal.II/examples/step-32/doc/intro.dox +++ b/deal.II/examples/step-32/doc/intro.dox @@ -581,6 +581,6 @@ the following quantities: All of these pieces of equation data are defined in the program in the EquationData namespace. When run, the program produces maximal velocities around 10 centimeters per year, approximately the -physically correct order of magnitude. We will set the end time to 10 +physically correct order of magnitude. We will set the end time to 30 million years. diff --git a/deal.II/examples/step-32/step-32.cc b/deal.II/examples/step-32/step-32.cc index 8a94f3537d..b54dbe5a9b 100644 --- a/deal.II/examples/step-32/step-32.cc +++ b/deal.II/examples/step-32/step-32.cc @@ -104,7 +104,7 @@ namespace EquationData const double T1 = 700+273; const double year_in_seconds = 60*60*24*365.2425; - const double end_time = 1e7 * year_in_seconds; + const double end_time = 3e7 * year_in_seconds; template Tensor<1,dim> gravity_vector (const Point &p) -- 2.39.5