Open Educational Resources

Linear Elastic Materials: Restrictions on the Elastic Moduli

Learning Outcomes

Describe the mathematical concept: “positive definiteness” and its relationship to the physics concept “energy storage” in the material.
State the limits on Young’s modulus and Poisson’s ratio for linear elastic isotropic materials for the material to be stable (with a positive definite relationship between the stress and the strain).
Compute the energy stored inside a material for the simple cases of: “shear stress”, “hydrostatic stress”, and “uniaxial stress”.

Restrictions on the Elastic Moduli

The strain energy density per unit volume \overline{U} for a linear elastic material under a general state of stress is equal to:

    \[\overline{U} = \frac{1}{2} \sum_{i,j=1}^3 \sigma_{ij}\varepsilon_{ij} = \frac{1}{2}(\sigma_{11}\varepsilon_{11} + \sigma_{22}\varepsilon_{22} + \sigma_{33}\varepsilon_{33} + 2\sigma_{12}\varepsilon_{12} + 2\sigma_{13}\varepsilon_{13} + 2\sigma_{23}\varepsilon_{23})\]

As shown above, since each of the stress and strain matrices are symmetric, they can be represented as vectors in \mathbb{R}^6. The dot product can then be used to find a simplified expression for the strain energy density function:

    \[\overline{U} = \frac{1}{2}(\sigma \cdot \varepsilon) = \frac{1}{2}(\varepsilon \cdot \sigma) = \frac{1}{2}(\varepsilon \cdot C \varepsilon)\]

We can use two physical restrictions on the materials to impose mathematical restrictions on the entries of the matrix C. These two restrictions are that the material is stable and deformable. Stability means that whenever a state of strain is applied, energy is stored in the material. Stability is also equivalent to the statement that the material deformation increases in the direction of the increasing stress. The equivalent mathematical restriction on C is:

    \[\forall \varepsilon : \overline{U} = \frac{1}{2}(\varepsilon \cdot C \varepsilon) > 0\]

Since C is symmetric, then C has to be positive definite. This implies that all its eigenvalues have to be positive. This argument will be used to find restrictions on the values of the elastic moduli described above.

Restrictions on the Elastic Moduli of Linear Elastic Isotropic Materials

The distinct eigenvalues of the matrix C in Equation 6 are:

    \[\frac{1-2\nu}{E}, \hspace{5mm} \frac{1+\nu}{E}, \hspace{5mm} \frac{2(1+\nu)}{E}\]

For these to be positive, the following inequalities have to be satisfied:

    \[E>0 \hspace{5mm} -1 < \nu < \frac{1}{2}\]

The following mathematica code presents the calculations above:

View Mathematica Code

G = Ee/2/(1 + Nu);
Cc = {{1/Ee, -Nu/Ee, -Nu/Ee, 0, 0, 0}, {-Nu/Ee, 1/Ee, -Nu/Ee, 0, 0,0}, {-Nu/Ee, -Nu/Ee, 1/Ee, 0, 0, 0}, {0, 0, 0, 1/G, 0, 0}, {0, 0,0, 0, 1/G, 0},
{0, 0, 0, 0, 0, 1/G}};
Cc // MatrixForm
a = Eigenvalues[Cc]
Reduce[{a[[1]]>0, a[[2]]>0,a[[6]]>0}, {Ee, Nu}]

View Python Code

from sympy import Matrix,fraction
from sympy.solvers.inequalities import reduce_rational_inequalities
import sympy as sp
Ee,Nu = sp.symbols("E nu", real = True)
G = Ee/2/(1 + Nu)
Cc = Matrix([[1/Ee,-Nu/Ee,-Nu/Ee,0,0,0],
              [-Nu/Ee,1/Ee, -Nu/Ee,0,0,0], 
              [-Nu/Ee, -Nu/Ee, 1/Ee,0, 0, 0], 
              [0, 0, 0, 1/G, 0, 0], 
              [0, 0, 0, 0, 1/G, 0], 
              [0, 0, 0, 0, 0, 1/G]])
display("C =",Cc)
eigensystem = Cc.eigenvects()
eigenvalues = [i[0] for i in eigensystem]
display("eigenvalues =",eigenvalues)
# I have not found an algorithm where sympy can solve multiple values in inequalities
n1,d1 = fraction(eigensystem[0][0])
n2,d2 = fraction(eigensystem[1][0])
n3,d3 = fraction(eigensystem[2][0])
s_Nu = reduce_rational_inequalities([[n1>0,n2>0,n3>0]], Nu)
s_Ee = reduce_rational_inequalities([[1/d1>0,1/d2>0,1/d3>0]], Ee)
display("Inequalities for Eigenvalues to be positive:",s_Nu,s_Ee)

