# Matplotlib compatibility patch for Pyodide
import matplotlib
if not hasattr(matplotlib.RcParams, "_get"):
matplotlib.RcParams._get = dict.get
Normal stresses#
The bending moment gives a linear normal stress distribution:
\[\sigma^{(M)} = \frac{M_{z}z}{I_{zz}}\]
Combining with normal stress due to extension gives the stress formula:
\[\sigma(z) = \frac{N}{A} + \frac{M_{z}z}{I_{zz}}\]
This is treated in chapter 4.4 and 4.5 of the book Engineering Mechanics Volume 2 (Hartsuijker and Welleman, 2007).
When there is bending in both the \(xz\) plane and \(xy\) plane, the general stress formula is obtained:
\[\sigma(y,z) = \frac{N}{A} + \frac{M_{y}y}{I_{yy}} + \frac{M_{z}z}{I_{zz}}\]
This is treated in chapter 4.8 of the book Engineering Mechanics Volume 2 (Hartsuijker and Welleman, 2007).
Exercises#
If youβre a TU Delft student, you can practise with the following
exercises
Exercises 4.1-4.64, 4.73-4.93, 4.98-4.110 in chapter 4.14 of the book Engineering Mechanics Volume 2 (Hartsuijker and Welleman, 2007). Answers are available on this website.