Skip to content
Snippets Groups Projects
Commit 6844e640 authored by Henry Weller's avatar Henry Weller
Browse files

reactingEulerFoam/interfacialModels/liftModels: wallDampedLift

New lift model supporting near-wall damping using the new
wallDampingModels.

e.g.

lift
(
    (air in water)
    {
        type            wallDamped;
        lift
        {
            type            constantCoefficient;
            Cl              0.5;
        }
        wallDamping
        {
            type            linear;
            Cd              0.5;
        }
    }
);

in which a linear near-wall damping function min(y/(Cd*d), 1) is applied to the constant
coefficient lift model.  Additional wall-damping functions will be added.
parent e8b453cc
Branches
Tags
1 merge request!25Merge foundation
Showing
with 906 additions and 0 deletions
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment