FINITE ELEMENT ANALYSIS OF SHELLS - EARLY ACCESS 
Section 4
Expanding to a full plate element solver
21. Section overview - Expanding to a full plate element solver
01:28 (Preview)
22. Procedurally generating a rectangular mesh
24:30
23. Defining plate constraints
11:08
24. Defining the self-weight force vector
10:35
25. Building the structure stiffness matrix
10:05
26. Solving the system and extracting reaction forces
28:13
27. Plotting the plate displacements
18:10
28. Building an evaluation grid for stress resultants
10:31
29. Calculating the moments and shears
22:00
30. Visualising the plate bending moments
14:13
31. Extracting shear forces
29:04
32. Visualising the plate shear forces
12:21
33. Adding strip and edge masking to the shear plot
26:04
34. Adding magnitude clipping to the shear plot
10:40
35. Building an interpolation utility function
09:53
29. Calculating the moments and shears
Expanding to a full plate element solver
Please log in or enroll to access resources

Summary

In this lecture, we'll cover the following:

  • How to compute stress resultants using the relation between the constitutive matrix, strain–displacement matrix, and nodal displacements
  • How local coordinates (r, s) determine where stress resultants are evaluated within an element
  • How to extract element-level nodal displacements from global displacement vectors
  • How to construct and reuse the strain–displacement matrix for each evaluation point
  • How to handle duplicate stress resultant values at shared grid points by averaging

In this lecture, we walk through the full process of evaluating stress resultants across an element mesh using previously developed finite element components. We apply the relationship between the generalised constitutive matrix, the strain–displacement matrix, and the nodal displacement vector to compute bending moments and shear forces at specific points. A key idea is that the strain–displacement matrix depends on local coordinates (r, s), which allows us to evaluate stress resultants at any location within an element by varying these coordinates across an evaluation grid.

We then implement this numerically by looping over all evaluation points, extracting the relevant element displacements, constructing the strain–displacement matrix, and assembling the stress resultants. A practical issue arises because multiple elements contribute values at shared global coordinates, leading to duplicate but slightly different results. To address this, we identify duplicates using coordinate-based masking and compute averaged values, producing a clean, unique dataset of stress resultants across the grid. This prepares us for visualisation in the next stage.

Next up

Next, we will visualise these bending moments using heat maps and explore the Wood and Armer method for computing practical design moments.

Tags

stress resultantsfinite element post-processingnodal displacement extractiondata averaging

Please log in or enroll to continue

If you've already enrolled, please log in to continue.

Finite Element Analysis of Plate and Shell Structures: Part 1 - Plates

An analysis pipeline for thick and thin plate structures, a roadmap from theory to toolbox

After completing this course...

  • You will understand how Reissner-Mindlin theory enables us to accurately capture both thin and thick plate behaviour.
  • You will understand how to turn the fundamental mechanics of plate behaviour into a custom finite element solver written in Python.
  • You will have developed meshing workflows that utilise the powerful open-source meshing engine, GMSH.
  • In addition to using your own custom finite element code, you will be comfortable validating your results using OpenSeesPy and Pynite.
Next Lesson
30. Visualising the plate bending moments