From 38e456481cac2891986d695984930e9d466ff1b4 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 1 Apr 2004 19:56:49 +0000 Subject: [PATCH] Go back to 2d. git-svn-id: https://svn.dealii.org/trunk@8949 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-17/Makefile | 4 ++-- deal.II/examples/step-17/step-17.cc | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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 (); } -- 2.39.5