BUG: set particle cell ID in cloud autoMap for mesh unrefine

This commit is contained in:
andy
2012-08-10 10:01:51 +01:00
parent 9dce59e9c4
commit 16d5e020ca

View File

@ -423,6 +423,10 @@ void Foam::Cloud<ParticleType>::autoMap
trackStartCell = 0;
p.cell() = 0;
}
else
{
p.cell() = trackStartCell;
}
vector pos = p.position();