]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Convert '%Boundary' to 'Boundary'.
authorDavid Wells <wellsd2@rpi.edu>
Sat, 12 May 2018 14:54:37 +0000 (10:54 -0400)
committerDavid Wells <wellsd2@rpi.edu>
Sun, 13 May 2018 18:21:59 +0000 (14:21 -0400)
Since this class is gone we no longer need to escape it when generating
documentation.

15 files changed:
doc/doxygen/headers/glossary.h
doc/doxygen/scripts/intro2toc
doc/doxygen/tutorial/tutorial.h.in
doc/news/6.2.0-vs-6.3.0.h
examples/step-22/doc/intro.dox
examples/step-23/step-23.cc
examples/step-31/doc/intro.dox
examples/step-34/doc/intro.dox
examples/step-52/doc/intro.dox
examples/step-60/doc/intro.dox
examples/step-60/doc/results.dox
include/deal.II/fe/fe_values.h
include/deal.II/grid/tria.h
include/deal.II/numerics/error_estimator.h
include/deal.II/numerics/matrix_tools.h

index 588411e53eaeeb4b86b06bfbe03f226b7233646a..6f2859162a5137d9cb69053bfebcb441e36b97f1 100644 (file)
  * </dd>
  *
  *
- * <dt class="glossary">@anchor GlossBoundaryForm <b>%Boundary form</b></dt>
+ * <dt class="glossary">@anchor GlossBoundaryForm <b>Boundary form</b></dt>
  *
  * <dd>For a dim-dimensional triangulation in dim-dimensional space,
  * the boundary form is a vector defined on faces. It is the vector
  * </dd>
  *
  *
- * <dt class="glossary">@anchor GlossBoundaryIndicator <b>%Boundary indicator</b></dt>
+ * <dt class="glossary">@anchor GlossBoundaryIndicator <b>Boundary indicator</b></dt>
  *
  * <dd> In a Triangulation object, every part of the boundary may be
  * associated with a unique number (of type types::boundary_id) that
  * VectorTools::interpolate_boundary_values,
  * VectorTools::compute_no_normal_flux_constraints.
  *
- * @note %Boundary indicators are inherited from mother faces and edges to
+ * @note Boundary indicators are inherited from mother faces and edges to
  * their children upon mesh refinement. Some more information about boundary
  * indicators is also presented in a section of the documentation of the
  * Triangulation class.
index f65d9db52d5c7a2c2c796e5a2501890b468b4efe..1b1b67015cf580563f1e011596b1b7d9bda8ffbf 100644 (file)
@@ -48,11 +48,10 @@ while (<>) {
           # replace double dashes in comments by &mdash;
           $text =~ s!--!&mdash;!g;
 
-          # we sometimes escape words with % (as in "%Boundary
-          # conditions") because doxygen would otherwise link the word
-          # to a class name. This isn't necessary in the index because
-          # the text already appears in a hyperref, so get rid of the
-          # percent sign
+          # we sometimes escape words with % (as in "boundary %Function")
+          # because doxygen would otherwise link the word to a class name. This
+          # isn't necessary in the index because the text already appears in a
+          # hyperref, so get rid of the percent sign
           $text =~ s!\%!!g;
 
           print "        <li><a href=\"#$reftext\">$text</a>\n";
index cd2cade0e0452216a3f84588d0abb0991c9902f4..ed0a592f1410939b7db08160f9c06d488df400eb 100644 (file)
  *       <td>step-3</td>
  *       <td> Actually solve Laplace's
  *       problem. Object-orientation. Assembling matrices and
- *       vectors. %Boundary values.
+ *       vectors. Boundary values.
  *       </td></tr>
  *
  *   <tr valign="top">
  *
  *   <tr valign="top">
  *       <td>step-34</td>
- *       <td> %Boundary element methods (BEM) of low order: Exterior irrotational
+ *       <td> Boundary element methods (BEM) of low order: Exterior irrotational
  *       flow. The ParsedFunction class.
  *       </td></tr>
  *
  *   </tr>
  *
  *   <tr valign="top">
- *     <td> %Boundary element methods, curved manifolds
+ *     <td> Boundary element methods, curved manifolds
  *     </td>
  *     <td>
  *       step-32,
index a24750db3f48bf7700952799ef954f446c13d659..942731537b073f2e9a8494861c79d1330476b012 100644 (file)
@@ -201,7 +201,7 @@ inconvenience this causes.
    and Cataldo Manigrasso, SISSA, Trieste, Italy). It
    explains in detail how to use the
    library for the solution of problems defined on codimension
