]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Use @code instead of @verbatim.
authorDavid Wells <wellsd2@rpi.edu>
Fri, 4 May 2018 02:28:12 +0000 (22:28 -0400)
committerDavid Wells <wellsd2@rpi.edu>
Fri, 4 May 2018 02:28:12 +0000 (22:28 -0400)
examples/step-18/doc/intro.dox

index c4e8d180b44377b1f76d10d9135bb05c57a77146..87e63c391927f523fa2b912cc9678c113d872435 100644 (file)
@@ -486,7 +486,7 @@ sequence of operations on the present mesh:
   local contributions to the matrix in the following elegant way (the variable
   <code>stress_strain_tensor</code>, corresponding to the tensor $C$, has
   previously been initialized with the result of the first function above):
-  @verbatim
+  @code
 for (unsigned int i=0; i<dofs_per_cell; ++i)
   for (unsigned int j=0; j<dofs_per_cell; ++j)
     for (unsigned int q_point=0; q_point<n_q_points;
@@ -501,7 +501,7 @@ for (unsigned int i=0; i<dofs_per_cell; ++i)
               *
               fe_values.JxW (q_point));
       }
-  @endverbatim
+  @endcode
   It is worth noting the expressive power of this piece of code, and to
   compare it with the complications we had to go through in previous examples
   for the elasticity problem. (To be fair, the SymmetricTensor class
@@ -527,7 +527,7 @@ for (unsigned int i=0; i<dofs_per_cell; ++i)
   <code>local_quadrature_points_data</code> that allows to access the stress
   $\sigma^{n-1}_q$ in each quadrature point. With this the code for the right
   hand side looks as this, again rather elegant:
-  @verbatim
+  @code
 for (unsigned int i=0; i<dofs_per_cell; ++i)
   {
     const unsigned int
@@ -547,7 +547,7 @@ for (unsigned int i=0; i<dofs_per_cell; ++i)
                        fe_values.JxW (q_point);
       }
   }
-  @endverbatim
+  @endcode
   Note that in the multiplication $\mathbf{f}(\mathbf{x}_q) \cdot \varphi_i(\mathbf{x}_q)$, we have made use of the fact that for the chosen finite element, only
   one vector component (namely <code>component_i</code>) of $\varphi_i$ is
   nonzero, and that we therefore also have to consider only one component of
@@ -596,6 +596,3 @@ addition, gravity acts on the body.
 The program text will reveal more about how to implement this situation, and
 the results section will show what displacement pattern comes out of this
 simulation.
-
-
-

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.