Stress Intensity Factor (SIF) and Fracture Mode

Category: 構造解析 | Integrated 2026-04-06
CAE visualization for sif modes theory - technical simulation diagram
応力拡大係数(SIF)と破壊モード

Theory and Physics

Stress Intensity Factor (SIF)

🧑‍🎓

Professor, what is the Stress Intensity Factor $K$?


🎓

$K$ (Stress Intensity Factor) is a parameter representing the strength of the stress field at the crack tip. It is a fundamental quantity in Linear Elastic Fracture Mechanics (LEFM).


$$ K_I = \sigma \sqrt{\pi a} \cdot F(a/W) $$

$\sigma$: remote stress, $a$: crack length, $F$: shape correction factor.


Three Fracture Modes

🎓
ModeDisplacementTypical Loading
Mode I (Opening)Crack faces separateTension
Mode II (In-plane shear)Crack faces slide in-planeShear
Mode III (Out-of-plane shear)Crack faces slide out-of-planeTorsion
🧑‍🎓

Is Mode I the most common?


🎓

The majority of engineering crack problems are dominated by Mode I. Fracture occurs when $K_I \geq K_{IC}$ (plane strain fracture toughness).


Summary

🎓
  • $K_I = \sigma\sqrt{\pi a} F$ — Strength of the stress field at the crack tip
  • Three Modes (I: Opening, II: In-plane shear, III: Out-of-plane shear)
  • Fracture when $K_I \geq K_{IC}$ — $K_{IC}$ measured by ASTM E399
  • FEM with *CONTOUR INTEGRAL, TYPE=K — Automatically calculates SIF

  • Coffee Break Yomoyama Talk

    How Irwin Developed Linear Fracture Mechanics

    The concept of the stress intensity factor KI was proposed by Irwin (U.S. Naval Research Laboratory) in 1957. He integrated Inglis's (1913) elliptical notch stress analysis and Griffith's (1921) energy theory, successfully describing the strength of the crack tip stress field with a single parameter "K". The classification into three modes (I, II, III) is also his contribution, forming the basis of all current fracture mechanics standards.

    Physical Meaning of Each Term
    • Inertia Term (Mass Term): $\rho \ddot{u}$, i.e., "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 is "left behind". In static analysis, this term is set to zero, assuming "forces are applied slowly enough that acceleration is negligible". It cannot be omitted in 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. Here's 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". 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 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 ending up with "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 away. 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 inhomogeneities.
    • 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 behavior like plasticity or creep requires 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 inconsistencies when comparing with yield stress.
    Strain $\varepsilon$Dimensionless (m/m)Note the distinction between engineering strain and logarithmic strain (for large deformations).
    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

    SIF in FEM

    🎓

    ```

    *CONTOUR INTEGRAL, CONTOURS=5, TYPE=K FACTORS

    crack_tip, direction

    ```

    Outputs $K_I, K_{II}, K_{III}$ simultaneously. Relationship with J-integral: $J = (K_I^2 + K_{II}^2)/E' + K_{III}^2/(2G)$


    Quarter-Point Elements

    🎓

    Represents the $1/\sqrt{r}$ singular field at the crack tip. Moves the mid-side node of quadratic elements to the 1/4 position.


    Summary

    🎓
    • Abaqus *CONTOUR INTEGRAL, TYPE=K FACTORS — SIF for 3 modes
    • Quarter-Point Elements — $1/\sqrt{r}$ singular field
    • Verify contour convergence — Outer 3-4 contours should be stable

    • Coffee Break Yomoyama Talk

      Conversion from J-integral to K

      For elastic bodies, the relationship J=KI²/E' (with E'=E/(1−ν²) for plane strain) holds, allowing KIc to be back-calculated from FEM J-integral results. In 3D FEM, K varies through the thickness, so the average value at the surface and center is taken as the representative value. For separating stress intensity factor modes (KI, KII, KIII), the Virtual Crack Closure Technique (VCCT) is computationally efficient.

      Linear Elements (1st-order Elements)

      Linear interpolation between nodes. Low computational cost but low stress accuracy. Beware of shear locking (mitigated by 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 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. Achieves quadratic convergence within the convergence radius, but computational cost is high.

      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 total load in small increments rather than all at once. The arc-length method (Riks method) can trace 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 too time-consuming for large-scale problems. The iterative method is like "repeatedly guessing to approach the correct answer"—the initial answer is rough, but accuracy improves 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

      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 "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

      SIF in Practice

      🎓

      Used in crack assessment for pressure vessels, defect evaluation for piping, and damage tolerance design for aircraft.


      Practical Checklist

      🎓
      • [ ] Is the crack shape (e.g., semi-elliptical surface crack) correctly modeled?
      • [ ] Is the mesh at the crack tip (Spider web + Quarter-Point) appropriate?
      • [ ] Have you verified SIF contour convergence?
      • [ ] Is $K_I < K_{IC}$? (fracture condition)
      • [ ] Do handbook values (Tada, Murakami) and FEM $K$ agree?

      • Coffee Break Yomoyama Talk

        SIF Evaluation for Oblique Cracks in Pipe Elbows

        Fatigue cracks in pipe elbow sections often propagate in a mixed-mode state combining Mode I and II. In steam pipe inspection evaluation, the equivalent SIF Keq=(KI²+KII²+KIII²/(1-ν))^0.5 for obliquely oriented cracks detected by ultrasonic testing is commonly used for assessment. API 579 standardizes this calculation formula, with repair required when the KIc/Keq ratio is less than 1.0.

        Analogy for Analysis Flow

        The analysis flow is actually very similar to cooking. First, you buy the 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—which step in cooking 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 results are 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 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 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 truly fully fixed?" "Is this load truly uniformly distributed?"—Correctly modeling real-world constraint conditions is actually the most critical step in the entire analysis.

        Software Comparison

        SIF Tools

        🎓
        • Abaqus *CONTOUR INTEGRAL — J, K, T-stress
        • Ansys CINT — SIF calculation
        • FRANC3D — Dedicated to 3D cracks
        • NASGRO — Crack propagation + SIF database
        • Murakami's Handbook — Reference SIF values

        • Coffee Break Yomoyama Talk

          FRANC3D's Dedicated Crack Modeling Features

          FRANC3D (Fracture ANalysis Code 3D) is a crack propagation analysis software originating from Cornell University, specializing in automatic SIF calculation and crack growth simulation. It partially remeshes existing FEM models to embed cracks and automates crack surface remeshing. FRANC3D was used in FAA-certified fatigue analysis of PW4000 engine fan blades.

          Three Most Important Questions for Selection

          • "What are you solving?": Does the required physical model and element type for Stress Intensity Factor (SIF) and fracture modes correspond? For example, in fluids, the presence of LES support, and in structures, the capability for contact/large deformation make 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 transmission (GUI) and manual transmission (script) in cars.
          • "How far will it 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 SIF

          🎓
          関連シミュレーター

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

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