Nonlinear Contact Analysis of Bolted Joints

Category: 構造解析 | Integrated 2026-04-06
CAE visualization for bolted joint nonlinear theory - technical simulation diagram
ボルト接合の非線形接触解析

Theory and Physics

Nonlinearity of Bolted Joints

🧑‍🎓

Professor, how does the nonlinear contact analysis of bolted joints differ from the bolted assemblies we learned in linear-static analysis?


🎓

Linear-static bolt analysis assumes no separation (linear). Nonlinear contact analysis tracks separation, sliding, and variation in clamping force.


Nonlinear Effects

🎓
Nonlinear EffectDescription
Separation of clamped surfacesClamped surfaces open due to insufficient preload
Frictional slidingClamped surfaces slide under lateral load
Variation in bolt axial forceBolt axial force changes under external load (Φ in VDI 2230)
Gasket nonlinearityCompression-unloading hysteresis of gaskets
Preload relaxationPreload decreases due to vibration or creep
🧑‍🎓

To track all of these with FEM, a nonlinear analysis with contact and preload is necessary, right?


🎓

Build a complete model with solid elements for bolt + clamped parts + contact (with friction) + preload, and solve it with nonlinear static analysis (Newton-Raphson).


Summary

🎓

Key Points:


  • Track separation, sliding, and axial force variation — Not possible with linear analysis
  • Combined nonlinearity of contact + friction + preload — Difficult to converge
  • Compare with VDI 2230 hand calculations — Verification of FEM
  • Especially important for flanges with gaskets — Gasket nonlinearity

Coffee Break Yomoyama Talk

VDI 2230 Guideline 1977

The bolted joint design standard VDI 2230 was established in 1977 in West Germany (at the time) and is one of the first industrial standards to systematically organize the relationship between clamping force, external load, and tightening allowance using a linear spring model. The basic concept treats the elastic compliance of the fastener and clamped parts as springs in series and defines the load introduction factor. The current 2014 edition officially recognizes calculation of this factor using FEM.

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 pulled" 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, assuming "forces are 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 pull a spring, you feel a "force trying to return it", right? That's Hooke's law $F=kx$, the essence of the stiffness term. So here's a question—if you pull an iron rod and a rubber band with the same force, which stretches more? Obviously the rubber. 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$ (e.g., gravity) 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 is a "force acting only on the surface" (surface force). Wind pressure, water pressure, bolt tightening force... all are external forces. A common pitfall here: getting the load direction wrong. Intending "tension" but actually applying "compression"—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. That's because vibrational 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 vibrational energy to improve ride comfort. What if damping were zero? Buildings would continue shaking 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 stress-strain relationship is linear
  • Isotropic material (unless otherwise specified): Material properties are independent of direction (anisotropic materials require separate tensor definition)
  • Quasi-static assumption (for static analysis): Ignores inertial and damping forces, considering only equilibrium between external and internal forces
  • Non-applicable cases: Large deformation/large rotation problems require geometric nonlinearity. Nonlinear material behavior like plasticity or creep requires constitutive law extension
Dimensional Analysis and Unit Systems
VariableSI UnitNotes / Conversion Memo
Displacement $u$m (meter)When inputting in mm, unify loads and elastic modulus to MPa/N system
Stress $\sigma$Pa (Pascal) = N/m²MPa = 10⁶ Pa. Be careful of unit 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

FEM Settings

🎓

Typical settings in Abaqus:


```

*STEP, NLGEOM=YES

*STATIC

*BOLT LOAD

bolt_section, bolt_mid, 50000. $ Preload 50kN

*CONTACT PAIR

flange_top, flange_bottom $ Clamped surfaces

*FRICTION

0.15 $ Friction coefficient

*END STEP

*STEP, NLGEOM=YES

*STATIC

*BOLT LOAD, OP=FIX $ Fix preload

*CLOAD

...

*END STEP

```


