KinematicParcel: Bug fix. Restored steady particle tracking coupling.

This was broken when the minimum-step-fraction tolerance was removed.
This commit is contained in:
Will Bainbridge 2017-05-03 12:46:19 +01:00
parent a41f84e925
commit d041f6e037

View file

@ -310,7 +310,7 @@ bool Foam::KinematicParcel<ParcelType>::move
const scalar dt = (p.stepFraction() - sfrac)*trackTime;
// Avoid problems with extremely small timesteps
if (!td.cloud().solution().steadyState() && dt > ROOTVSMALL)
if (dt > ROOTVSMALL)
{
// Update cell based properties
p.setCellValues(td, dt, celli);