Introduction to Elasticity/Kinematics example 3
From Wikiversity
[edit] Example 3
Given:
Unit square
with displacement fields :
.
.
.
Sketch: Deformed configuration in x1,x2 plane.
[edit] Solution
The displacement
. Hence,
. In the reference configuration,
and
. Hence, in the (x1,x2) plane, the initial square is the same shape as the unit square in the (X1,X2) plane. We can use Maple to find out the values of x1 and x2 after the deformation
.
with(linalg):</code>
X := array(1..3): x := array(1..3): u = array(1..3):
e1 := array(1..3,[1,0,0]):
e2 := array(1..3,[0,1,0]): e3 = array(1..3,[0,0,1]):
ua := evalm(k*X[2]*e1 + k*X[1]*e2):
ub := evalm(-k*X[2]*e1 + k*X[1]*e2);
uc := evalm(k*X[1]^2*e2);
xa := evalm(ua + X);
xb := evalm(ub + X);
xc := evalm(uc + X);</code>
Plots of the deformed body are shown below
![\mathit{ua} := \left[ k{X_{2}}, k{X_{1}}, 0 \right]](http://upload.wikimedia.org/math/1/a/8/1a83b23bea40b0a016ad51fd81f729b8.png)
![\mathit{ub} := \left[ - k{X_{2}}, k{X_{1}}, 0 \right]](http://upload.wikimedia.org/math/0/f/3/0f374897380256a50b0cdc16715f1eea.png)
![\mathit{uc} := \left[ 0, k{X_{1}}^{2}, 0 \right]](http://upload.wikimedia.org/math/f/d/8/fd846d76c5d7c611ade23cdb30bda602.png)
![\mathit{xa} := \left[ k{X_{2}} + {X_{1}}, k{X_{1}} + {X_{2}}, {X_{3}} \right]](http://upload.wikimedia.org/math/9/c/d/9cd61d0bd0ab629a0fb22f49dc51e41d.png)
![\mathit{xb} := \left[ - k{X_{2}} + {X_{1}}, k{X_{1}} + {X_{2}}, {X_{3}} \right]](http://upload.wikimedia.org/math/3/7/c/37cffc97125185ac6bae74fefcd485a6.png)
![\mathit{xc} := \left[ {X_{1}}, k{X_{1}}^{2} + {X_{2}}, {X_{3}} \right]](http://upload.wikimedia.org/math/c/6/e/c6ea28a03fe03a4e6d9ede51a12260ff.png)