From: Wolfgang Bangerth Date: Tue, 3 Mar 2020 13:46:41 +0000 (-0700) Subject: Augment the introduction of step-8. X-Git-Tag: v9.2.0-rc1~466^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d773343dbb85ea2ee796f2628fc7863315b4d68c;p=dealii.git Augment the introduction of step-8. We should make the connection to the Laplace equation a bit clearer, and also introduce some of the notation we use there. --- diff --git a/examples/step-8/doc/intro.dox b/examples/step-8/doc/intro.dox index a982951eea..6d1f929394 100644 --- a/examples/step-8/doc/intro.dox +++ b/examples/step-8/doc/intro.dox @@ -12,26 +12,69 @@ understood as well. @dealiiVideoLecture{19} -In this tutorial program we will want to solve the elastic equations. They are -an extension to Laplace's equation with a vector-valued solution that +In this tutorial program we will want to solve the +elastic equations. +They are an extension to Laplace's equation with a vector-valued solution that describes the displacement in each space direction of a rigid body which is subject to a force. Of course, the force is also vector-valued, meaning that in each point it has a direction and an -absolute value. The elastic equations are the following: +absolute value. + +One can write the elasticity equations in a number of ways. The one that shows +the symmetry with the Laplace equation in the most obvious way is to write it +as +@f[ + - + \text{div}\, + (C \nabla \mathbf{u}) + = + \mathbf f, +@f] +where $\mathbf u$ is the vector-valued displacement at each point, +$\mathbf f$ the force, and $C$ is a rank-4 tensor (i.e., it has four +indices) that encodes the stress-strain relationship -- in essence, +it represents the +"spring constant" in +Hookes law that relates the displacement to the forces. $C$ will, in many +cases, depend on $\mathbf x$ if the body whose deformation we want to +simulate is composed of different materials. + +While the form of the equations above is correct, it is not the way +they are usually derived. In truth, the gradient of the displacement +$\nabla\mathbf u$ (a matrix) has no physical meaning whereas its +symmetrized version, +@f[ +\varepsilon(\mathbf u)_{kl} =\frac{1}{2}(\partial_k u_l + \partial_l u_k), +@f] +does and is typically called the "strain". (Here and in the following, +$\partial_k=\frac{\partial}{\partial x_k}$. We will also use the +Einstein summation +convention that whenever the same index appears twice in an equation, +summation over this index is implied; we will, however, not distinguish +between upper and lower indices.) +With this definition of the strain, the elasticity equations +then read as +@f[ + - + \text{div}\, + (C \varepsilon(\mathbf u)) + = + \mathbf f, +@f] +which you can think of as the more natural generalization of the Laplace +equation to vector-valued problems. (The form shown first is equivalent to +this form because the tensor $C$ has certain symmetries, namely that +$C_{ijkl}=C_{ijlk}$, and consequently $C \varepsilon(\mathbf u)_{kl} += C \nabla\mathbf u$.) + +One can of course alternatively write these equations in component form: @f[ - \partial_j (c_{ijkl} \varepsilon_{kl}) = f_i, \qquad - i=1\ldots d, -@f] -where the values $c_{ijkl}$ are the stiffness coefficients that -usually depend on the space coordinates and the strain $\varepsilon_{kl}$ is -the symmetrized gradient of the displacement, -given by -@f[ -\varepsilon_{kl} =\frac{1}{2}(\partial_k u_l + \partial_l u_k) + i=1\ldots d. @f] In many cases, one knows that the material under consideration is