Skip to content
Snippets Groups Projects
Commit 9f7b8f6c authored by andy's avatar andy
Browse files

ENH: Added Weber numbver evaluation

parent 8dcf604c
Branches
Tags
No related merge requests found
......@@ -547,6 +547,15 @@ public:
const scalar muc // carrier dynamic viscosity
) const;
//- Weber number
inline scalar We
(
const vector& U, // particle velocity
const scalar d, // particle diameter
const scalar rhoc, // carrier density
const scalar sigma // particle surface tension
) const;
// Main calculation loop
......
......@@ -542,4 +542,17 @@ inline Foam::scalar Foam::KinematicParcel<ParcelType>::Re
}
template<class ParcelType>
inline Foam::scalar Foam::KinematicParcel<ParcelType>::We
(
const vector& U,
const scalar d,
const scalar rhoc,
const scalar sigma
) const
{
return rhoc*magSqr(U - Uc_)*d/(sigma + ROOTVSMALL);
}
// ************************************************************************* //
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