Materials possessing a negative Poisson’s ratio are common, see for example the article here or the Wikipedia article on Auxetics (materials possessing negative Poisson’s ratio).

A more intuitive method to find the same restrictions is by assuming different states of stresses and ensuring that the energy stored per unit volume under these states of stresses is positive. The first state is a uniaxial state of stress where \sigma_{11} is the only non-zero stress component. Using Equation 6, the stresses and the strains have the following forms:

    \[\sigma =  \begin{pmatrix} \sigma_{11} & 0 & 0 \\ 0 & 0 & 0 \\ 0 & 0 & 0 \\ \end{pmatrix} \hspace{5mm} \varepsilon =  \begin{pmatrix} \frac{\sigma_{11}}{E} & 0 & 0 \\ 0 & -\frac{\nu \sigma_{11}}{E} & 0 \\ 0 & 0 & -\frac{\nu \sigma_{11}}{E} \\ \end{pmatrix}\]

The restriction that the energy stored has to be greater than zero leads to E>0 as follows:

    \[\overline{U} = \frac{1}{2}\sigma_{11} \frac{\sigma_{11}}{E} = \frac{\sigma_{11}^2}{2E} > 0 \Rightarrow E > 0\]

The second state is a shear state of stress where \sigma_{12}=\sigma_{21} are the only non-zero stress components. Using Equation 6, the stresses and the strains have the following forms:

    \[\sigma =  \begin{pmatrix} 0 & \sigma_{12} & 0 \\ \sigma_{12} & 0 & 0 \\ 0 & 0 & 0 \\ \end{pmatrix} \hspace{5mm} \varepsilon =  \begin{pmatrix} 0 & \frac{\sigma_{12}}{2G} & 0 \\ \frac{\sigma_{12}}{2G} & 0 & 0 \\ 0 & 0 & 0 \\ \end{pmatrix}\]

The restriction that the energy stored has to be greater than zero leads to \nu>-1 as follows:

    \[\overline{U} =\frac{1}{2}(2\sigma_{12}\frac{\sigma_{12}}{2G}) = \frac{\sigma_{12}^2}{2G} > 0 \Rightarrow G > 0 \Rightarrow \frac{E}{2(1+\nu)} > 0 \Rightarrow \nu > -1\]

The third state is a state of hydrostatic stress where \sigma_{11}=\sigma_{22}=\sigma_{33}=p\in\mathbb{R} are the only non-zero stress components. Using Equation 6, the stresses and the strains have the following forms:

    \[\sigma =  \begin{pmatrix} p & 0 & 0 \\ 0 & p & 0 \\ 0 & 0 & p \\ \end{pmatrix} \hspace{5mm} \varepsilon =  \frac{(1-2\nu)p}{E} \begin{pmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \\ \end{pmatrix}\]

The restriction that the energy stored has to be greater than zero leads to \nu<0.5 as follows:

    \[\overline{U} = \frac{1}{2}\Big(3p\frac{(1-2\nu)p}{E}\Big) = \frac{3p^2(1-2\nu)}{2E} > 0 \Rightarrow \nu < \frac{1}{2}\]

Restrictions on the Elastic Moduli of Linear Elastic Orthotropic Materials

For orthotropic linear elastic materials, the positive definiteness of C imply the following inequalities:

    \[E_{11}, E_{22}, E_{33}, G_{12}, G_{13}, G_{23} > 0\]

    \[|\nu_{ij}| < (\frac{E_{ii}}{E_{jj}})^{\frac{1}{2}} \hspace{5mm} i \neq j\]

    \[1- \nu_{12}\nu_{21} - \nu_{13}\nu_{31} - \nu_{23}\nu_{32} - 2\nu_{21}\nu_{13}\nu_{32} > 0\]

The above equations show that values for the different orthotropic Poisson’s ratios are not bounded by –1 and 0.5. In fact, orthotropic materials (typically, fibrous biological materials like ligaments) can exhibit values beyond those bounds. For example, ligaments can exhibit a Poisson’s ratio that is higher than 0.5.

IMPORTANT NOTE:

The above restrictions ensure that, physically, a material is stable (possessing a rising stress strain curve) and that any state of stress will cause nonzero strain values inside the material. It is important to realize that it cannot be argued that E < 0 and/or that \nu=0.5 are physically impossible. They are simply unacceptable constants for linear elastic materials with a positive definite constitutive model. Materials that become unstable with loading (e.g., decrease in stress accompanying an increase in strain) or incompressible materials (materials exhibiting no strain for a stress state \sigma=pI\in\mathbb{M}^3, p\in\mathbb{R} may exist but cannot be modelled using the linear elastic constitutive model.

Video

Quiz-Elastic Moduli

Solution Guide

Leave a Reply

Your email address will not be published.