Skip to content
Snippets Groups Projects
Commit c7660123 authored by Will Bainbridge's avatar Will Bainbridge Committed by Andrew Heather
Browse files

ThermoSurfaceFilm: Corrected the splash kinetic energy

The splash kinetic energy has been changed to depend upon the velocity
of the parcel normal to the wall, rather than the absolute velocity, in
accordance with the original reference.

This patch was contributed by Stefan Hildenbrand at Pfinder
Resolves bug report https://bugs.openfoam.org/view.php?id=2682
parent 95018c68
Branches
Tags
No related merge requests found
......@@ -397,7 +397,7 @@ void Foam::ThermoSurfaceFilm<CloudType>::splashInteraction
}
// Incident kinetic energy [J]
const scalar EKIn = 0.5*m*magSqr(Urel);
const scalar EKIn = 0.5*m*magSqr(Un);
// Incident surface energy [J]
const scalar ESigmaIn = np*sigma*p.areaS(d);
......
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