]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Add intro section.
authorwolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Tue, 6 Apr 2004 15:53:23 +0000 (15:53 +0000)
committerwolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Tue, 6 Apr 2004 15:53:23 +0000 (15:53 +0000)
git-svn-id: https://svn.dealii.org/trunk@8980 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/doc/tutorial/chapter-2.step-by-step/step-17.data/intro.html

index 1518606e4305295f10522604feacd142c43ef773..5a921a0a88ba825a467d88686988d2ef43f6ef60 100644 (file)
@@ -1,3 +1,60 @@
 <a name="Intro"></a>
 <h1>Introduction</h1>
 
+<p>
+This program does not introduce any new mathematical ideas; in fact, all it
+does is to do the exact same computations that <a href="step-8">step-8</a>
+already does, but it does so in a different manner: instead of using deal.II's
+own linear algebra classes, we build everything on top of classes deal.II
+provides that wrap around the linear algebra implementation of the <a
+href="http://www.mcs.anl.gov/petsc/" target="_top">PETSc</a> library. And
+since PETSc allows to distribute matrices and vectors across several computers
+within an MPI network, the resulting code will even be able to solve the
+problem in parallel. If you don't know what PETSc is, then this would be a
+good time to take a quick glimpse at their homepage.
+</p>
+
+<p>
+As a prerequisite of this program, you need to have PETSc installed, and if
+you want to run in parallel on a cluster, you also need <a
+href="http://www-users.cs.umn.edu/~karypis/metis/index.html"
+target="_top">METIS</a> to partition meshes. The installation of deal.II
+together with these two additional libraries is described in the <a
+href="../../../readme.html" target="body">README</a> file.
+</p>
+
+<p>
+Now, for the details: as mentioned, the program does not compute anything new,
+so the use of finite element classes etc. is exactly the same as before. The
+difference to previous programs is that we have replaced almost all uses of
+classes <code>Vector</code> and <code>SparseMatrix</code> by their
+near-equivalents <code>PETScWrappers::Vector</code> and
+<code>PETScWrappers::SparseMatrix</code> (for sequential vectors and matrices,
+i.e. objects for which all elements are stored locally on one machine), and
+<code>PETScWrappers::MPI::Vector</code> and
+<code>PETScWrappers::MPI::SparseMatrix</code> for versions of these classes
+where only a part of the matrix or vector is stored on each machine within an
+MPI network. These classes provide an interface that is very similar to that
+of the deal.II linear algebra classes, but instead of implementing this
+functionality themselves, they simply pass on to their corresponding PETSc
+functions. The wrappers are therefore only used to give PETSc a more modern,
+object oriented interface, and to make the use of PETSc and deal.II objects as
+interchangable as possible.
+</p>
+
+<p>
+While the sequential PETSc wrappers classes do not have any advantage over
+their deal.II counterparts, the main point of using PETSc is that it can run
+in parallel. We will make use of this by partitioning the domain into as many
+blocks (``subdomains'') as there are processes in the MPI network. At the same
+time, PETSc provides dummy MPI stubs that allow to run the same program on a
+single machine if so desired, without any changes.
+</p>
+
+<p>
+The techniques this program demonstrates are: how to use the PETSc wrapper
+classes; how to parallelize operations for jobs running on an MPI network; and
+how to partition the domain into subdomains to parallelize up the work. Since
+all this can only be demonstrated using actual code, let us go straight to the
+code without much further ado.
+</p>

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.