From: wolf Date: Thu, 1 Apr 2004 19:56:49 +0000 (+0000) Subject: Go back to 2d. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bd9469350fa7e5a938ee67b1eb9346c3a5ced55c;p=dealii-svn.git Go back to 2d. git-svn-id: https://svn.dealii.org/trunk@8949 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-17/Makefile b/deal.II/examples/step-17/Makefile index 57de7de067..2d7deb8ece 100644 --- a/deal.II/examples/step-17/Makefile +++ b/deal.II/examples/step-17/Makefile @@ -76,10 +76,10 @@ else # # You may need to augment the lists of libraries when compiling your # program for other dimensions, or when using third party libraries -libs.g = $(lib-deal2-3d.g) \ +libs.g = $(lib-deal2-2d.g) \ $(lib-lac.g) \ $(lib-base.g) -libs.o = $(lib-deal2-3d.o) \ +libs.o = $(lib-deal2-2d.o) \ $(lib-lac.o) \ $(lib-base.o) diff --git a/deal.II/examples/step-17/step-17.cc b/deal.II/examples/step-17/step-17.cc index d87c5a32d4..5170d2d87d 100644 --- a/deal.II/examples/step-17/step-17.cc +++ b/deal.II/examples/step-17/step-17.cc @@ -467,7 +467,7 @@ void ElasticProblem::run () if (cycle == 0) { GridGenerator::hyper_cube (triangulation, -1, 1); - triangulation.refine_global (4); + triangulation.refine_global (3); // xxx GridTools::partition_triangulation (n_partitions, triangulation); @@ -514,7 +514,7 @@ int main (int argc, char **argv) // xxx localize scope { - ElasticProblem<3> elastic_problem_2d; + ElasticProblem<2> elastic_problem_2d; elastic_problem_2d.run (); }