From: Luca Heltai Date: Thu, 15 Jan 2015 16:45:45 +0000 (+0100) Subject: Boundary->Manifold in step-16. X-Git-Tag: v8.3.0-rc1~532^2~3 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=10960eab8cc59150473f40a4788d3c185d1efd6b;p=dealii.git Boundary->Manifold in step-16. --- diff --git a/examples/step-16/step-16.cc b/examples/step-16/step-16.cc index fe9a400750..39b4db2fd5 100644 --- a/examples/step-16/step-16.cc +++ b/examples/step-16/step-16.cc @@ -40,7 +40,7 @@ #include #include #include -#include +#include #include #include @@ -627,8 +627,9 @@ namespace Step16 { 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); triangulation.refine_global (1); }