It isn't about whether your material is elastic. It's about whether the stiffness matrix stays the same number from the first load increment to the last.
A common assumption is: "my part is steel, staying well under yield, so my FEA is linear." Material behavior is only one of three things that can break the linear assumption. A thin steel bracket deflecting several times its own thickness, two elastic parts that start apart and come into contact under load, a bolt with pretension — none of these involve yielding, and all three require a nonlinear solve. The real dividing line is narrower and more mechanical than "is the material elastic": does the stiffness relating load to displacement, [K], stay constant throughout the load, or does it change as the structure deforms?
Material nonlinearity — the stress-strain slope itself changes (plasticity past yield, hyperelastic rubber, creep). Geometric nonlinearity — the structure's shape changes enough during loading that its own stiffness changes, even with a perfectly linear-elastic material: large deflections, large rotations, stress-stiffening in a loaded cable, or buckling and snap-through. Boundary/contact nonlinearity — the constraints themselves change during loading, such as two bodies coming into or out of contact, or a gap closing. Any single one of these three is sufficient, on its own, to make [K] a function of the current displacement u instead of a fixed matrix — which is precisely why the solver can no longer just invert one matrix and stop. It has to apply the load in increments and, at each increment, iterate (typically with Newton-Raphson) until the internal forces the deformed structure is generating balance the applied load within a residual tolerance.
Staying below yield only rules out materialnonlinearity — it says nothing about geometric or contact nonlinearity. A thin cantilevered bracket deflecting a large fraction of its span, a snap-fit clip flexing past its latch point, a gasket compressing between two plates that only touch once load is applied, or a pretensioned bolted joint where clamped parts separate under an overload — every one of these can be fully elastic and still require a nonlinear solve, because the geometry or the contact status is changing enough to invalidate the small-deflection, constant-boundary assumptions baked into a linear solve. Running these cases as linear-static doesn't just introduce a small error; it can silently produce a stiffness, stress, or deflection result that is qualitatively wrong — for example, a linear solve on a buckling-prone thin panel will happily report a stress value at a load well past the panel's actual buckling capacity, because a linear solve has no mechanism to detect the loss of stiffness that buckling causes.
Explains the real distinguishing feature between linear and nonlinear finite element analysis — not whether the material is elastic, but whether the stiffness matrix [K] stays constant throughout the load — covering all three sources of nonlinearity (material, geometric, and contact/boundary) with a side-by-side comparison of a one-shot linear solve and an incremental Newton-Raphson nonlinear solve.
Engineers often reach for "is the material still elastic?" as a proxy for "is this analysis linear?" because material nonlinearity (plasticity) is the most commonly taught source of nonlinear behavior. But it is only one of three independent triggers. Geometric nonlinearity — large deflections, large rotations, or stress-stiffening — can occur in a perfectly elastic part. Contact nonlinearity — surfaces coming into or out of contact, gaps opening and closing — can occur with a rigid, perfectly linear material on both sides. A solver has no way to know in advance which of the three apply; that judgment call belongs to the analyst, and getting it wrong in either direction (running a nonlinear case as linear, or needlessly running a genuinely linear case as nonlinear) produces either an unsafe result or wasted compute time.
Linear FEA assembles one global stiffness matrix [K] from the undeformed geometry and constant material moduli, applies the full load in a single step, and solves the linear system [K]{x} = {F} once — typically via a direct sparse solver. Because [K] never changes, superposition holds: scaling the load scales the result proportionally, and separately solved load cases can be linearly combined.
Nonlinear FEA cannot assume [K] stays valid as the structure deforms, so it breaks the total load into increments (load steps or time steps) and, within each increment, uses an iterative method — almost always Newton-Raphson or a modified/quasi-Newton variant — to find the displacement that brings the internal resisting forces of the deformed structure back into equilibrium with the applied load, within a convergence tolerance. Each iteration typically rebuilds (or approximates an update to) the tangent stiffness matrix, which is why nonlinear solves cost meaningfully more compute time than an equivalent linear solve — often an order of magnitude or more.
Structural teams routinely run linear static analysis for stiffness screening and quick design iteration, then escalate specific load cases to nonlinear analysis once contact, large deflection, or post-yield behavior becomes relevant — a bolted flange joint, a snap-fit enclosure, a drop-test simulation, or any capacity check that needs to capture buckling or ultimate strength rather than just first-yield. Choosing linear when the physics is nonlinear typically under-predicts deflection near contact points and can completely miss buckling; choosing nonlinear when linear would suffice mainly costs analyst time and compute budget rather than accuracy.
Not in the solver's eyes — a given analysis either uses a linear solver (one matrix, one solve) or a nonlinear solver (incremental, iterative). What is graded is how much the nonlinear behavior actually matters: a slightly-too-large deflection assumption in an otherwise stiff, small-deflection problem might introduce only a negligible error if run as linear, while the same assumption on a thin, flexible part could be badly wrong. The rule of thumb many analysts use is checking deflection against a fraction of the part's smallest relevant dimension (often cited around 1/20 to 1/10 of thickness or span) as a first-pass linearity screen.
Only when the underlying physics is actually nonlinear. If a structure genuinely stays in small deflections, stays below yield, and has no contact status changes, a linear solve gives the mathematically exact same answer a nonlinear solve would converge to — just far faster, because there is nothing for the extra iterations to correct.
Buckling analysis (linear eigenvalue buckling) predicts the load at which a structure would theoretically lose stability and the associated mode shape, using a linearized approximation — it does not capture post-buckling behavior. A full geometrically nonlinear (large-deflection) analysis, sometimes combined with an artificial imperfection, can trace the actual load-deflection path through and past that instability, including snap-through and post-buckling load redistribution, which linear eigenvalue buckling cannot show.
Non-convergence usually means Newton-Raphson iterations at some load increment can't drive the residual force below tolerance — common causes include too large a load increment for a highly nonlinear response (rapid contact status changes, near-buckling stiffness loss), poorly conditioned contact definitions (initial penetration, mismatched friction settings), or a genuinely unstable equilibrium path (structural collapse) that the solver is correctly failing to find a stable solution for.
No — plasticity (permanent, path-dependent deformation past yield) is one specific type of material nonlinearity, but not the only one. Hyperelastic materials (rubber, elastomers), viscoelastic materials (creep, stress relaxation), and materials with a nonlinear-but-still-fully-elastic stress-strain curve are all materially nonlinear without ever undergoing plastic (permanent) deformation.
Try our Engineering Software Studio
More calculators, simulators, and guides for this discipline.