From: Guido Kanschat Date: Wed, 25 Nov 2009 06:49:06 +0000 (+0000) Subject: L-shaped domain again X-Git-Tag: v8.0.0~6775 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3ef7f22eaefcb7dc6321a9d9f72dcbc65513fc3f;p=dealii.git L-shaped domain again git-svn-id: https://svn.dealii.org/trunk@20167 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-39/step-39.cc b/deal.II/examples/step-39/step-39.cc index 20e4163ac2..6a829c851e 100644 --- a/deal.II/examples/step-39/step-39.cc +++ b/deal.II/examples/step-39/step-39.cc @@ -66,8 +66,7 @@ using namespace dealii; // This is the function we use to set // the boundary values and also the // exact solution we compare to. -//Functions::LSingularityFunction exact_solution; -Functions::Q1WedgeFunction<2> exact_solution; +Functions::LSingularityFunction exact_solution; // @sect3{The local integrators} @@ -261,7 +260,7 @@ Step39::Step39(const FiniteElement& fe) fe(fe), dof_handler(triangulation) { - GridGenerator::hyper_cube(triangulation, -1, 1); + GridGenerator::hyper_L(triangulation, -1, 1); }