From: David Wells Date: Fri, 10 May 2019 03:08:52 +0000 (-0400) Subject: step-32: minor typography fixes. X-Git-Tag: v9.1.0-rc1~80^2~4 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d6ffbf7dad5bb0224eaea5a660953d7c28928800;p=dealii.git step-32: minor typography fixes. --- diff --git a/examples/step-32/doc/intro.dox b/examples/step-32/doc/intro.dox index 55e60a1c2e..7908a13bb2 100644 --- a/examples/step-32/doc/intro.dox +++ b/examples/step-32/doc/intro.dox @@ -85,7 +85,7 @@ hand side, we can assume that $\rho=\rho(T)$. An assumption that may not be entirely justified is that we can assume that the changes of density as a function of temperature are small, leading to an expression of the form $\rho(T) = \rho_{\text{ref}} -[1-\beta(T-T_{\text{ref}})]$, i.e. the density equals +[1-\beta(T-T_{\text{ref}})]$, i.e., the density equals $\rho_{\text{ref}}$ at reference temperature and decreases linearly as the temperature increases (as the material expands). The force balance equation then looks properly written like this: @@ -213,7 +213,7 @@ Stokes problem: if we discretize it as usual, we get a linear system @f} which in this program we will solve with a FGMRES solver. This solver iterates until the residual of these linear equations is below a -certain tolerance, i.e. until +certain tolerance, i.e., until @f[ \left\| \left(\begin{array}{c} @@ -309,7 +309,7 @@ also have to scale the pressure immediately before solving. In this tutorial program, we apply a variant of the preconditioner used in step-31. That preconditioner was built to operate on the -system matrix M in block form such that the product matrix +system matrix $M$ in block form such that the product matrix @f{eqnarray*} P^{-1} M = @@ -321,7 +321,7 @@ system matrix M in block form such that the product matrix \end{array}\right) @f} is of a form that Krylov-based iterative solvers like GMRES can solve in a -few iterations. We then replaced the exact inverse of A by the action +few iterations. We then replaced the exact inverse of $A$ by the action of an AMG preconditioner $\tilde{A}$ based on a vector Laplace matrix, approximated the Schur complement $S = B A^{-1} B^T$ by a mass matrix $M_p$ on the pressure space and wrote an InverseMatrix class for @@ -655,7 +655,7 @@ computers is almost always done using the Message Passing Interface of the step-17 and step-18 programs in this though in practice it borrows more from step-40 in which we first introduced the classes and strategies we use when we want to completely distribute all computations, and -step-55 that shows how to do that for +step-55 that shows how to do that for @ref vector_valued "vector-valued problems": including, for example, splitting the mesh up into a number of parts so that each processor only stores its own share plus some ghost cells, and using strategies where no @@ -696,7 +696,7 @@ necessary information. As a consequence, there are two Trilinos classes that we have to deal with directly (rather than through wrappers), both of which are part of Trilinos' Epetra library of basic linear algebra and tool classes: