# Matplotlib compatibility patch for Pyodide
import matplotlib
if not hasattr(matplotlib.RcParams, "_get"):
matplotlib.RcParams._get = dict.get
Lesson November 26th#
During today’s lesson you’ll work on a complex exercise on the topic of the Transforming tensors graphically. Please ask your questions regarding the homework as well!
Exercise Transforming tensors graphically#
Given is the following stress element:
Find the principal stresses and their directions using Mohr’s circle. Draw the stresses on a rotated square stress element.
Find the stresses on a square stress element with horizontal and vertical faces.
Solution assignment 1
Solution assignment 2