From: kanschat Date: Thu, 24 Jun 2010 22:08:51 +0000 (+0000) Subject: add more on MeshWorker and step39 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c5b427bccf3a68940098136ec43291753dc8d084;p=dealii-svn.git add more on MeshWorker and step39 git-svn-id: https://svn.dealii.org/trunk@21343 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/doxygen/tutorial/toc-list.html b/deal.II/doc/doxygen/tutorial/toc-list.html index efbdac03e3..335b26ff0e 100644 --- a/deal.II/doc/doxygen/tutorial/toc-list.html +++ b/deal.II/doc/doxygen/tutorial/toc-list.html @@ -235,6 +235,15 @@ problem. The Schrödinger wave equation. + + Step-39 + Solving Poisson's equation once more, this time with the + interior penalty method, one of the discontinous Galerkin + methods developed for this problem. Error estimator, adaptive + meshes, and multigrid preconditioner, all using the MeshWorker + framework. + + Step-45 Periodic boundary conditions. diff --git a/deal.II/doc/news/news.html b/deal.II/doc/news/news.html index 759ab941d3..334a6dff33 100644 --- a/deal.II/doc/news/news.html +++ b/deal.II/doc/news/news.html @@ -32,6 +32,28 @@ here.

+
+ 2010/06/24: step-39 solves Poisson's equation with + the interior penalty discontinuous Galerkin method on + adaptively refined meshes with multigrid +
+
+ Using the MeshWorker framework, this program highlights the + fact that loops over meshes are very generic and that + building matrices and level matrices and evaluating error + estimates are really the same task. +
+ +
+ 2010/06/24: The Meshworker framework has been released +
+
+ Using its generic loop and the provided auxiliary classes, + this framework relieves the application programmer from coding + loops over cells, faces, and subfaces, such that focus can remain + on implementation of the local integrals. +
+
2010/06/23: step-37 shows periodic boundary conditions