From 72eaac74409db4cd5a78aa408910e0b94c82311f Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Thu, 6 Jun 2013 19:59:20 +0000 Subject: [PATCH] some documentation fixes, patch from Oleh Krehel git-svn-id: https://svn.dealii.org/trunk@29786 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/doc/doxygen/headers/vector_valued.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/deal.II/doc/doxygen/headers/vector_valued.h b/deal.II/doc/doxygen/headers/vector_valued.h index cf6c5ccdb5..cd3090b848 100644 --- a/deal.II/doc/doxygen/headers/vector_valued.h +++ b/deal.II/doc/doxygen/headers/vector_valued.h @@ -294,7 +294,7 @@ - (q, \mathrm{div}\ \mathbf u) = - (q,f) + (\mathbf n\cdot\mathbf v, p)_{\partial\Omega}. + (q,f) - (\mathbf n\cdot\mathbf v, p)_{\partial\Omega}. @f} * * It is this form that we will later use in assembling the discrete weak form @@ -455,9 +455,9 @@ fe_values[velocities].divergence (j, q)) * fe_values.JxW(q); - local_rhs(i) += - fe_values[pressure].value (i, q) - rhs_values[q] * - fe_values.JxW(q); + local_rhs(i) += fe_values[pressure].value (i, q) + rhs_values[q] * + fe_values.JxW(q); } * @endcode * @@ -528,7 +528,7 @@ * extractor. For example, fe_values[pressure].gradient(i,q) * would represent the gradient of the scalar pressure component, which * is of type Tensor@<1,dim@>, whereas the gradient of the - * velocities components, fe_values[velocities].value(i,q) + * velocities components, fe_values[velocities].gradient(i,q) * is a Tensor@<2,dim@>, i.e. a matrix $G_{ij}$ that consits * of entries $G_{ij}=\frac{\partial\phi_i}{\partial x_j}$. Finally, * both scalar and vector views can be asked for the second derivatives -- 2.39.5