BUG: meshRefinementRefine : track to end

This commit is contained in:
mattijs
2010-11-12 14:31:00 +00:00
parent 7819ab5037
commit 67542c8577

View File

@ -333,7 +333,7 @@ Foam::label Foam::meshRefinement::markFeatureRefinement
trackedParticle::trackData td(cloud, maxFeatureLevel); trackedParticle::trackData td(cloud, maxFeatureLevel);
// Track all particles to their end position (= starting feature point) // Track all particles to their end position (= starting feature point)
cloud.move(td, mesh_.time().deltaTValue()); cloud.move(td, GREAT);
// Reset level // Reset level
maxFeatureLevel = -1; maxFeatureLevel = -1;
@ -406,7 +406,7 @@ Foam::label Foam::meshRefinement::markFeatureRefinement
} }
// Track all particles to their end position. // Track all particles to their end position.
cloud.move(td, mesh_.time().deltaTValue()); cloud.move(td, GREAT);
} }