From: Luca Heltai Date: Thu, 15 Jan 2015 16:30:17 +0000 (+0100) Subject: Boundary->Manifold in step-11. X-Git-Tag: v8.3.0-rc1~532^2~5 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b79bcd11d1c99a1e432cdb587c8112d73fcc547f;p=dealii.git Boundary->Manifold in step-11. --- diff --git a/examples/step-11/step-11.cc b/examples/step-11/step-11.cc index 3032a79c44..e65df26313 100644 --- a/examples/step-11/step-11.cc +++ b/examples/step-11/step-11.cc @@ -31,7 +31,7 @@ #include #include #include -#include +#include #include #include #include @@ -413,8 +413,9 @@ namespace Step11 void LaplaceProblem::run () { GridGenerator::hyper_ball (triangulation); - static const HyperBallBoundary boundary; - triangulation.set_boundary (0, boundary); + static const SphericalManifold boundary; + triangulation.set_all_manifold_ids_on_boundary(0); + triangulation.set_manifold (0, boundary); for (unsigned int cycle=0; cycle<6; ++cycle, triangulation.refine_global(1)) {