-   one manifolds, such as, for example, %Boundary Element Methods.
+   one manifolds, such as, for example, Boundary Element Methods.
    <br>
    (Luca Heltai, 2009/09/23)
    </p>
index d1d28f990922dc09f71db0f00cd0ae86019d4ffe..ead7896cc7512d0b784cc87cfa7903a62b064516 100644 (file)
@@ -177,7 +177,7 @@ of the bilinear form that the Stokes equations yield a symmetric bilinear
 form, and consequently a symmetric (if indefinite) system matrix.
 
 
-<h3>%Boundary conditions</h3>
+<h3>Boundary conditions</h3>
 
 @dealiiVideoLecture{21.5}
 (@dealiiVideoLectureSeeAlso{21.55,21.6,21.65})
index dd2b38865f93549788040ad0e80645ccfc0f6f58..0396308981dbe1a5af07c489b44ce301b9e0c3ec 100644 (file)
@@ -582,7 +582,7 @@ namespace Step23
         // that this time the matrix on the left is the mass matrix (which we
         // copy again in order to be able to apply boundary conditions, and
         // the right hand side is $MV^{n-1} - k\left[ \theta A U^n +
-        // (1-\theta) AU^{n-1}\right]$ plus forcing terms. %Boundary values
+        // (1-\theta) AU^{n-1}\right]$ plus forcing terms. Boundary values
         // are applied in the same way as before, except that now we have to
         // use the BoundaryValuesV class:
         laplace_matrix.vmult (system_rhs, solution_u);
index 2735157a58cc0428101971fc6d9d1204243c7e4e..96055a1093dc5b83b7168f07e6c19e856b8a16d0 100644 (file)
@@ -125,7 +125,7 @@ problems and that you may want to investigate before trying to morph step-31
 into something that can solve whatever you want to solve.
 
 
-<h3>%Boundary and initial conditions</h3>
+<h3>Boundary and initial conditions</h3>
 
 Since the Boussinesq equations are derived under the assumption that inertia
 of the fluid's motion does not play a role, the flow field is at each time
index 30d2491375c5b10fd64d2dd6e1f85ed52f72d2f2..03ebeee49d4cd9fab9abe133479fd896190071e6 100644 (file)
@@ -230,7 +230,7 @@ $\Omega$:
   \quad \mathbf{x}\in \partial\Omega,
 \f]
 
-which is the %Boundary Integral Equation (BIE) we were looking for,
+which is the Boundary Integral Equation (BIE) we were looking for,
 where the quantity $\alpha(\mathbf{x})$ is the fraction of angle or
 solid angle by which the point $\mathbf{x}$ sees the domain of
 integration $\mathbb{R}^n\backslash\Omega$.
@@ -472,7 +472,7 @@ This is exactly Bernoulli's law mentioned above.
 
 <h3>The numerical approximation</h3>
 
-Numerical approximations of %Boundary Integral Equations (BIE) are commonly
+Numerical approximations of Boundary Integral Equations (BIE) are commonly
 referred to as the boundary element method or panel method (the latter
 expression being used mostly in the computational fluid dynamics community).
 The goal of the following test problem is to solve the integral
index ba3cc54946780624f57082b54fcbb02687f32700..d5ace992a0c8db2372e3315a514ef76bedaacf36 100644 (file)
@@ -216,7 +216,7 @@ where
   {\cal S}_{i}(t)  &=& (\psi_i,S(x,t))_\Omega.
 @f}
 See also step-24 and step-26 to understand how we arrive here.
-%Boundary terms are not necessary due to the chosen boundary conditions for
+Boundary terms are not necessary due to the chosen boundary conditions for
 the current problem. To use the Runge-Kutta methods, we recast this
 as follows:
 @f{eqnarray*}
index d61317a6d79d91c27332de7bbb988417272b88c3..44e26cf1a2fa7ff3fd9c8c8cd58aff5366795ced 100644 (file)
@@ -299,7 +299,7 @@ example, something you read from file, or a closed sphere that you later deform
 to something more interesting.
 
 In the default scenario, $\Gamma$ has co-dimension one, and this tutorial
