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
35. Building an interpolation utility function
Expanding to a full plate element solver
Please log in or enroll to access resources

Summary

In this lecture, we'll cover the following:

  • Building a utility function to extract finite element results at arbitrary points.
  • Using SciPy’s griddata to interpolate bending moments and shear forces.
  • Unpacking and preparing grid data for interpolation.
  • Computing Wood and Armer design moments from bending and twisting components.
  • Verifying and using the function within a completed slab finite element solver.

In this lecture, we focus on creating a practical utility function that allows us to query finite element results at any point within a slab. We take previously computed grid-based results and reorganise them into a format suitable for interpolation, using SciPy’s griddata function. This enables us to obtain bending moments (Mx,My,Mxy)(Mx, My, Mxy), transverse shear forces (Qx,Qy)(Qx, Qy), and derived Wood and Armer design moments at arbitrary coordinates, not just at predefined grid points.

We also reinforce how design moments are calculated, particularly the role of torsional moments in increasing demand, and implement this directly in code. The lecture emphasises structuring data (through unravelling grid arrays and stacking coordinates) to make interpolation possible, and demonstrates how a compact utility function can streamline post-processing. We conclude by noting that, while a full finite element solver for a rectangular slab has now been implemented, the next critical step is validation against external tools such as OpenSeesPy.

Next up

With the first iteration of our custom solver now complete, the next section focuses on benchmarking our results against established libraries — OpenSeesPy and PyNite.

Tags

griddata interpolationWood and Armer momentsslab finite element solverpost-processing utilitiesSciPy interpolation

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
36. Section overview - Benchmarking against OpenSeesPy and Pynite