From: Timo Heister Date: Thu, 6 Jun 2013 19:59:20 +0000 (+0000) Subject: some documentation fixes, patch from Oleh Krehel X-Git-Tag: v8.0.0~303 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=72eaac74409db4cd5a78aa408910e0b94c82311f;p=dealii.git some documentation fixes, patch from Oleh Krehel git-svn-id: https://svn.dealii.org/trunk@29786 0785d39b-7218-0410-832d-ea1e28bc413d --- 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