Heart Valve FSI Analysis

Category: 解析 | Integrated 2026-04-06
CAE visualization for heart valve theory - technical simulation diagram
心臓弁のFSI

Theory and Physics

Heart Valve Simulation Background

🧑‍🎓

In what situations is fluid-structure interaction analysis for heart valves necessary?


🎓

It is used for the design and evaluation of artificial heart valves (mechanical valves, bioprosthetic valves). The main objectives are to evaluate leaflet opening/closing behavior, wall shear stress (WSS), thrombus formation risk, and hemolysis risk.


🎓

Blood flow through the valve has a Reynolds number in the thousands, placing it in the transitional regime, and the leaflets undergo large deformation. Therefore, fluid-structure interaction (FSI) becomes essential.


Governing Equations

🧑‍🎓

Is the mechanics of blood flow different from that of a Newtonian fluid?


🎓

In large vessels, blood is often approximated as a Newtonian fluid ($\mu \approx 3.5$ mPa·s). However, in low shear rate regions, non-Newtonian models such as the Carreau-Yasuda model are necessary.


$$ \mu(\dot{\gamma}) = \mu_\infty + (\mu_0 - \mu_\infty)(1 + (\lambda \dot{\gamma})^a)^{(n-1)/a} $$

🎓

For structural analysis of leaflets, a hyperelastic model is used. The Mooney-Rivlin model is used for bioprosthetic valves, and a rigid body motion model is applied for mechanical valve leaflets.


$$ W = C_{10}(I_1 - 3) + C_{01}(I_2 - 3) $$

Here, $W$ is the strain energy density function, and $I_1, I_2$ are invariants of the Cauchy-Green deformation tensor.


🧑‍🎓

Are the interface conditions the same as in standard FSI?


🎓

They are fundamentally the same. However, since leaflets are thin shell structures, additional handling of contact detection (when leaflets contact each other during valve closure) is required. Using methods like the Immersed Boundary Method or Immersed Finite Element Method allows handling large deformations without remeshing.


$$ \mathbf{f}(\mathbf{x}, t) = \int_{\Gamma} \mathbf{F}(s,t) \delta(\mathbf{x} - \mathbf{X}(s,t)) ds $$
Coffee Break Yomoyama Talk

Heart Valves are a "Fully Passive System" – The Sophistication of Opening and Closing 100,000 Times a Day Driven Only by Blood Pressure Difference

From an engineer designing artificial devices, the operating principle of heart valves is surprisingly simple. There is no motor or electrical signal; the valve opens solely due to the pressure difference between the ventricle and the aorta, and closes due to the momentum of blood when backflow begins—a fully passive, fluid-driven system. The theory governing this opening and closing is a textbook example of FSI, where leaflet thickness (~0.5mm) and leaflet elastic modulus directly affect opening speed and backflow volume during closure. In particular, FSI analysis shows that "water hammer pressure" occurs at closure, generating instantaneous stress concentrations of 0.1–0.3 MPa on the leaflets. Since this repeated stress leads to valve calcification and fatigue failure, understanding the theory is directly linked to the lifespan design of artificial valves.

Physical Meaning of Each Term
  • Structure-Thermal Coupling Term: Thermal expansion due to temperature changes induces structural deformation, and deformation affects the temperature field. $\sigma = D(\varepsilon - \alpha \Delta T)$. 【Everyday Example】Railroad tracks expanding in summer, narrowing the gaps—a typical case of temperature rise → thermal expansion → stress generation. Warping of circuit boards after soldering is also due to differences in thermal expansion coefficients between materials. Engine cylinder blocks experience thermal stress from temperature differences between hot and cold sections, potentially leading to cracks.
  • Fluid-Structure Interaction (FSI) Term: Bidirectional interaction where fluid pressure/shear forces deform the structure, and structural deformation changes the fluid domain. 【Everyday Example】Suspension bridge cables vibrating in strong wind (vortex-induced vibration)—wind force shakes the structure, the shaken structure alters the wind flow, further amplifying vibration. Blood flow in the heart and elastic deformation of vessel walls, and 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: A feedback loop where Joule heating $Q = J^2/\sigma$ causes temperature rise, and temperature change alters electrical resistance. 【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 and increased sag in power lines due to temperature rise are also examples of this coupling.
  • Data Transfer Term: Interpolation resolves mesh mismatches 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—similarly in CAE coupled analysis, structural and CFD meshes generally do not 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, efficiency can be improved via subcycling.
  • Interface Condition Consistency: Ensure energy and 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 required.
Dimensional Analysis and Unit Systems
VariableSI UnitNotes / Conversion Memo
Thermal Expansion Coefficient $\alpha$1/KSteel: ~12×10⁻⁶, Aluminum: ~23×10⁻⁶
Coupled Interface ForceN/m² (pressure) or N (concentrated force)Verify 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

Discretization Method Selection

🧑‍🎓

What types of numerical methods are used in FSI analysis of heart valves?


🎓

There are three main approaches.