-program implements the Fictitious %Boundary Method. As it turns out, the same
+program implements the Fictitious Boundary Method. As it turns out, the same
 techniques are used in the Variational Immersed Finite Element Method, and
 the coupling operator $C$ defined above is the same in almost all of these
 non-matching methods.
@@ -323,7 +323,7 @@ $\Omega$.
   International Journal of Multiphase Flow 25 (5). Pergamon: 755–94.
 
 - Boffi, D., L. Gastaldi, L. Heltai, and C.S. Peskin. 2008. “On the
-  Hyper-Elastic Formulation of the Immersed %Boundary Method.” Computer Methods
+  Hyper-Elastic Formulation of the Immersed Boundary Method.” Computer Methods
   in Applied Mechanics and Engineering 197 (25–28).
 
 - Heltai, L., and F. Costanzo. 2012. “Variational Implementation of Immersed
index 8accfecaacbcc36340eefe57d16b2bc8b193fa12..59627a376d0edbadbf5100e67693211bedd51f3d 100644 (file)
@@ -394,7 +394,7 @@ across $\Gamma$, in order to obtain the Dirichlet data $g$.
 
 So $S$ is some sort of Neumann to Dirichlet map, and we would like to have a
 good approximation for the Dirichlet to Neumann map. A possibility would be to
-use a %Boundary Element approximation of the problem on $\Gamma$, and construct a
+use a Boundary Element approximation of the problem on $\Gamma$, and construct a
 rough approximation of the hyper-singular operator for the Poisson problem
 associated to $\Gamma$, which is precisely a Dirichlet to Neumann map.
 
index d38072c4990ea215512f279e571cf644ffae46d8..6e2cf0a57e1fcdf9428280c26cbb16d842578846 100644 (file)
@@ -3277,7 +3277,7 @@ public:
                     const Quadrature<dim-1>&           quadrature);
 
   /**
-   * %Boundary form of the transformation of the cell at the <tt>i</tt>th
+   * Boundary form of the transformation of the cell at the <tt>i</tt>th
    * quadrature point.  See
    * @ref GlossBoundaryForm.
    *
index c4e1e60769f883116d7ee6591d17a85f2b57ab40..07da7c0ee58c1b9a353821389769d2ea5e7c57f6 100644 (file)
@@ -833,13 +833,13 @@ namespace internal
  * to pertain to a particular region of the domain, material ids are inherited
  * by child cells from their parent upon mesh refinement.
  *
- * %Boundary indicators on lower dimensional objects (these have no material
+ * Boundary indicators on lower dimensional objects (these have no material
  * id) indicate the number of a boundary component. The weak formulation of the
  * partial differential equation may have different boundary conditions on
  * different parts of the boundary. The boundary indicator can be used in
  * creating the matrix or the right hand side vector to indicate these
  * different parts of the model (this use is like the material id of cells).
- * %Boundary indicators may be in the range from zero to
+ * Boundary indicators may be in the range from zero to
  * numbers::internal_face_boundary_id-1. The value
  * numbers::internal_face_boundary_id is reserved to denote interior lines (in
  * 2D) and interior lines and quads (in 3D), which do not have a boundary
index 9b3300db4c5494678c9d122b6ab03fe5275193f1..6a3f20c17c03bc4d2ecd11272b97f38f1d575b1f 100644 (file)
@@ -150,7 +150,7 @@ namespace hp
  * coefficient which will then be used for all components.
  *
  *
- * <h3>%Boundary values</h3>
+ * <h3>Boundary values</h3>
  *
  * If the face is at the boundary, i.e. there is no neighboring cell to which
  * the jump in the gradiend could be computed, there are two possibilities:
index d15283a5a5e942963302d871165d1611a4ce5a5d..36525e2d40672925621487e8a8e7529277754533 100644 (file)
@@ -572,7 +572,7 @@ namespace MatrixCreator
  * others.
  *
  *
- * <h3>%Boundary conditions</h3>
+ * <h3>Boundary conditions</h3>
  *
  * The apply_boundary_values() function inserts boundary conditions into a
  * system of equations.  To actually do this you have to specify a list of

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.