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

PairCollision: Reduce division stabilization to SMALL

parent dbe56f64
Branches
Tags
1 merge request!33Merge foundation
......@@ -246,7 +246,7 @@ void Foam::PairCollision<CloudType>::wallInteraction()
vector pW = nearPt - pos;
scalar normalAlignment = normal & pW/(mag(pW) + ROOTSMALL);
scalar normalAlignment = normal & pW/(mag(pW) + SMALL);
// Find the patchIndex and wallData for WallSiteData object
label patchI = patchID[realFaceI - mesh.nInternalFaces()];
......
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