MethodFluidStructureCharacteristics
ALE-FEMFVM/FEM (body-fitted grid)FEMHigh interface accuracy. Requires remeshing for large deformations.
IB MethodFDM/FVM (fixed grid)Fiber ModelNo remeshing needed. Interface blurs.
IFEMFEM (fixed grid)FEM (embedded)Can use FEM for structure. Implementation somewhat complex.
🧑‍🎓

For cases like heart valves that repeatedly open and close, remeshing every cycle with the ALE method must be tough, right?


🎓

That's why methods like the IB method and overset mesh method are becoming mainstream recently. Griffith et al.'s (IBAMR) open-source IB code is widely used in heart valve research.


Time Integration

🧑‍🎓

What time step size is used to solve the cardiac cycle?


🎓

The heartbeat cycle is about 0.8 seconds. Valve opening/closing occurs in tens of milliseconds, so a $\Delta t = 0.1$ to $0.5$ ms is typically required. That's 1,600 to 8,000 steps per cycle.


🎓

Run at least 3–5 cycles to exclude initial transients, and obtain statistical quantities from stable cycles. Inflow boundary conditions are set using velocity or pressure waveforms from MRI measurements.


Wall Shear Stress Evaluation

🧑‍🎓

You mentioned WSS evaluation is important. What metrics are used?


🎓

Time-Averaged WSS (TAWSS) and Oscillatory Shear Index (OSI) are representative.


$$ \text{TAWSS} = \frac{1}{T} \int_0^T |\boldsymbol{\tau}_w| \, dt $$
$$ \text{OSI} = \frac{1}{2} \left( 1 - \frac{\left| \int_0^T \boldsymbol{\tau}_w \, dt \right|}{\int_0^T |\boldsymbol{\tau}_w| \, dt} \right) $$

Areas with low TAWSS (< 0.4 Pa) and high OSI (> 0.3) are considered high risk for thrombosis. These evaluations are also recommended in FDA (U.S. Food and Drug Administration) guidance.

Coffee Break Yomoyama Talk

Numerical Representation of Leaflet Contact – How to Code "Valve Closure"

The most numerically challenging aspect of heart valve FSI analysis is handling "contact between leaflets." When three leaflets close completely at the center, the gap between them approaches zero. From a fluid analysis perspective, this creates a singularity where "pressure becomes infinite at the moment the gap becomes zero," which does not converge with standard CFD grids. To avoid this, the Immersed Boundary Method (IBM) represents leaflets as "virtual volume force sources," approximating closure without deforming the grid. On the other hand, the CEL method represents closure by changing the fluid volume fraction when leaflets overlap Eulerian grids. Both are clever ways to avoid the singularity by not directly handling "zero gap"—a classic example where the choice of numerical method determines the success of the analysis.

Monolithic Method

Solves all physical fields simultaneously as a single 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 and 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 important.

Sub-iteration

Perform 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 relaxation factor for coupling iterations. An adaptive method that prevents divergence from over-relaxation and accelerates convergence.

Stability Condition

Beware of the added mass effect (in fluid-structure coupling when structural density ≈ fluid density). If unstable, apply Robin-type interface conditions or the 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 recoil 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

Practical Model Construction Steps

🧑‍🎓

Please explain the specific steps for model construction.


🎓

1. 3D geometry reconstruction from CT/MRI images (using Mimics, 3D Slicer, etc.)

2. CAD modeling of leaflet shape (patient-specific or artificial valve CAD data)

3. Mesh Generation: Polyhedral mesh for fluid domain, shell elements for structure.

4. Boundary condition setup: Flow rate waveform at inlet, Windkessel pressure model at outlet.

5. Material property definition: Leaflets, aortic wall, blood.


🧑‍🎓

What is the Windkessel model?


🎓

It's a model approximating the downstream vascular system with an RC circuit. The three-element Windkessel is standard:


$$ P = R_p Q + R_d Q + C R_d \frac{dQ}{dt} $$

$R_p$ is proximal resistance, $R_d$ is distal resistance, and $C$ is compliance. This allows imposing a physiologically plausible pressure boundary downstream of the aortic valve.


Mesh Quality Standards

🧑‍🎓

What level of mesh density is required?


🎓

Place at least 3 or more prism layers near the leaflets. In the literature, a total element count of 3 to 10 million is typical.


RegionElement SizeNotes
Leaflet Surface0.2–0.5 mmAccuracy required for stress evaluation.
Valve Orifice Jet Region0.3–0.8 mmResolution of velocity gradients.
Aortic Sinus0.5–1.0 mmResolution of vortex flow.
Far Field Region1.0–3.0 mmEnsuring computational efficiency.
🧑‍🎓

With this scale, HPC is needed, right?


🎓

A typical calculation requires 64–256 cores and takes several days to a week. GPU-enabled solvers (like Ansys Fluent Native GPU Solver) can provide speedup.

Coffee Break Yomoyama Talk
関連シミュレーター

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

シミュレーター一覧

関連する分野

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