mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
Changing correction magnitude for confused particles from 1e-6 to 1e-3, needed for snappyHexMeshes.
This commit is contained in:
@ -390,7 +390,7 @@ Foam::scalar Foam::Particle<ParticleType>::trackToFace
|
||||
// slightly towards the cell-centre.
|
||||
if (trackFraction < SMALL)
|
||||
{
|
||||
position_ += 1.0e-6*(mesh.cellCentres()[celli_] - position_);
|
||||
position_ += 1.0e-3*(mesh.cellCentres()[celli_] - position_);
|
||||
}
|
||||
|
||||
return trackFraction;
|
||||
|
||||
Reference in New Issue
Block a user