From: Wolfgang Bangerth Date: Thu, 6 Oct 2011 19:10:02 +0000 (+0000) Subject: Default to 2d for speed's sake. X-Git-Tag: v8.0.0~3282 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8e5b03585354ec0594f85cd93b8ce84dbfd95303;p=dealii.git Default to 2d for speed's sake. git-svn-id: https://svn.dealii.org/trunk@24538 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 b689c959d6..0cd1611cc5 100644 --- a/deal.II/examples/step-32/step-32.cc +++ b/deal.II/examples/step-32/step-32.cc @@ -4392,6 +4392,13 @@ namespace Step32 // simply use the \step-32.prm // file which is distributed together with // the program. + // + // Because 3d computations are simply + // very slow unless you throw a lot + // of processors at them, the program + // defaults to 2d. You can get the 3d + // version by changing the constant + // dimension below to 3. int main (int argc, char *argv[]) { using namespace Step32; @@ -4409,7 +4416,7 @@ int main (int argc, char *argv[]) else parameter_filename = "step-32.prm"; - const int dim = 3; + const int dim = 2; BoussinesqFlowProblem::Parameters parameters(parameter_filename); BoussinesqFlowProblem flow_problem (parameters); flow_problem.run ();