Dam Break Fluid-Structure Interaction

Category: 解析 | Integrated 2026-04-06
Dam break FSI simulation: VOF free-surface water column collapsing and impacting a deformable elastic obstacle, with Navier-Stokes, VOF transport, and structural dynamics governing equations
ダムブレイクFSIシミュレーション:VOF自由表面を持つ水柱が弾性障害物に衝突する様子と支配方程式

Overview

🧑‍🎓

先生、ダムブレイクのFSI解析ってどんな場面で使うんですか?


Theory and Physics

🎓

It is used for evaluating loads when flood waves from dam breaks collide with downstream buildings and structures, predicting impact forces of tsunamis on breakwaters and buildings, and assessing sloshing impact forces during liquid storage tank failures. Its characteristic is the ability to simultaneously handle unsteady fluids with free surfaces and large deformations of structures.


🧑‍🎓

The presence of a free surface is what differentiates it from ordinary FSI, right?


🎓

Exactly. Because it's the coupling of free-surface gas-liquid two-phase flow with structures, the computation becomes more complex than ordinary single-phase FSI. The effects of wave breaking and entrapped air are also important and significantly influence the impact pressure.


Governing Equations

🧑‍🎓

Please tell me the equations on the fluid side.


🎓

It combines the incompressible Navier-Stokes equations with free surface tracking. The VOF (Volume of Fluid) method is the most common.


$$ \frac{\partial \mathbf{v}}{\partial t} + (\mathbf{v} \cdot \nabla)\mathbf{v} = -\frac{1}{\rho}\nabla p + \nu \nabla^2 \mathbf{v} + \mathbf{g} $$
$$ \nabla \cdot \mathbf{v} = 0 $$
$$ \frac{\partial \alpha}{\partial t} + \nabla \cdot (\alpha \mathbf{v}) = 0 $$

$\alpha$ is the VOF function, where $\alpha = 1$ is liquid and $\alpha = 0$ is gas. Material properties are mixed using $\rho = \alpha \rho_l + (1-\alpha)\rho_g$.


🧑‍🎓

How is the structure side handled?


🎓

For elastic structures, standard FEM. Concrete for the dam body uses an elastoplastic model; for downstream buildings that may break, coupling with SPH (Smoothed Particle Hydrodynamics) or DEM (Discrete Element Method) is sometimes used.


The structural equation of motion is in the standard form.


$$ [M]\{\ddot{d}\} + [C]\{\dot{d}\} + [K]\{d\} = \{F_{fluid}\} $$

$\{F_{fluid}\}$ is the pressure load and viscous force from the fluid to the structure, obtained by integration at the coupling interface.


🧑‍🎓

Since it's an impact load, is an explicit method necessary?


🎓

