2. The Forward Finite Element Method
Strong vs weak form, virtual work, minimum potential energy, shape functions, isoparametric mapping, Gauss quadrature, B-matrix, assembly, KU=F, convergence, shear locking, Euler-Bernoulli vs Timoshenko, Kirchhoff vs Reissner-Mindlin, section strains
Every inverse method in this guide is built on top of a forward solver's machinery. In the observation-model framing that organizes the whole course — $y = \mathcal{H}(u, p, f, X_0) + b + \eta$ — this module builds the operator that evaluates the physics: given geometry, material, supports, and loads, produce the displacement field and, from it, anything a sensor could read. Module 3 formalizes what happens when you try to run this map backwards; Module 4 shows how iFEM reuses almost every piece of it, verbatim, with the knowns and unknowns swapped.
1. From Strong Form to Weak Form
Start with the simplest structure that has all the ingredients: a 1D elastic bar of length $L$, stiffness $EA$, fixed at $x=0$, with distributed axial load $f(x)$ and an end force $P$ at $x=L$. The strong form states equilibrium pointwise:
The displacement condition $u(0)=0$ is an essential boundary condition; the force condition $EA\,u'(L)=P$ is a natural one — the names will earn themselves in a moment. The strong form demands that $u$ be twice differentiable and that equilibrium hold at every point. That is a heavy demand, and the standard $C^0$ Lagrange piecewise polynomials — the cheapest functions we can compute with — cannot meet it. (Piecewise polynomials of higher interelement continuity do exist; Section 3 builds $C^1$ Hermite cubics and Section 9 names the $C^1$ triangles. They cost more, which is exactly why the weak form is worth deriving.)
The Four-Step Derivation
- Multiply the residual $(EA\,u')' + f$ by an arbitrary test function $w$ with $w(0)=0$ (zero wherever displacement is prescribed).
- Integrate the product over the domain: $\int_0^L \left[(EA\,u')' + f\right] w \, dx = 0$.
- Integrate by parts once, transferring one derivative from $u$ onto $w$: $\int_0^L (EA\,u')' w \, dx = \left[EA\,u'\,w\right]_0^L - \int_0^L EA\,u'w' \, dx$.
- Apply the boundary data. At $x=0$, $w=0$ kills the boundary term. At $x=L$, $EA\,u'(L) = P$, so the term becomes $P\,w(L)$. The traction condition has entered the equation naturally, through the boundary integral. The displacement condition never appears in the equation at all — it must be built into the space of admissible $u$, essentially.
The same construction generalizes directly to 3D linear elasticity. The strong form is
and the weak form is the virtual-work integral: find $\mathbf{u}$ satisfying $\mathbf{u}=\bar{\mathbf{u}}$ on $\Gamma_D$ such that for all admissible $\mathbf{w}$ (zero on $\Gamma_D$),
The Three Payoffs
- The continuity demand drops. From $C^1$/$C^2$ down to piecewise $C^0$: $u, w \in H^1$ — first derivatives square-integrable is enough. This is exactly what makes piecewise-polynomial approximation legal (Section 3).
- Neumann data is absorbed automatically. Tractions enter through the boundary integral; there is no flux matching to enforce at element interfaces.
- Symmetry and coercivity. For elasticity the bilinear form $a(\mathbf{u},\mathbf{w}) = \int \boldsymbol{\varepsilon}(\mathbf{w})^{\mathsf T}\mathbf{D}\boldsymbol{\varepsilon}(\mathbf{u})\,d\Omega$ is symmetric and coercive — this is what will make $\mathbf{K}$ symmetric positive definite after constraints (Section 6).
Any strong solution satisfies the weak form — the derivation above is just multiplication and integration. The converse needs one extra hypothesis: if a weak solution happens to be $C^2$, reverse the integration by parts to get $-\int_0^L \left[(EA\,u')' + f\right] w\, dx + \left[EA\,u'(L) - P\right] w(L) = 0$ for all admissible $w$ (mind the relative sign — the domain and boundary terms come out with opposite signs). By the fundamental lemma of the calculus of variations, an integrand that integrates to zero against every test function must vanish pointwise — so the PDE and the natural boundary condition are both recovered. The weak form loses nothing; it only relaxes where the derivatives are allowed to live. This is Hughes ch. 1 and Zienkiewicz–Taylor–Zhu ch. 3 material.
2. Virtual Work and Minimum Potential Energy
The weak form has two classical variational faces. They produce the same equations for linear elasticity, but they are not the same statement — and the difference matters for everything nonlinear that comes later.
Aside: Minimum Potential Energy
When a strain energy density exists — linear elasticity gives $U = \tfrac{1}{2}\boldsymbol{\varepsilon}^{\mathsf T}\mathbf{D}\boldsymbol{\varepsilon}$ — and the loading is conservative (a load potential exists), define the total potential energy:
The first variation $\delta\Pi = 0$ recovers exactly the weak form. For linear elasticity with positive-definite $\mathbf{D}$ and enough essential constraints to remove the rigid-body modes, the second variation is positive definite (coercivity), so the stationary point is the unique minimizer over kinematically admissible fields. Both qualifiers earn their keep: without sufficient essential BCs the form is only semicoercive (Section 6 — $\mathbf{K}$ is singular until you constrain it), and for a general hyperelastic energy, which need not be convex, $\delta\Pi = 0$ delivers stationarity alone — buckling and limit points are precisely the case of several stationary points, and stability has to be established separately. The Ritz method minimizes $\Pi$ over a finite-dimensional span of trial functions. FEM is Ritz with locally supported piecewise polynomials — and local support is precisely what makes the resulting equations sparse. Treat MPE as the special case it is: it presupposes conservative loading and a hyperelastic material, while PVW does not.
Galerkin Orthogonality and the Best-Approximation Property
Because $a(\cdot,\cdot)$ is symmetric and the discrete space $\mathcal{V}_h$ is a subspace of the admissible space, subtracting the discrete weak form from the continuous one gives
The error is orthogonal to the whole discrete space in the energy inner product: $\mathbf{u}_h$ is the projection of the exact solution onto $\mathcal{V}_h$, hence the best approximation in the energy norm that the mesh can express.
3. Discretization: Shape Functions
Partition $\Omega$ into elements and approximate the displacement field by nodal interpolation:
Four properties make a set of shape functions usable:
| Property | Statement | What it buys |
|---|---|---|
| Kronecker delta | $N_a(\mathbf{x}_b) = \delta_{ab}$ | $\mathbf{d}_a$ are physical nodal displacements — BCs and sensors attach to real quantities |
| Partition of unity | $\sum_a N_a = 1$ | rigid translation represented exactly |
| Completeness | exact to polynomial degree $p$ | linear completeness ⇒ constant strain representable — the ingredient the patch test checks (Section 7) |
| Compact support | $N_a \ne 0$ only on elements touching node $a$ | sparse $\mathbf{K}$ |
The two workhorses of this course: the 1D two-node bar on $\xi \in [-1,1]$,
and the 4-node bilinear quadrilateral,
How Much Continuity Do You Need?
For a $2m$-th order problem the weak form contains $m$-th derivatives, so trial functions need $C^{m-1}$ interelement continuity and $H^m$ integrability. Second-order elasticity: $m=1$, so $C^0$ suffices — hat functions are legal. Fourth-order Euler-Bernoulli beams and Kirchhoff plates: $m=2$, so $C^1$ is required. In 1D that is achievable with the two-node Hermite cubic element (4 DOFs: $w_1, \theta_1, w_2, \theta_2$; shape functions $H_1 = 1 - 3s^2 + 2s^3$ and companions). In 2D, conforming $C^1$ triangles need high-order polynomials — a historical pain point that motivated the $C^0$ shear-deformable formulations of Sections 8–9, which are exactly the formulations iFEM later builds on.
4. Isoparametric Mapping and Gauss Quadrature
Real meshes are not unions of squares. The isoparametric idea — use the same shape functions for the geometry as for the displacement — is what lets arbitrarily shaped (and curved) elements exist at all (Zienkiewicz–Taylor–Zhu ch. 6; the idea entered the literature with Irons and the Swansea school in the 1960s):
The Jacobian $\mathbf{J}$ ($2\times 2$ in 2D) converts parent-domain derivatives into physical derivatives, and the volume element transforms as $d\Omega = \det\mathbf{J}\, d\xi\, d\eta$. Note the trap this kills: shape-function derivatives $\nabla_\xi N_a$ live in the parent domain — strains need physical derivatives, and only $\mathbf{J}^{-\mathsf T}$ gets you there.
Gauss-Legendre Quadrature
The element integrals are evaluated numerically. $n$ Gauss-Legendre points integrate 1D polynomials exactly through degree $2n-1$:
| $n$ | Points $\xi_i$ | Weights $w_i$ | Exact through degree |
|---|---|---|---|
| 1 | $0$ | $2$ | 1 |
| 2 | $\pm 1/\sqrt{3}$ | $1,\; 1$ | 3 |
| 3 | $0,\; \pm\sqrt{3/5}$ | $8/9,\; 5/9$ | 5 |
Quads and hexes use tensor products of the 1D rule:
"Full integration" for the bilinear quad means the $2\times 2$ rule. The same quadrature loop also builds consistent load vectors and mass matrices — one loop, three products.
Reduced integration (one order lower) is cheaper and softens the element — genuinely helpful against locking (Section 10) — but it risks rank deficiency: the element stiffness can be written as a sum of rank-limited contributions, so $\operatorname{rank}(\mathbf{k}^e) \le n_{gp} \times (\text{rows of } \mathbf{B})$. A 1-point plane quad has rank $\le 3$ against the $8 - 3 = 5$ independent deformation modes it must resist — leaving 2 spurious zero-energy (hourglass) modes. You will count them yourself in the lab below.
5. The B-Matrix and Element Stiffness
For plane problems, strains are collected in Voigt notation: $\boldsymbol{\varepsilon} = [\varepsilon_{xx},\, \varepsilon_{yy},\, \gamma_{xy}]^{\mathsf T}$ with engineering shear $\gamma_{xy} = 2\varepsilon_{12}$ — a classic sign-up-for-confusion point carried over from Module 1: mix the tensor and engineering conventions once and every shear term downstream is off by a factor of 2.
The strain-displacement matrix $\mathbf{B}$ maps nodal DOFs to strains, assembled from one $3\times 2$ block per node:
The constitutive matrix for isotropic plane stress:
Plane strain swaps the factors: $E/(1-\nu^2) \to E/((1+\nu)(1-2\nu))$, the diagonal $1 \to 1-\nu$, $\nu$ stays, and the shear entry becomes $(1-2\nu)/2$. (Different reduced matrices — never interchange them silently.)
The Element Stiffness Loop
with $t$ the thickness. In code, this is a loop over Gauss points; at each point:
- Evaluate $\nabla_\xi N_a$, build $\mathbf{J}$, invert it.
- Form physical derivatives $\nabla_x N_a = \mathbf{J}^{-\mathsf T} \nabla_\xi N_a$ and stack them into $\mathbf{B}$.
- Accumulate $\mathbf{B}^{\mathsf T}\mathbf{D}\mathbf{B}\, t \det\mathbf{J}\, w_i w_j$.
Consistent load vectors come from the same loop — and carry the same thickness: $\mathbf{f}^e = \int \mathbf{N}^{\mathsf T}\mathbf{b}\; t\; d\Omega + \int \mathbf{N}^{\mathsf T}\bar{\mathbf{t}}\; t\; d\Gamma$, with $\mathbf{b}$ a force per unit volume and $\bar{\mathbf{t}}$ a force per unit area (the traction $\bar{\mathbf{t}}$ is unrelated to the thickness $t$, despite the letter clash). Keep $t$ in $\mathbf{k}^e$ but drop it here and $\mathbf{K}\mathbf{U}=\mathbf{F}$ is off by a factor of $t$ for any plate that is not unit-thick. Distributed loads become nodal forces through the shape functions, not by ad-hoc lumping.
Everything downstream — including the iFEM machinery of later modules — is built from exactly these $\mathbf{B}$-type operators. iFEM replaces the $\mathbf{D}$-weighted energy with least-squares strain matching, but it differentiates the same shape functions.
6. Assembly, Boundary Conditions, and Solving KU = F
Assembly is scatter-add. A connectivity (LM/location) array maps element-local DOF indices to global ones; each entry of $\mathbf{k}^e$ is added into $\mathbf{K}$ at the mapped row and column. Conceptually,
with Boolean gather matrices $\mathbf{L}_e$ — but this is implemented as loops, never as matrix products. $\mathbf{K}$ is sparse: nonzeros only couple DOFs that share an element. Bandwidth depends on node numbering; storage is CSR or skyline.
Three Ways to Impose Essential BCs
| Method | Mechanism | Trade-off |
|---|---|---|
| Elimination / partitioning | split DOFs into free ($f$) and constrained ($c$); solve $\mathbf{K}_{ff}\mathbf{U}_f = \mathbf{F}_f - \mathbf{K}_{fc}\bar{\mathbf{U}}_c$ | exact, keeps SPD; needs index bookkeeping |
| Penalty | add large $\beta$ on the diagonal, $\beta\bar{u}$ to the RHS | trivially simple; $\beta$ trades constraint error (too small) against conditioning damage (too large) |
| Lagrange multipliers | append constraint equations with multiplier unknowns | exact, gives reactions directly; produces an indefinite saddle-point system |
Solving — and Why You Never Form K⁻¹
Sparse Cholesky (direct) is the default below roughly $10^6$ DOFs; preconditioned conjugate gradients (with algebraic multigrid or incomplete-Cholesky preconditioning) beyond that. For second-order elasticity the condition number grows like $\operatorname{cond}(\mathbf{K}) = O(h^{-2})$ under uniform refinement — the general law for a $2m$-th order problem is $O(h^{-2m})$, so the fourth-order beam and plate discretizations of Sections 8–9 grow like $O(h^{-4})$ — and unpreconditioned CG iteration counts grow with it as the mesh refines. The entire weak-form→$\mathbf{KU=F}$ pipeline of this module is directly executable in a few dozen lines of Python in a modern open-source stack such as DOLFINx (Baratta et al. 2023).
Post-Processing and Sanity Checks
Reactions follow from the constrained rows: $\mathbf{R} = \mathbf{K}_{cf}\mathbf{U}_f + \mathbf{K}_{cc}\bar{\mathbf{U}}_c - \mathbf{F}_c$. Stresses are evaluated at the integration points — where $\mathbf{B}$ and $\mathbf{D}$ are already formed — then extrapolated and averaged to nodes for plotting. Accuracy is a separate question: the superconvergent sampling sites are the Gauss points of the reduced rule (the Barlow points of Section 7), which for the bilinear quad this module uses throughout is the element centroid, not the $2\times 2$ points. Two checks worth automating in every solver you ever write: the sum of reactions balances the applied loads, and the energy identity $\tfrac{1}{2}\mathbf{U}^{\mathsf T}\mathbf{K}\mathbf{U} = \tfrac{1}{2}\mathbf{U}^{\mathsf T}\mathbf{F}$ holds. Mind the scope of that second one: it assumes homogeneous essential conditions and configuration-independent loads. With prescribed nonzero displacements the reactions do work, and the identity becomes $\tfrac{1}{2}\mathbf{U}^{\mathsf T}\mathbf{K}\mathbf{U} = \tfrac{1}{2}\mathbf{U}^{\mathsf T}\mathbf{F} + \tfrac{1}{2}\bar{\mathbf{U}}_c^{\mathsf T}\mathbf{R}_c$ — half the reaction work, not all of it: $\mathbf{K}\mathbf{U} = \mathbf{F} + \mathbf{R}$ with $\mathbf{R}$ supported on the constrained DOFs, and the $\tfrac12$ carries through to both sides.
From Solution to Outputs: the Response Operator
The forward solve defines a map from data to displacement, $(\,p, f\,) \mapsto \mathbf{U}$. But no experiment measures $\mathbf{U}$ everywhere. What an instrument reads is an output: a strain gauge reads rows of $\mathbf{B}$ evaluated at its location, a displacement probe reads a few entries of $\mathbf{U}$, a load cell reads reactions. Predicted measurements are an output operator applied to the solution, $\mathbf{y}_{\text{pred}} = \mathbf{Q}\,\mathbf{U} + \mathbf{q}_0$, where the constant offset $\mathbf{q}_0$ vanishes for strain and displacement outputs and is in general nonzero for reaction-type outputs: from the reaction formula above $\mathbf{q}_0 = -\mathbf{F}_c$, which makes a load cell an affine, not linear, function of $\mathbf{U}$ — and which collapses to zero in the common case where no applied load acts on a constrained DOF (as in the lab below, whose loads sit only on free DOFs). This is the bridge to everything that follows: the observation model $y = \mathcal{H}(u, p, f, X_0) + b + \eta$ wraps exactly this forward-solve-plus-output-operator, and Module 3 asks what happens when $y$ is known and one of the arguments is not.
Drag the blue nodes to distort elements: the picture and the rank/stability panel track the drag live, and $\mathbf{J}$, $\det\mathbf{J}$ and $\mathbf{B}$ are recomputed in the readout below when you release. Switch quadrature, clamp or release the left edge, and read the persistent panel: rank, zero-energy modes, conditioning, and a validation check are recomputed live. The presets walk through the failure modes.
7. Convergence and the Patch Test
When does refining the mesh actually converge to the exact solution? For conforming displacement elements the classical conditions are completeness — the element represents all rigid-body modes and all constant-strain states exactly — plus compatibility — $C^{m-1}$ interelement continuity for a $2m$-th order problem.
A Priori Rates
For smooth solutions and complete degree-$p$ elements on a $2m$-th order problem:
The second estimate is the duality (Aubin–Nitsche) bound, and its exponent is written out because the two conditions behind the familiar version are routinely dropped. Duality needs a fully regular dual problem — a smooth or convex domain — and it buys $\min\{m,\, p+1-m\}$ extra orders over the energy rate, not $m$. Only when the element clears $p \ge 2m-1$ does that exponent collapse to the $O(h^{p+1})$ everyone quotes.
The table specializes all of this to second-order elasticity, $m = 1$ — the setting of Sections 1–6 and of every element in the lab above, where $p \ge 1$ clears the bar automatically.
| Quantity ($m = 1$) | Rate | Why |
|---|---|---|
| Energy-norm error | $O(h^p)$ | best-approximation + interpolation estimate |
| Displacement $L^2$ error | $O(h^{p+1})$ | one extra order via duality, given a regular dual problem |
| Strains / stresses | $O(h^p)$ | differentiation loses one order |
Carry those numbers into the $C^1$ theories of Sections 8–9 and each rate is wrong by one order in $h$, not two: Euler-Bernoulli beams and Kirchhoff plates are fourth-order ($m = 2$), so $O(h^{p+1-m})$ takes the energy norm from $O(h^p)$ down to $O(h^{p-1})$ — $O(h^2)$ for the Hermite cubics of Section 3 — and the stress-like quantity, now the curvature, follows it to $O(h^{p-1})$. The $L^2$ displacement rate is the one row that can come through the change of $m$ untouched — but it is a conditional survival, not a free one: it needs $p \ge 2m-1$ on top of the regular dual problem. Hermite cubics ($p=3$, $m=2$) clear that bar exactly, so their $L^2$ rate is still $O(h^{p+1}) = O(h^4)$; an element that falls short of it gets only $2(p+1-m)$, below $p+1$. Keep the two counts apart: changing $m$ costs one order per row, whereas within the beam theory the curvature — a second derivative — trails the displacement rate by two orders, against the single order that separates strain from displacement in elasticity.
Singular problems break the rates. At a reentrant corner (the L-shaped domain is the canonical case) the solution behaves like $r^\lambda$ with $\lambda < 1$, and the energy-norm rate degrades to $O(h^{\min(p,\lambda)})$ under uniform refinement regardless of $p$ (the $L^2$ rate degrades too, by a different exponent — always name the norm before quoting a degraded rate). This is the motivation for adaptive $h$-refinement and graded meshes: polynomial degree cannot buy back what a singularity takes away.
The Patch Test
Irons's legacy, with the standard exposition in Zienkiewicz–Taylor–Zhu ch. 8: assemble a small arbitrary patch of distorted elements, prescribe boundary displacements from an arbitrary linear field, solve. The interior must reproduce the linear field and its constant strain to machine precision.
8. Beam Kinematics: Euler-Bernoulli vs Timoshenko
The next three sections deal with structures that are thin in one or two directions — beams and plates. iFEM is built on the shear-deformable members of this family, so the kinematic assumptions deserve care. (Full element derivations — forward and inverse — live in Module 5; here we need the kinematics and the section strains they produce.)
Euler-Bernoulli: the Rotation Is Enslaved
Euler-Bernoulli (EB) assumes plane cross-sections remain plane and perpendicular to the deformed axis. The rotation is then enslaved to the deflection, $\theta = dw/dx$, and the axial displacement field is $u(x,z) = u_0(x) - z\, dw/dx$. Section strains: membrane $e = u_0'$ and curvature $\kappa = d^2w/dx^2$; the transverse shear strain is identically zero.
Fourth order ⇒ $C^1$ elements — the Hermite cubics of Section 3, which have the pleasant property that nodal values are exact for point-loaded prismatic EB beams. (Watch the sign convention: $\kappa = +w''$ here; parts of the beam and plate literatures use $-w''$, and Section 11 shows how an inconsistent sign silently flips iFEM's strain recovery.)
Timoshenko: the Rotation Is Freed
Timoshenko keeps cross-sections plane but not necessarily normal: $\theta(x)$ becomes an independent field, and the gap between the slope and the rotation is the shear strain. Section strains: $e = u_0'$, $\kappa = d\theta/dx$, $\gamma = dw/dx - \theta$. The section constitutive law:
When Does the Difference Matter?
For a tip-loaded cantilever, $w(L) = \dfrac{PL^3}{3EI} + \dfrac{PL}{kGA}$, so the ratio of the shear contribution to the bending contribution is
which for a rectangular section equals $(E/4kG)\,(t/L)^2$ — about 0.8% at $t/L = 1/10$ and 3% at $t/L = 1/5$ in metals ($E/G \approx 2.6$, $k = 5/6$), growing quadratically for stubby beams and for shear-compliant materials. (Do not confuse this ratio with the shear share of the total tip deflection, $3EI/(kGA\,L^2 + 3EI)$, which is what the shear-locking lab below reports: 0.77% and 3.0% at the same two aspect ratios. The two agree to within rounding here and diverge for stubbier beams.) Be precise about that last clause, because the obvious reading of it is wrong. The ratio is fixed by $E/kG$ and $(t/L)^2$, not by absolute stiffness: scale $E$ and $G$ down together — a softer structure — and it does not move at all, and for an isotropic material $E/G = 2(1+\nu)$ cannot exceed $3$ whatever the modulus ($2.6$ for the metals just quoted, at $\nu = 0.3$). What makes shear compliance matter is stubbiness, quadratically, and a $G$ that is low relative to the bending modulus — laminates and sandwich sections with compliant cores, where no Poisson's ratio bounds the ratio.
FE implications: Timoshenko needs only $C^0$ interpolation — but naively interpolated low-order elements shear-lock (Section 10); the anisoparametric Tessler–Dong family is the clean fix. And a counting exercise that pays off in Module 4: EB has 2 section strains $(e, \kappa)$; planar Timoshenko has 3 $(e, \kappa, \gamma)$; a full 3D Timoshenko frame member has 6 — stretching, torsion, two bendings, two transverse shears — exactly the set the beam iFEM of Gherlone et al. (2012) reconstructs.
9. Plate Kinematics: Kirchhoff vs Reissner-Mindlin
The plate story parallels the beam story one dimension up — with the same fork in the road and higher stakes, because $C^1$ continuity in 2D is genuinely hard.
Kirchhoff: Thin-Plate Theory
Material normals remain straight, unstretched, and normal to the deformed midsurface. The only unknown is $w(x,y)$; curvatures are second derivatives of $w$; the governing equation is biharmonic:
Fourth order ⇒ $C^1$ continuity of $w$ across element edges — notoriously hard for triangles: conforming $C^1$ triangles require quintic polynomials in the classical single-polynomial (Argyris) construction — piecewise-cubic macroelements such as Hsieh–Clough–Tocher achieve it at lower degree. That difficulty historically drove nonconforming and discrete-Kirchhoff elements, and ultimately the $C^0$ alternative below.
Reissner-Mindlin: First-Order Shear Deformation Theory
Normals remain straight but not necessarily normal. The kinematics are $\mathbf{u} = (u_0 + z\theta_x,\; v_0 + z\theta_y,\; w)$ with independent rotations $\theta_x, \theta_y$ — a second-order system, so $C^0$ suffices.
The deformation state is captured by eight section strain measures: 3 membrane, 3 bending, 2 transverse shear:
In the thin limit the physics enforces the Kirchhoff constraint $\boldsymbol{\gamma} \to \mathbf{0}$, and low-order $C^0$ elements shear-lock (Section 10).
Well-behaved $C^0$ Mindlin elements exist: MITC4, the discrete shear gap family, and the anisoparametric 3-node MIN3 of Tessler & Hughes (1985) — quadratic $w$ constrained by continuous edge shear conditions, linear rotations. The anisoparametric treatment traces back to Tessler & Hughes (1983) on the four-node Mindlin quadrilateral. MIN3 is worth remembering by name: it is precisely the element that reappears as iMIN3 in the iFEM modules.
10. Shear Locking: Mechanism and Cures
Now that the shear-deformable kinematics exist, we can explain the pathology that haunts them. Take the simplest possible shear-deformable element: the 2-node Timoshenko beam element with linear $w$ and linear $\theta$ (DOFs $w_1, \theta_1, w_2, \theta_2$). Its element strains:
$\gamma$ is linear because $\theta$ is linear while $w'$ is constant. Now demand pure bending: $\kappa = \text{const}$ with $\gamma = 0$ everywhere. But $\gamma \equiv 0$ with linear $\theta$ forces $w$ to be quadratic — unavailable in the linear space. The element cannot bend without storing parasitic shear energy, and being the energy-optimal answer (Section 2), it splits the difference: it bends less and pays shear.
The Scaling That Kills
Work the energies for a bending state with rotation amplitude $\bar\theta$: the parasitic linear-in-$x$ shear contributes $\propto kGA\,L_e\,\bar\theta^2/12$ against bending energy $\propto EI\,\bar\theta^2/L_e$, giving the ratio
The spurious constraint stiffens without bound as the structure thins: at fixed mesh, $w_{FE}/w_{\text{exact}} \to 0$ like $(t/L)^2$. With $k = 5/6$ and $G = E/2.6$, the ratio $kGA L_e^2/(12EI) = (kG/E)(L_e/t)^2$ is already $\approx 32$ at $L_e/t = 10$ and $\approx 3200$ at $L_e/t = 100$.
The Cures, Each With Its Mechanism
- Reduced integration of the shear term. 1-point quadrature samples $\gamma$ only at the midpoint — exactly where the linear parasitic part vanishes. Equivalent to an assumed-constant-shear element. Selective reduced integration generalizes this: full on bending, reduced on shear. Caveat, and it is not optional: uniform reduced integration can introduce spurious zero-energy (hourglass) modes — recall $\operatorname{rank}(\mathbf{k}^e) \le n_{gp}\times(\text{strain rows})$ from Section 4. Preset 3 of the lab shows them; the strip preset shows an entire mesh going singular.
- Assumed natural strain / MITC: re-interpolate $\gamma$ from tying points chosen so the parasitic part cannot be represented (Bathe's MITC family).
- Discrete shear gap: construct the shear field from nodal gap values rather than from $w' - \theta$ directly.
- Interdependent (anisoparametric) interpolation — Tessler & Dong's hierarchy: take $w$ one degree higher than $\theta$ (quadratic $w$, linear $\theta$), then condense the internal DOF via an element-level constant-shear constraint. The result is a locking-free 2-node element with no spurious modes. This idea becomes MIN3 for plates (Tessler & Hughes 1985, after the 1983 quadrilateral treatment) and later iMIN3 in iFEM.
- Mixed formulations (Hellinger–Reissner, Hu–Washizu): promote the offending stress or strain to a genuinely independent field with its own variation, so the displacement interpolation no longer has to produce it.
- $\bar{B}$ / selective projection: stay in the displacement formulation, but replace the offending strain component by its projection onto a lower-order space before it ever reaches the energy. (Reduced integration of the shear term is the quadrature-level version of the same idea.)
- Enhanced assumed strain (EAS): keep the displacement field and add element-internal enhanced strain modes that supply the missing deformation, then statically condense them out at element level.
Shear locking has two siblings: volumetric locking (incompressibility, $\nu \to \tfrac12$) and membrane locking (curved shells). Bombarde et al. (2024) give the modern comparative map of all three pathologies and their remedies, and Le & Bui (2023) show that locking-free FSDT plate implementation is still an active research topic — a half-century after the problem was identified, the element technology this module teaches (and that iFEM inherits) continues to be refined rather than replaced.
A tip-loaded cantilever meshed with 2-node Timoshenko elements. Sweep the slenderness $L/t$, refine the mesh, and switch the shear quadrature. Full integration collapses like $(t/L)^2$; 1-point (reduced) shear stays honest. Overlay Euler-Bernoulli to see what it misses on stubby beams.
11. Section Strains: The Bridge to iFEM
This module chose Timoshenko and Reissner-Mindlin deliberately: iFEM is built on them. The FSDT plate/shell displacement field is fully parametrized by $(u_0, v_0, w, \theta_x, \theta_y)$, and its deformation state is captured by the 8 section strain measures of Section 9 — membrane $\mathbf{e}(\mathbf{u})$ (3), bending curvatures $\boldsymbol{\kappa}(\mathbf{u})$ (3), transverse shears $\boldsymbol{\gamma}(\mathbf{u})$ (2). These are the strain measures of Tessler & Spangler's (2005) least-squares variational principle — the same eight, up to the rotation relabelling declared in Section 9 — which reconstructs displacements by matching these analytic measures to experimentally measured ones.
The Measurement Link
With strain rosettes on the top and bottom surfaces $z = \pm t/2$, the in-plane surface strains under the through-thickness distribution $\boldsymbol{\varepsilon}(z) = \mathbf{e} + z\boldsymbol{\kappa}$ are:
Semi-sum and semi-difference: a back-to-back sensor pair splits into a membrane part and a bending part. That is the bridge this module exists to build — the forward machinery hands the inverse problem a quantity it can actually measure. The general version (all three membrane strains, all three curvatures, rosette transformations, and what happens when you can only instrument one surface) is derived in Module 5, which is its canonical home.
And a structural observation with a big consequence: transverse shear strains cannot be measured on the surfaces — they vanish there in reality, and FSDT models them as constant through the thickness. iFEM handles this by down-weighting the $\boldsymbol{\gamma}$ terms in its least-squares functional. This is a structural reason why FSDT — not 3D elasticity, not Kirchhoff — is the right kinematic frame for shape sensing: it exposes exactly the strain measures that surface sensors can and cannot see. For beams and frames, the analogous set is the 6 Timoshenko section strains used by Gherlone et al. (2012).
Forward and Inverse, Side by Side
Forward FEM computes $\mathbf{d}$ from loads by minimizing $\Pi = \tfrac12\mathbf{d}^{\mathsf T}\mathbf{K}\mathbf{d} - \mathbf{d}^{\mathsf T}\mathbf{F}$, built from $\mathbf{B}$-operators. iFEM computes $\mathbf{d}$ from measured strains by minimizing a least-squares functional over the same interpolation:
The $t^2$ on the curvature term is part of the definition, not decoration: entries of $\mathbf{e}$ and $\boldsymbol{\gamma}$ are dimensionless strains while entries of $\boldsymbol{\kappa}$ have units of 1/length, so without it the three residuals are not commensurable and $w_e, w_\kappa, w_\gamma$ stop being comparable numbers. Module 5 writes the same factor as $(2h)^2$ in the half-thickness lettering of the inverse-element literature (e.g. the iQS4 formulation of Kefal et al. 2016, eq. 8c), where it is likewise mandatory.
| Forward FEM | iFEM (Module 4) | |
|---|---|---|
| Minimizes | $\Pi(\mathbf{d}) = \tfrac12\mathbf{d}^{\mathsf T}\mathbf{K}\mathbf{d} - \mathbf{d}^{\mathsf T}\mathbf{F}$ | $\Phi(\mathbf{d})$: weighted strain mismatch |
| Needs loads? | yes — $\mathbf{F}$ drives everything | no |
| Needs material stiffness? | yes — $\mathbf{D}$ inside $\mathbf{K}$ | no — only relative weights $w_e, w_\kappa, w_\gamma$ |
| Normal equations | sparse SPD $\mathbf{K}\mathbf{U} = \mathbf{F}$ | sparse symmetric PSD by construction ($\mathbf{A}^{\mathsf T}\mathbf{W}\mathbf{A}$) — SPD only once rigid modes are constrained and the sensor set gives the residual operator full column rank |
| Element continuity | $C^0$ (FSDT) | $C^0$ — interfaces naturally with discrete sensors |
Flashcards
References
- Zienkiewicz, O. C.; Taylor, R. L.; Zhu, J. Z. (2013). The Finite Element Method: Its Basis and Fundamentals, 7th Edition. Butterworth-Heinemann (Elsevier).
- Hughes, Thomas J. R. (2000). The Finite Element Method: Linear Static and Dynamic Finite Element Analysis. Dover Publications (reprint of the 1987 Prentice-Hall edition).
- Bathe, Klaus-Jürgen (2014). Finite Element Procedures, Second Edition. K.J. Bathe, Watertown, MA (self-published).
- Timoshenko, S. P. (1921). LXVI. On the correction for shear of the differential equation for transverse vibrations of prismatic bars. The London, Edinburgh, and Dublin Philosophical Magazine and Journal of Science, Series 6, 41(245), 744-746. doi:10.1080/14786442108636264
- Reissner, E. (1945). The Effect of Transverse Shear Deformation on the Bending of Elastic Plates. ASME Journal of Applied Mechanics, 12, A69-A77. doi:10.1115/1.4009435
- Mindlin, R. D. (1951). Influence of Rotatory Inertia and Shear on Flexural Motions of Isotropic, Elastic Plates. ASME Journal of Applied Mechanics, 18, 31-38. doi:10.1115/1.4010217
- Babuška, I.; Suri, M. (1992). On Locking and Robustness in the Finite Element Method. SIAM Journal on Numerical Analysis, 29(5), 1261-1293. doi:10.1137/0729075
- Tessler, A.; Dong, S. B. (1981). On a hierarchy of conforming Timoshenko beam elements. Computers & Structures, 14(3-4), 335-344. doi:10.1016/0045-7949(81)90017-1
- Tessler, Alexander; Hughes, Thomas J. R. (1983). An improved treatment of transverse shear in the Mindlin-type four-node quadrilateral element. Computer Methods in Applied Mechanics and Engineering 39(3) 311-335. doi:10.1016/0045-7825(83)90096-8
- Tessler, A.; Hughes, T. J. R. (1985). A three-node Mindlin plate element with improved transverse shear. Computer Methods in Applied Mechanics and Engineering, 50(1), 71-101. doi:10.1016/0045-7825(85)90114-8
- Tessler, A.; Spangler, J. L. (2003). A Variational Principle for Reconstruction of Elastic Deformations in Shear Deformable Plates and Shells. NASA/TM-2003-212445, NASA Langley Research Center (NTRS ID 20030068121).
- Tessler, Alexander; Spangler, Jan L. (2005). A least-squares variational method for full-field reconstruction of elastic deformations in shear-deformable plates and shells. Computer Methods in Applied Mechanics and Engineering, 194(2-5), 327-339. doi:10.1016/j.cma.2004.03.015
- Kefal, Adnan; Oterkus, Erkan; Tessler, Alexander; Spangler, Jan L. (2016). A quadrilateral inverse-shell element with drilling degrees of freedom for shape sensing and structural health monitoring. Engineering Science and Technology, an International Journal. doi:10.1016/j.jestch.2016.03.006
- Gherlone, M.; Cerracchio, P.; Mattone, M.; Di Sciuva, M.; Tessler, A. (2012). Shape sensing of 3D frame structures using an inverse Finite Element Method. International Journal of Solids and Structures, 49(22), 3100-3112. doi:10.1016/j.ijsolstr.2012.06.009
- Baratta, I. A.; Dean, J. P.; Dokken, J. S.; Habera, M.; Hale, J. S.; Richardson, C. N.; Rognes, M. E.; Scroggs, M. W.; Sime, N.; Wells, G. N. (2023). DOLFINx: The next generation FEniCS problem solving environment. Zenodo (preprint). doi:10.5281/zenodo.10447666
- Bombarde, Dhiraj S.; Silla, Lakshmi Narayan; Gautam, Sachin S.; Nandy, Arup (2024). A Comprehensive Comparative Review of Various Advanced Finite Elements to Alleviate Shear, Membrane and Volumetric Locking. Archives of Computational Methods in Engineering, 31, 1979-2013. doi:10.1007/s11831-023-10050-x
- Le, Khanh Chau; Bui, Hoang Giang (2023). Asymptotically accurate and locking-free finite element implementation of first order shear deformation theory for plates. arXiv preprint arXiv:2310.19443. doi:10.48550/arXiv.2310.19443