Theoretical Background
This section aims to describe the physical models implemented in this package.
RBC models
RBC models aim to describe the effects of the three-dimensional fluid forces on the red blood cells (RBCs). All of them compute a representative scalar shear rate \(G_s\) along the pathline that represents the cell distortion state. This shear rate may then be used to compute the index of hemolysis (see Hemolysis models). This can be done using two different approaches: Strain-based models and Stress-based models.
Strain-based models
Strain-based models explicitly resolve cell deformation in response to the fluid forces. They are based on an ODE system that describes the evolution of the cell shape. The shear rate is then computed from the cell deformation (see Arora et al. [1]).
Full Arora model
This model was introduced by Arora et al. [1]. Due to some numerical issues with the original formulation, we perform a spectral decomposition, as described in our paper [4]. The model is thus explicit in the eigenvalues \((\lambda_1, \lambda_2, \lambda_3)\) and eigenvectors \(\mathbf{Q} = [ \mathbf{v}_1 | \mathbf{v}_2 | \mathbf{v}_3]\). The governing equations are:
Here, \(\tilde{\mathbf{E}} = \mathbf{Q}^\mathrm{T} \mathbf{E} \mathbf{Q}\) and \(\tilde{\mathbf{W}} = \mathbf{Q}^\mathrm{T} \mathbf{W} \mathbf{Q}\) are the transformed strain and vorticity tensors, respectively.
This is implemented as hemtracer.rbc_model.strain_based.AroraFullEig
. The default coefficients, i.e., those corresponding to the original Arora model, are \(f_1 = 5.0 \, \mathrm{s}^{-1}\), \(f_2 = 4.2298 \cdot 10^{-4}\), \(\tilde{f_2} = \tilde{f_3} = 1.0\).
Simplified Arora model
This model was derived by Pauli et al. [10] by neglecting the rotation of the eigenvectors in the Arora model [1]. The model is formulated in terms of the symmetric morphology tensor \(\mathbf{S} \in \mathbb{R}^{n \times n}\). The governing equation is
with the strain tensor \(\mathbf{E} = \frac{1}{2}((\boldsymbol{\nabla} \mathbf{v}) + (\boldsymbol{\nabla} \mathbf{v})^\mathrm{T})\) and vorticity tensor \(\mathbf{W} = \frac{1}{2} (\boldsymbol{\nabla} \mathbf{v} - (\boldsymbol{\nabla} \mathbf{v})^{\mathrm{T}})\).
This is implemented as hemtracer.rbc_model.strain_based.AroraSimplified
.
Tank-treading model
This model was derived by Dirkes et al. [4] by replacing the differential equation for the orientation tensor Q by an algebraic equation for equilibrium orientation. The model is generally more efficient than the full Eulerian reformulation and more robust, as it contains only the eigenvalues (3 DoF’s). The governing equations are
This is implemented as hemtracer.rbc_model.strain_based.TankTreading
.
Stress-based models
Stress-based models do not explicitly resolve cell deformation. Instead, they compute the shear rate from the instantaneous fluid strain rate tensor \(\mathbf{E}\).
Bludszuweit model
This model was proposed by Bludszuweit [2]. It computes a representative scalar from instantaneous fluid strain, similar to the von Mises stress:
This is implemented as hemtracer.rbc_model.stress_based.Bludszuweit
.
Faghih and Sharp model
This model was proposed by Faghih and Sharp [5]. It weighs extensional and shear stresses differently:
With \(\sqrt{3} C_n = 33.79\). This is implemented as hemtracer.rbc_model.stress_based.FaghihSharp
.
Frobenius norm
Computes a representative scalar from instantaneous fluid strain using the Frobenius norm:
This is implemented as hemtracer.rbc_model.stress_based.Frobenius
.
Second strain invariant
Computes a representative scalar from instantaneous fluid strain using the second strain invariant:
This is implemented as hemtracer.rbc_model.stress_based.SecondInvariant
.
Hemolysis models
Hemolysis models employ an empirical correlation between the scalar shear rate \(G_s\) and the index of hemolysis \(IH \, [\%]\). Commonly, this correlation takes the form of a power law:
This is implemented as hemtracer.hemolysis_model.PowerLaw
.
The parameter \(\mu\) represents the viscosity of blood. It is usually assumed to be constant and equal to \(3.5 \, \mathrm{mPa \cdot \mathrm{s}\). The parameter \(t\) represents exposure time. It is integrated along the pathline, along with the shear rate \(G_s\).
Coefficients
The coefficients \(A_\mathrm{Hb}\), \(\alpha_\mathrm{Hb}\) and \(\beta_\mathrm{Hb}\) are determined empirically. Over the past 30 years, several studies have found a wide range of possible values. The available correlations are given in hemtracer.hemolysis_model.IHCorrelation
.
Numerical integration
The index of hemolysis is computed by numerically integrating the power law along the pathline. There is some discussion in literature on the discretization of the power law. Various approaches are presented by Taskin et al. [12]. Note that they use a different definition of the power law:
They compiled five approaches to integrate this power law. They can be selected in the constructor of hemtracer.hemolysis_model.PowerLaw
by setting the option integration_scheme. The available options are:
Option |
Equation |
---|---|
|
\(HI1(t_n) = \sum_{i=1}^n C (\Delta t)_i^\alpha \sigma_i^\beta\) |
|
\(HI2(t_n) = \sum_{i=1}^n C \alpha t_i^{\alpha-1} \sigma_i^\beta (\Delta t)_i\) |
|
\(HI3(t_n) = C \left( \sum_{i=1}^n (\Delta t)_i \sigma_i^{\beta/\alpha} \right)\) |
|
\(HI4(t_n) = \sum_{i=1}^n \alpha C \left( \sum_{j=1}^i \sigma_j^{\beta/\alpha} \right)^{\alpha-1} \sigma_i^{\beta/\alpha} \Delta t_i\) |
|
\(HI5(t_n) = C (t_\mathrm{eff}^n + (\Delta t)_n)^{\alpha} \sigma^\beta \, , \qquad t_\mathrm{eff}^n = \left( \frac{HI5(t_{n-1})}{C \sigma^\beta} \right)^{1/\alpha}\) |