Skip to main content

Section 3.2 uniaxial states

The elastic modeling of uniaxial states, i.e. states of tension and deformation in which only one stress component and the associated strain component are present, can be carried out through a direct application of Hooke's law.

Insight 3.2.1. Hooke's law.

Hooke's law is a law of physics which states that the force \(F \) needed to extend or compress a spring by an amount \(x \) scales linearly with respect to that amount, i.e.

\begin{equation} F = k\,x\,.\label{Hookes_eq}\tag{3.2.1} \end{equation}

\(k\;\left[\frac{\text{N}}{\text{m}}\right]\) is known as stiffness and is a parameter, characteristic of the spring, constant and positive, \(x\;\left[\text{m}\right]\) is the elongation that the spring undergoes (in the case of a negative \(x\) the spring undergoes a shortening).

Figure 3.2.2.

The law is named after the 17th century British physicist Robert Hooke who first made the law public in 1676 as a Latin anagram. Subsequently, in 1678, he published the solution of his anagram as: ut tensio, sic vis (the extension is proportional to the force).

In order to highlight also the concept of elastic energy stored by the spring due to the effect of elongation \(x \text{,}\) consider the following mechanical scheme where all the forces acting have been highlighted (for simplicity let's suppose to carry out the experiment in the absence of gravity  1  and dissipative forces) on a body of mass \(m \) and constrained by a stiffness spring \(k \text{.}\)

In fact if we also took gravity into account the nature of the resulting equation would not change.
Figure 3.2.3.

Due to the displacement \(x \) measured from the equilibrium position, the body is subject to the inertia force \(m \, \frac {d^2 x} {dt^2} \) and the elastic force \(k \, x \) directed as shown in the figure. For the balance of the system we have

\begin{equation*} -m\,\frac{d^2 x}{dt^2} - k\,x = 0\,, \end{equation*}

that is, introducing the quantity \(\omega = \sqrt{\frac{k}{m}}\text{,}\)

\begin{equation*} \frac{d^2 x}{dt^2} + \omega^2\,x = 0\,. \end{equation*}

The differential equation obtained characterizes a system which, in mechanics, is called simple harmonic oscillator. The solution of the differential equation is described by the function

\begin{equation*} \func{x}{t} = \func{x}{0}\,\cos{(\omega\,t)} + \frac{1}{\omega}\func{\frac{dx}{dt}}{0}\,\sin{(\omega\,t)} \,, \end{equation*}

where \(\func{x}{0}\) and \(\func{\frac{dx}{dt}}{0}\) represent the initial positon and velocity. \(\omega \) is called pulsation and is measured in \(\left[\frac{\text{rad}}{\text{s}}\right]\text{.}\)

By way of example, the MATLAB® instructions that can be used for plotting the function on the basis of the following data are reported: \(\omega = 2\pi\;\left[\frac{\text{rad}}{\text{s}}\right]\text{,}\) \(m=10\;\left[\text{kg}\right]\text{,}\) \(\func{x}{0}= 1 \; \left[\text{m}\right]\) and \(\func{\frac{dx}{dt}}{0}= 10 \; \left[\frac{\text{m}}{\text{s}}\right]\text{.}\)

om = 2*pi;
u0 = 1;
v0 = 10;
m = 10;
syms t 
u(t) = u0*cos(om*t)+v0/om*sin(om*t);

tt=linspace(0,3,201);
uu=u(tt);
plot(tt,uu,'k','LineWidth',2)
Listing 3.2.4.

The perfectly oscillating trend of the solution always with respect to the same extremes is determined by the conservation of total potential energy

\begin{equation*} \Pi = \underbrace{\frac{1}{2}k\,x^2}_{\text{energia elastica}} + \underbrace{\frac{1}{2}m\,\left(\frac{dx}{dt}\right)^2}_{\text{energia cinetica}} \end{equation*}

given by the sum of elastic energy and kinetic energy. The total potential energy, in the absence of dissipative phenomena, always remains constant.

The following figure

Figure 3.2.5.
is obtained with MATLAB® instructions
Edef(t) = 1/2*om^2*m*u(t)^2;
Ekin(t) = 1/2*m*diff(u,t)^2;

dd=Edef(tt);
kk=Ekin(tt);

scale = 5*u0 / (Edef(0)+Ekin(0));
plot(tt,uu,'k',tt,dd*scale,'r',tt,kk*scale,'b','LineWidth',2)
legend('spost.','en. def.','en. cinet.')
Listing 3.2.6.
and it shows, in graphic form, the continuous transformation of the elastic energy of the spring into kinetic energy of the body and vice versa. The elastic energy (red color) oscillates between zero and the maximum value that occurs when the absolute value of the displacement (black color) is maximum, at the same time the velocity is zero. On the contrary, the kinetic energy (blue color) is maximum when the absolute value of the velocity is maximum, when at the same instant the displacement is zero.

To conclude, it is observed that the elastic energy acts as a potential for the elastic force of the spring as the latter can be obtained by deriving the energy, i.e.

\begin{equation*} F = \frac{d}{dx}\left( \frac{1}{2}k\,x^2 \right) = k\, x\,. \end{equation*}

Subsection 3.2.1 uniaxial tensile or compressive test

The following figure illustrates the result of an uniaxial load test performed on a steel bar. The result of the test is the curve shown in the figure, a curve that represents the mechanical response, that is, the value of the stress in the material, as the applied deformation increases. It is evident how the response of the material is articulated and variable and how it is not trivial to identify a mathematical / numerical model capable of reproducing the result produced by the load test, a result that can be schematically summarized as follows (for steel, and in general for metallic materials, what is shown in the figure is generally assumed to be valid both under traction and compression).

Figure 3.2.7.
  • The response of the material is initially linear.
  • There is a limit to the linear phase (Proportional limit) beyond which the response tends to remain constant by staying in the phase called yielding (Yield Point).
  • Then begins the strain hardening phase which ends with the achievement of the limit load (Ultimate Strength) of the material.
  • Once the limit load has been exceeded, the breaking point (Fracture Point) of the material is preceded by a reduction of the stress.

The focus of this chapter is however only the first phase of the response of the material, a phase that is not only linear but also elastic in the sense that Hooke's law is applicable and therefore among the only components of tension and deformation, \(\sigma \) and \(\varepsilon \text{,}\) present in an uniaxial condition, it is legitimate to assume that the following proportional relationship exists

\begin{equation} \sigma = E\,\varepsilon\,,\tag{3.2.2} \end{equation}

and that it is possible to define an elastic energy that acts as a potential for tension

\begin{equation} \Phi = \frac{1}{2} \sigma \varepsilon= \frac{1}{2}E\,\varepsilon^2 = \func{\Phi}{\varepsilon} \qquad\rightarrow\qquad \frac{d\func{\Phi}{\varepsilon}}{d\varepsilon} = E\,\varepsilon = \sigma\,,\tag{3.2.3} \end{equation}

moreover

\begin{equation} \frac{d^2\func{\Phi}{\varepsilon}}{d\varepsilon^2} = E\,.\tag{3.2.4} \end{equation}

It is also possible to carry out a complementary formulation of elastic energy, i.e. to express it with respect to stress

\begin{equation} \Phi = \frac{1}{2} \sigma \varepsilon= \frac{1}{2}\frac{\sigma^2}{E} = \func{\Phi}{\sigma} \qquad\rightarrow\qquad \frac{d\func{\Phi}{\sigma}}{d\sigma} = \frac{\sigma}{E} = \varepsilon\,,\tag{3.2.5} \end{equation}

from which

\begin{equation} \frac{d^2\func{\Phi}{\sigma}}{d\sigma^2} = \frac{1}{E}\,.\tag{3.2.6} \end{equation}

The symbol \(E \) is used to denote the Young's modulus which is a specific characteristic of the material and is measurable with a load test of the type described above (trivially \(E \) is given by the slope that the response curve assumes in the elastic phase). Recalling that the deformation is dimensionless the unit of measurement used for \(E \) is identical to that used for the stress \(\ sigma \text{.}\) Some examples of units of measurement used are the following

\begin{equation*} \left[ \frac{\text{N}}{\text{m}^{\text{2}}} \right]\,,\quad \left[ \text{Pa} \right]\,,\quad \left[ \text{MPa} \right]\,,\quad \left[ \text{GPa} \right]\,. \end{equation*}

The following table shows the value of Young's modulus for some materials used in engineering applications.

Table 3.2.8. Approximate values of Young's modulus for some materials
Material \(\quad\) \(E\;\left[\text{GPa}\right]\)
rubber \(\quad\) \(0.01-0.1\)
teflon \(\quad\) \(0.5\)
PET \(\quad\) \(2-2.7\)
wood \(\quad\) \(11\)
human bones \(\quad\) \(14\)
concrete \(\quad\) \(15-30\)
glass \(\quad\) \(50-90\)
aluminum \(\quad\) \(70\)
steel \(\quad\) \(200\)

Subsection 3.2.2 uniaxial shear test

What has been observed for the uniaxial tensile test also occurs in the uniaxial tests which involve tangential components of stress and strain. Again there is a first part of the response that can be described trough Hooke's law. However, the proportionality coefficient changes. In particular, the relationship between the tangential stress component \(\tau \) and the shear deformation component \(\gamma \) (see (1.9.10)) can be formulated as follows

\begin{equation} \tau = G\,\gamma\,,\tag{3.2.7} \end{equation}

where the symbol \(G\) is used to denote the shear modulus.

The following table shows the value of the shear modulus for some materials.

Table 3.2.9. Approximate values of the shear modulus for some materials
Material \(\quad\) \(G\;\left[\text{GPa}\right]\)
rubber \(\quad\) \(0.0006\)
PET \(\quad\) \(0.117\)
aluminum \(\quad\) \(25\)
glass \(\quad\) \(26\)
titanium \(\quad\) \(41\)
iron \(\quad\) \(52\)
steel \(\quad\) \(79\)
diamond \(\quad\) \(478\)