Step 1 for preload, Step 2 for external load. OP=FIX locks the preload.


Summary

🎓
  • 2 StepsPreload → External load (OP=FIX)
  • Contact + Friction — Defined on clamped surfaces
  • NLGEOM=YES — Large deformation effects

  • Coffee Break Yomoyama Talk

    Implementation of Preload Elements

    In FEM implementation of bolt tightening, the preload element method, which defines a cut section (bolt cut section) on the bolt shaft cross-section and applies an equivalent axial force there, is standard. In ABAQUS, this is implemented with the PRETENSION SECTION keyword, and a two-step process is recommended: applying the tightening load in the first analysis step, then adding external loads in the second step. This method is also adopted in MSC Nastran's BOLT element (V2010~).

    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)

    Can represent 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 mode (zero-energy mode). Choose appropriately.

    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 tangent stiffness matrix each iteration. Quadratic convergence within convergence radius, but high computational cost.

    Modified Newton-Raphson Method

    Updates tangent stiffness matrix using initial value or every few iterations. Lower cost per iteration, but linear convergence speed.

    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 total load in small increments rather than all at once. Arc-length method (Riks method) can track beyond limit points on the load-displacement curve.

    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 open it at an estimated location and adjust forward/backward (iterative method) than to search sequentially from the first page (direct method).

    Relationship Between Mesh Order and Accuracy

    First-order elements are like "approximating a curve with a ruler"—represented by straight line segments, so accuracy is limited. Second-order elements are like "flexible curves"—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

    Practice of Nonlinear Bolted Joints

    🎓

    Important for pressure vessel flanges (with gaskets), engine cylinder heads, and structural fasteners.


    Practical Checklist

    🎓
    • [ ] Is preload based on VDI 2230?
    • [ ] Is friction set on contact surfaces (clamped surfaces)?
    • [ ] Is preload locked with OP=FIX?
    • [ ] Has separation been checked? (contact pressure > 0)
    • [ ] Does the variation in bolt axial force align with the Φ factor in VDI 2230?
    • [ ] Are gasket nonlinear characteristics set? (if gaskets are present)

    • Coffee Break Yomoyama Talk

      Sealing Evaluation of Flange Joints

      In pipeline flanges for petrochemical plants, the uniformity of gasket contact pressure directly affects sealing performance. In an analysis case published by Mitsubishi Heavy Industries in 2012, non-uniform tightening of 24 bolts (±15% torque variation) was reproduced using ANSYS Workbench nonlinear contact, identifying locations where gasket pressure locally fell below the required minimum pressure (20MPa). Optimizing bolt arrangement improved sealing test pass rates from 78% to 96%.

      Analogy of Analysis Flow

      The analysis flow is actually very similar to cooking. First, you buy ingredients (prepare 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—which step in cooking is most prone to failure? Actually, it's the "prep work". If mesh quality is poor, results will be a mess no matter how good the solver is.

      Common Pitfalls for Beginners

      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 will be far from reality. Verify that results stabilize across at least three mesh densities—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 like "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 really fully fixed?" "Is this load really uniformly distributed?"—Correctly modeling real-world constraints is often the most important step in the entire analysis.

      Software Comparison

      Tools for Bolted Joints

      🎓
      • Abaqus *BOLT LOAD — Most intuitive preload setting
      • Ansys Bolt Pretension — Workbench GUI
      • Nastran SOL 400 — Nonlinear contact + preload

      • Selection Guide

        🎓
        • Detailed nonlinear analysis of bolted joints

          Related Topics

          関連シミュレーター

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

          シミュレーター一覧

          関連する分野

          この記事の評価
          ご回答ありがとうございます!
          参考に
          なった
          もっと
          詳しく
          誤りを
          報告
          参考になった
          0
          もっと詳しく
          0
          誤りを報告
          0
          Written by NovaSolver Contributors
          Anonymous Engineers & AI — サイトマップ