Snap-through Analysis

Category: 構造解析 | Integrated 2026-04-06
CAE visualization for snap through theory - technical simulation diagram
スナップスルー解析

Theory and Physics

What is Snap-Through?

🧑‍🎓

Professor, what kind of phenomenon is snap-through?


🎓

Snap-through is a phenomenon where a shallow arch or dome inverts after exceeding the peak load (limit point). The limit point is passed using the Riks method (arc-length method).


$$ \text{Limit point: } \frac{d\lambda}{du} = 0 $$

Summary

🎓
  • Instability at the load limit point — Shallow arches/domes
  • Pass the limit point with the Riks method — Not possible with Newton-Raphson
  • NLGEOM=YES is mandatoryGeometric nonlinearity

  • Coffee Break Yomoyama Talk

    Roof Dome Snap-Through: Two Stable States

    Snap-through is a rapid transition of a "bi-stable system" where a single structure possesses two stable equilibrium states. This phenomenon, where a thin spherical shell inverts from "convex" to "concave" under external pressure, was analyzed for shells by Biezeno and Hencky in 1934. Snap fasteners (clothing snaps) are a familiar example that intentionally uses this phenomenon; the "click" action when pressed is snap-through itself.

    Physical Meaning of Each Term
    • Inertia term (mass term): $\rho \ddot{u}$, meaning "mass × acceleration". Have you ever experienced being thrown forward when slamming on the brakes? That "feeling of being carried forward" is precisely the inertial force. Heavier objects are harder to set in motion and harder to stop once moving. Buildings shake during earthquakes because the ground moves suddenly while the building's mass "gets left behind". In static analysis, this term is set to zero, which assumes "the force is applied slowly enough that acceleration can be ignored". It absolutely cannot be omitted for impact loads or vibration problems.
    • Stiffness term (elastic restoring force): $Ku$ or $\nabla \cdot \sigma$. When you stretch a spring, you feel a "force trying to return it", right? That is Hooke's law $F=kx$, the essence of the stiffness term. Now a question—if you pull an iron rod and a rubber band with the same force, which stretches more? Obviously the rubber band. This "resistance to stretching" is the Young's modulus $E$, which determines stiffness. A common misconception: "High stiffness = strong" is incorrect. Stiffness is "resistance to deformation", strength is "resistance to failure"—they are different concepts.
    • External force term (load term): Body force $f_b$ (gravity, etc.) and surface force $f_s$ (pressure, contact force, etc.). Think of it this way—the weight of a truck on a bridge is a "force acting on the entire volume" (body force), while the force of the tires pushing on the road surface is a "force acting only on the surface" (surface force). Wind pressure, water pressure, bolt tightening force... all are external forces. A common mistake here: getting the load direction wrong. Intending "tension" but it becomes "compression"—it sounds like a joke, but it actually happens when coordinate systems are rotated in 3D space.
    • Damping term: Rayleigh damping $C\dot{u} = (\alpha M + \beta K)\dot{u}$. Try plucking a guitar string. Does the sound continue forever? No, it gradually fades, right? That's because the vibration energy is converted to heat by air resistance and internal friction in the string. Car shock absorbers work on the same principle—they intentionally absorb vibration energy to improve ride comfort. What if damping were zero? Buildings would continue swaying forever after an earthquake. Since that doesn't happen in reality, setting appropriate damping is crucial.
    Assumptions and Applicability Limits
    • Continuum assumption: Treats material as a continuous medium, ignoring microscopic heterogeneity.
    • Small deformation assumption (for linear analysis): Deformation is sufficiently small compared to initial dimensions, and the stress-strain relationship is linear.
    • Isotropic material (unless otherwise specified): Material properties are independent of direction (anisotropic materials require separate tensor definitions).
    • Quasi-static assumption (for static analysis): Ignores inertial and damping forces, considering only the balance between external and internal forces.
    • Non-applicable cases: Large deformation/large rotation problems require geometric nonlinearity. Nonlinear material behaviors like plasticity and creep require constitutive law extensions.
    Dimensional Analysis and Unit Systems
    VariableSI UnitNotes / Conversion Memo
    Displacement $u$m (meter)When inputting in mm, unify load and elastic modulus to MPa/N system.
    Stress $\sigma$Pa (Pascal) = N/m²MPa = 10⁶ Pa. Be careful of unit system inconsistency when comparing with yield stress.
    Strain $\varepsilon$Dimensionless (m/m)Note the distinction between engineering strain and logarithmic strain (for large deformation).
    Elastic modulus $E$PaSteel: ~210 GPa, Aluminum: ~70 GPa. Note temperature dependence.
    Density $\rho$kg/m³In mm system: tonne/mm³ (= 10⁻⁹ tonne/mm³ for steel).
    Force $F$N (Newton)Unify as N in mm system, N in m system.

    Numerical Methods and Implementation

    Riks Method Settings

    🎓

    Abaqus: *STATIC, RIKS. Nastran: SOL 106 + PARAM,BUCKLE. Ansys: Arc-Length method. Settings are the same as for buckling Riks method.


    Summary

    🎓
    • Pass the limit point with the Riks method (arc-length method)
    • Settings are the same as for buckling Riks method

    • Coffee Break Yomoyama Talk

      Snap-Through Tracking via Arc Length Method

      Load-displacement paths containing snap-through cannot be tracked with normal load control. The arc length method developed by Riks (1979) and Crisfield (1981) simultaneously controls load and displacement, enabling tracking even in negative stiffness regions. By controlling load steps with Δl (arc length), a continuous analysis path is obtained up to the post-snap-through equilibrium shape. Abaqus's RIKS STEP implements this.

      Linear Elements (1st-order elements)

      Linear interpolation between nodes. Low computational cost but low stress accuracy. Beware of shear locking (mitigated with reduced integration or B-bar method).

      Quadratic Elements (with mid-side nodes)

      Capable of representing curved deformation. Stress accuracy improves significantly, but degrees of freedom increase by about 2-3 times. Recommended: When stress evaluation is important.

      Full integration vs Reduced integration

      Full integration: Risk of over-constraint (locking). Reduced integration: Risk of hourglass modes (zero-energy modes). Choose appropriately for the situation.

      Adaptive Mesh

      Automatic refinement based on error indicators (e.g., ZZ estimator). Efficiently improves accuracy in stress concentration areas. Includes h-method (element subdivision) and p-method (order increase).

      Newton-Raphson Method

      Standard method for nonlinear analysis. Updates the tangent stiffness matrix every iteration. Provides quadratic convergence within the convergence radius but has high computational cost.

      Modified Newton-Raphson Method

      Updates the tangent stiffness matrix using the initial value or every few iterations. Cost per iteration is low, but convergence speed is linear.

      Convergence Criteria

      Force residual norm: $||R|| / ||F_{ext}|| < \epsilon$ (typically $\epsilon = 10^{-3}$ to $10^{-6}$). Displacement increment norm: $||\Delta u|| / ||u|| < \epsilon$. Energy norm: $\Delta u \cdot R < \epsilon$

      Load Increment Method

      Applies the full load not all at once but in small increments. The arc-length method (Riks method) can track beyond extremum points on the load-displacement relationship.

      Analogy: Direct Method vs Iterative Method

      The direct method is like "solving simultaneous equations accurately with pen and paper"—reliable but takes too long for large-scale problems. The iterative method is like "repeatedly guessing to approach the correct answer"—starts with a rough answer but improves accuracy with each iteration. It's the same principle as looking up a word in a dictionary: it's more efficient to estimate where to open it and adjust forward/backward (iterative method) than to search sequentially from the first page (direct method).

      Relationship Between Mesh Order and Accuracy

      1st-order elements are like "approximating a curve with a ruler"—represented by straight line segments, so accuracy is limited. 2nd-order elements are like a "flexible curve"—can represent curved changes, dramatically improving accuracy even at the same mesh density. However, computational cost per element increases, so judgment should be based on total cost-effectiveness.

      Practical Guide

      Practical Checklist

      🎓
      • [ ] NLGEOM=YES
      • [ ] Use Riks method
      • [ ] Is the peak of the load-displacement curve clearly captured?

      • Coffee Break Yomoyama Talk

        Two-Stable State Design of Snap Fasteners

        The most familiar practical example of snap-through is push-pull connectors (e.g., by Amphenol) or binding leaf springs. Spring steel plates 0.3–0.5mm thick are designed to have two stable states, creating a click sensation. In mass-produced part design, the arc-length method in ANSYS Mechanical is used to understand the snap-back point on the load-displacement curve, and mold adjustments are made with 0.02mm precision.

        Analogy of the Analysis Flow

        The analysis flow is actually very similar to cooking. First, you buy ingredients (prepare the CAD model), do the prep work (mesh generation), apply heat (solver execution), and finally plate it (visualization in post-processing). Here's an important question—in cooking, which step is most prone to failure? Actually, it's the "prep work". If mesh quality is poor, the results will be a mess no matter how excellent the solver is.

        Pitfalls Beginners Often Fall Into

        Are you checking mesh convergence? Do you think "the calculation ran = the result is correct"? This is actually the most common trap for CAE beginners. The solver will always return "some answer" for the given mesh. But if the mesh is too coarse, that answer can be far from reality. Confirm that results stabilize with at least three levels of mesh density—neglecting this leads to the dangerous assumption that "the computer gave the answer, so it must be correct".

        Thinking About Boundary Conditions

        Setting boundary conditions is the same as "writing the problem statement" for an exam. If the problem statement is wrong? No matter how accurately you calculate, the answer will be wrong. "Is this surface truly fully fixed?" "Is this load truly uniformly distributed?"—Correctly modeling real-world constraint conditions is often the most critical step in the entire analysis.

        Software Comparison

        Tools

        🎓

        Abaqus *STATIC, RIKS is standard. All solvers support the arc-length method.


        Coffee Break Yomoyama Talk

        Each Vendor's Implementation of Arc-Length Method: Riks Method and Its Variants

        The arc-length method for snap-through analysis was proposed by E. Riks in 1972, but derivative implementations differ by solver. MSC Nastran uses the CRISFIELD spherical arc-length method, ABAQUS uses the Modified Riks method, ANSYS uses the Cylindrical Arc-Length method. A 2019 comparative study in the International Journal of Solids reported up to a 12% difference in load-displacement curves between ABAQUS and ANSYS for post-buckling analysis of 2D shell structures.

        The Three Most Important Questions for Selection

        • "What are you solving?": Does it support the physical models/element types needed for snap-through analysis? For example, in fluids, the presence of LES support; in structures, the capability for contact/large deformation makes a difference.
        • "Who will use it?": For beginner teams, tools with rich GUIs are suitable; for experienced users, flexible script-driven tools are better. Similar to the difference between automatic (GUI) and manual (script) transmission in cars.
        • "How far will you expand?": Selection considering future analysis scale expansion (HPC support), deployment to other departments, and integration with other tools leads to long-term cost reduction.

        Advanced Technology

        Advanced Research

        🎓
        • Bi-stable structures — Utilizing snap-through as a "function"
        • Dynamic snap-through — Limit point shifts due to inertial effects

        • Coffee Break Yomoyama Talk

          Snap-Through Buckling: Deployment Mechanism of Space Telescopes

          The snap-through phenomenon gained attention in the design of the solar panel deployment mechanism for the ESA Herschel Space Telescope (launched 2009). The design intentionally used snap-through to actuate a lock mechanism during deployment. As a successful case study, post-buckling analysis using ABAQUS's arc-length method (Riks method) predicted the deployment force within a 5% error margin, which was published.

          Troubleshooting

          Troubles

          🎓
          • Does not converge before the limit point → Switch to Riks method
          • Cannot pass the limit point → Reduce the initial increment size
          • Stabilization method → *STATIC, STABILIZE for artificial stabilization

          • Coffee Break Yomoyama Talk

            When Convergence Stops with the Arc-Length Method

            When the arc-length method fails to converge at a specific load level, it's often because the increment arc length Δl is too large and "jumps over" the snap-through point. First, reduce Δl to 1/5 and re-run the analysis. Also, increase the iteration count to 50–100 and check the residual norm trend. To improve convergence, it's effective to check the minimum buckling load with a linear buckling analysis before starting and set the initial arc length to 5–10% of that value.

            When You Think "The Analysis Doesn't Match"

            1. First, take a deep breath—Panicking and randomly changing settings can make the problem more complex.
            2. Create a minimal reproducible case—Reproduce the snap-through analysis problem in its simplest form. "Subtractive debugging" is most efficient.
            3. Change one thing and re-run—Making multiple changes simultaneously makes it unclear what worked. The principle of "controlled experiment" same as in science.
            4. Return to physics—If the calculation result is non-physical, like "an object floating against gravity", suspect a fundamental error in the input data.
            関連シミュレーター

            この分野のインタラクティブシミュレーターで理論を体感しよう

            シミュレーター一覧

            関連する分野

            熱解析製造プロセス解析V&V・品質保証
            この記事の評価
            ご回答ありがとうございます!
            参考に
            なった
            もっと
            詳しく
            誤りを
            報告
            参考になった
            0
            もっと詳しく
            0
            誤りを報告
            0
            Written by NovaSolver Contributors
            Anonymous Engineers & AI — サイトマップ
            About the Authors