Flood wave collision occurs on the order of tens of milliseconds, so an explicit method (LS-DYNA, Abaqus/Explicit) is suitable for the structure side. For the fluid side, explicit VOF methods (OpenFOAM's interFoam, Fluent VOF) are commonly used.

Coffee Break Yomoyama Talk

Why Dam Break Became the "FSI Textbook"

The dam break problem is used worldwide as a verification benchmark for computational fluid dynamics. The wavefront propagation speed when water is suddenly released has an analytical solution (Ritter solution), making comparison with numerical calculations easy. Furthermore, adding impact forces when structures are present turns it into an FSI verification problem. Measured data was obtained from the 2005 Monte Testaccio dam collapse and used for verification of SPH and MPS methods. The theory is simple and verification is clear—that's why it's a benchmark loved by researchers worldwide.

Physical Meaning of Each Term
  • Structure-Thermal Coupling Term: Thermal expansion due to temperature change induces structural deformation, and deformation affects the temperature field. $\sigma = D(\varepsilon - \alpha \Delta T)$. 【Everyday Example】Railroad tracks expand in summer, narrowing the gaps—temperature rise→Thermal Expansion→stress generation is a typical example. Warping of electronic circuit boards after soldering is also due to differences in thermal expansion coefficients between materials. Temperature differences between hot and cold parts in an engine cylinder block generate thermal stress, potentially leading to cracks.
  • Fluid-Structure Interaction (FSI) Term: Fluid pressure/shear forces deform the structure, and structural deformation changes the fluid domain—a bidirectional interaction. 【Everyday Example】Suspension bridge cables vibrating in strong winds (Vortex-Induced Vibration)—wind forces shake the structure, the shaken structure alters the wind flow, further amplifying vibration. Blood flow in the heart and elastic deformation of blood vessel walls, aircraft wing flutter (aeroelastic instability) are also typical FSI problems. One-way coupling may suffice in some cases, but bidirectional coupling is essential for large deformations.
  • Electromagnetic-Thermal Coupling Term: Joule heating $Q = J^2/\sigma$ causes temperature rise, and temperature change alters electrical resistance—a feedback loop. 【Everyday Example】The nichrome wire in an electric stove heats up (Joule heat) and glows red when current flows—temperature rise changes resistance, altering current distribution. Eddy current heating in IH cooking heaters, increased sag in power lines due to temperature rise are also examples of this coupling.
  • Data Transfer Term: Interpolation resolves mesh mismatch between different physical fields. 【Everyday Example】When calculating "feels-like temperature" by combining "air temperature data" and "wind data" in weather forecasting, interpolation is needed if observation points differ—in CAE coupled analysis, structural mesh and CFD mesh generally don't match, so data transfer (Interpolation) accuracy at the interface directly affects result reliability.
Assumptions and Applicability Limits
  • Weak Coupling Assumption (One-Way Coupling): Valid when one physical field affects the other but the reverse is negligible.
  • Cases Requiring Strong Coupling: Large deformations in FSI, strong temperature dependence in electromagnetic-thermal coupling.
  • Time Scale Separation: When characteristic times of each physical field differ significantly, subcycling can improve efficiency.
  • Interface Condition Consistency: Ensure energy/momentum conservation at the coupling interface is satisfied numerically.
  • Non-Applicable Cases: When three or more physical fields are strongly coupled simultaneously, monolithic methods may be necessary.
Dimensional Analysis and Unit Systems
VariableSI UnitNotes / Conversion Memo
Thermal Expansion Coefficient $\alpha$1/KSteel: ~12×10⁻⁶, Aluminum: ~23×10⁻⁶
Coupling Interface ForceN/m² (Pressure) or N (Concentrated Force)Check force balance between fluid and structure sides.
Data Transfer ErrorDimensionless (%)Interpolation accuracy depends on mesh density ratio. Below 5% is a guideline.

Numerical Methods and Implementation

🎓
MethodCharacteristicsApplication Scenarios
VOFTracks volume fraction on Eulerian meshGeneral-purpose, large-scale computation
Level SetTracks interface using distance functionSmooth interfaces
SPHMesh-free particle methodWave breaking, spray
MPS (Particle Method)Improved SPH version, incompressibleOriginated in Japan, nuclear reactor safety
ALEMesh follows the interfaceSmall interface deformation cases

For intense free-surface flows like dam breaks, VOF or SPH are mainstream.


🧑‍🎓

How is coupling with structures done in SPH?


🎓

SPH-FEM coupling is used. Fluid is represented by SPH particles, structure by FEM elements, and loads are transmitted via contact algorithms. LS-DYNA's DEFINE_SPH_TO_SPH_COUPLING orCONSTRAINED_LAGRANGE_IN_SOLID are representative implementations.


OpenFOAM for Dam Break FSI

🧑‍🎓

What about implementation with open source?


🎓

One method is combining OpenFOAM's interDyMFoam (VOF + Dynamic Mesh) with solids4foam (structural solver). Another popular approach is coupling OpenFOAM (fluid) with CalculiX (structure) via preCICE.


The basic equation for interFoam is Navier-Stokes with VOF, using the MULES algorithm to maintain a sharp interface.


Impact Pressure Evaluation

🧑‍🎓

How can we ensure the accuracy of impact pressure?


🎓

Impact pressure strongly depends on the compressibility of entrapped air. Incompressible VOF assumptions can sometimes overestimate peak impact pressure values.


As countermeasures, compressible VOF (compressibleInterFoam) or models artificially introducing air cushion effects are used. When comparing with experiments, it's necessary to recognize that pressure peak values have large variability (coefficient of variation 30-50%).


PhenomenonImpact Pressure Characteristics
Direct Impact (flip-through)Extremely high short-duration peak (below 10ms)
Air Cushion ImpactPeak is somewhat lower but duration is longer
Run-up LoadQuasi-static, dominant in structural response
🧑‍🎓

So for evaluating structural response, not just the peak impact pressure but also its duration is important, right?


🎓

Exactly. The ratio of the structure's natural period to the load duration determines the dynamic amplification factor. For short-duration impacts, the structure cannot follow, so evaluation by impulse (force × time) is often more appropriate.

Coffee Break Yomoyama Talk

SPH and MPS—Why Particle Methods Shine in Dam Break Analysis

In large-deformation free-surface flows like dam breaks, the weakness of Eulerian/ALE methods—where meshes deform severely and fail—becomes apparent. This is where particle methods (SPH, MPS) come into play. Particle methods treat fluid as a collection of particles, eliminating the need for meshes and allowing them to handle large deformations and splashing. However, particle methods have higher computational costs and generally lower accuracy than mesh methods. In practice, hybrid methods that automatically switch between "particle methods for the initial violent collision phase with intense splashing" and "mesh methods for subsequent steady flow" are also being researched.

Monolithic Method

Solves all physical fields simultaneously as one system of equations. Stable for strong coupling but complex to implement and memory-intensive.

Partitioned Method (Partitioned Iterative Method)

Solves each physical field independently, exchanging data at the interface. Easy to implement, can utilize existing solvers. Suitable for weak coupling.

Interface Data Transfer

Nearest Neighbor (simplest but low accuracy), Projection (conservative), RBF Interpolation (robust to mesh mismatch). Balance between conservation and accuracy is crucial.

Sub-iteration

Performing sufficient iterations within each coupling step to ensure interface condition consistency. Residual criteria are scaled based on typical values of each physical field.

Aitken Relaxation

Automatically adjusts the coupling iteration relaxation factor. An adaptive method that prevents divergence from over-relaxation and accelerates convergence.

Stability Condition

Beware of added mass effect (in fluid-structure coupling when structural density ≈ fluid density). For instability, apply Robin-type interface conditions or IQN-ILS method.

Analogy for Aitken Relaxation

Aitken relaxation is like "balancing a seesaw." If one side pushes too hard, the other side flies up, and the reaction causes it to push too hard again—Aitken relaxation automatically adjusts the pushing force to suppress this oscillation. When coupling iterations oscillate and fail to converge, it's an adaptive method that automatically adjusts the next correction based on the previous correction amount.

Practical Guide

🎓

1. Initial Condition Setup: Water level (head difference), dam opening method (instantaneous, gradual)

2. Computational Domain Design: Sufficient area including downstream structures. At least 30 times the dam height in horizontal direction.

3. Mesh Generation: Refine impact area. Minimum 10 cells per water depth for free surface resolution.

4. Boundary Conditions: Bottom/walls: no-slip, top: atmospheric pressure open.

5. Time Step: CFL < 0.5 (for VOF accuracy), adaptive time step recommended.

6. Computation Execution: Track free surface with VOF while coupling with structure.

7. Postprocessing: Impact pressure time history, structural displacement/Stress, water level time variation.


🧑‍🎓

Are there any benchmark problems for verification?


🎓

The following three are famous.


BenchmarkContentExperimental Data
Kleefsman (2005)Dam break → obstacle impactPressure & water level time history
Lobovsky (2014)Dam break → wall impact pressureHigh-precision pressure measurement
Idelsohn (2008)Dam break FSI on elastic wallWall displacement time history

Mesh Convergence Verification

🧑‍🎓

How should I decide the mesh fineness?


🎓

Impact pressure has very strong mesh dependency. Verify convergence with at least three levels (coarse, medium, fine). However, impact pressure peak values tend to increase with finer meshes and often do not strictly converge.


Practically, confirming that the pressure impulse (time-integrated value) becomes mesh-independent is a more robust approach. Directly verifying the convergence of structural response (displacement, maximum stress) is also a good approach.


Common Problems

Related Topics

関連シミュレーター

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

シミュレーター一覧

関連する分野

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