Gasket Element
Theory and Physics
What is a Gasket Element?
Professor, what is a gasket element?
Gasket element is a dedicated element for modeling the gasket (sealing material) between flanges. It represents the nonlinear hysteresis of compression-unloading of the gasket.
Characteristics of gaskets:
- Stiffness increases nonlinearly with compression — Load-displacement curve is convex upward
- Does not fully recover upon unloading — Plastic deformation (permanent strain)
- Hysteresis — Compression and unloading paths are different
- Behavior in the thickness direction is dominant — Weak in-plane
Implementation in FEM
Summary
ASME Pressure Vessel Code 1914
The standardization of industrial gasket design began with the establishment of the ASME Boiler and Pressure Vessel Code (BPVC) in 1914. The concepts of the gasket factor m (tightness factor) and y (minimum seating stress) are defined in ASME BPVC Section VIII Division 1. Even in modern FEM analysis, the experimental measurement of the in-situ pressure-displacement curve (closure curve) for gasket materials is conducted in accordance with this code.
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 away" 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 is the assumption that "acceleration can be ignored because the force is applied slowly". It absolutely cannot be omitted in impact load 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 — an iron rod and a rubber band, which stretches more when pulled with the same force? Obviously the rubber. This "resistance to stretching" is the Young's modulus $E$, which determines stiffness. A common misconception: "high stiffness = strong" is not correct. 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), 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 typical mistake here: getting the load direction wrong. Intending "tension" but it becomes "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 away, 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 — intentionally absorbing vibration 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, 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, considers only equilibrium between external and internal forces
- Non-applicable cases: For large deformation/large rotation problems, geometric nonlinearity is required. For plasticity, creep, and other nonlinear material behaviors, constitutive law extension is needed
Dimensional Analysis and Unit Systems
| Variable | SI Unit | Notes / 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 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$ | Pa | Steel: ~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
Gasket Material Model
Gasket load-displacement characteristics are obtained from material testing. Test data from ASTM F36 (compressibility), F38 (creep relaxation).
Setting in Abaqus:
```
*GASKET BEHAVIOR, NAME=gasket_prop
*GASKET THICKNESS BEHAVIOR
0., 0.
0.5, 10.
1.0, 50.
1.5, 150.
```
Directly input the table of compression amount vs. contact pressure.
Summary
Formulation of Gasket Elements
The characteristic of dedicated gasket elements is the ability to independently define stiffness in the thickness direction (closure direction) and in-plane direction (membrane). In ABAQUS GK elements (Gasket element), closure behavior and transverse shear stiffness can be input via tables, allowing representation of different nonlinear behaviors on the compression and tension sides (e.g., exponential curve during compression, nearly zero stiffness during tension). This formulation is based on Ballard's (1994) ENGAS element, with Simula (now Dassault) completing the implementation.
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 critical.
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 tangent stiffness matrix every iteration. Achieves quadratic convergence within convergence radius, but computational cost is high.
Modified Newton-Raphson Method
Updates tangent stiffness matrix using 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
Instead of applying the full load at once, apply in small increments. The arc-length method (Riks method) can trace beyond extremum points in 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 accuracy improves 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 "flexible curves" — can represent curved changes, dramatically improving accuracy even at the same mesh density. However, computational cost per element increases, so judge based on total cost-effectiveness.
Practical Guide
Gasket Practice
Leakage evaluation for pressure vessel flanges. In ASME BPVC Section VIII flange design, gasket contact pressure is critical.
Practical Checklist
Engine Head Gasket Analysis
Automotive engine head gasket analysis is one of the most mature fields of FEM application from the 2000s. In an analysis published by Honda in 2005, the three-layer structure of a metal gasket (MLS: Multi Layer Steel) was modeled using ABAQUS GK elements, achieving accuracy within ±10% compared to actual contact pressure distribution measured by the contact film method around the cylinder bore. This contributed to reducing prototype development cycles by 2 iterations compared to conventional methods.
Analogy of the Analysis Flow
The analysis flow is actually very similar to cooking. First, 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 the 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. Confirm 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 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 really fully fixed?" "Is this load really uniformly distributed?" — Correctly modeling the real-world constraint conditions is actually the most important step in the entire analysis.
Software Comparison
Gasket Tools
Selection Guide
Implementation History of ABAQUS GK Elements
Dedicated gasket elements (GAXAn, GKnnn series) were added to ABAQUS in Version 5.8 (around 1998). Before that, approximation with nonlinear spring elements (SPRING2) was the only option. Standard implementation of gasket elements in Nastran was delayed, with the GASKET-PROPERTY card finally added in MSC Nastran 2012. Currently, GK elements are also available in NX Nastran's nonlinear solvers (SOL 601/701).
The Three Most Important Questions for Selection
- "What are you solving?": Does the required physical model/element type for gasket elements have support? 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 GUI 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 expansion of analysis scale (HPC support), deployment to other departments, and integration with other tools leads to long-term cost reduction.
Advanced Technology
Advanced Gasket Research
Related Topics
なった
詳しく
報告