Skip to content
Snippets Groups Projects
Commit 8c379e78 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 4b64b9a0
No related branches found
No related tags found
1 merge request!144Integration openfoam.org
...@@ -397,7 +397,7 @@ void Foam::ThermoSurfaceFilm<CloudType>::splashInteraction ...@@ -397,7 +397,7 @@ void Foam::ThermoSurfaceFilm<CloudType>::splashInteraction
} }
// Incident kinetic energy [J] // Incident kinetic energy [J]
const scalar EKIn = 0.5*m*magSqr(Urel); const scalar EKIn = 0.5*m*magSqr(Un);
// Incident surface energy [J] // Incident surface energy [J]
const scalar ESigmaIn = np*sigma*p.areaS(d); const scalar ESigmaIn = np*sigma*p.areaS(d);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment