BUG: displacementMeshMoverMotionSolver: update boundary condition

This commit is contained in:
mattijs
2013-12-03 12:06:48 +00:00
parent cfd7d5159d
commit 2e6a6446f7

View File

@ -106,7 +106,15 @@ void Foam::displacementMeshMoverMotionSolver::solve()
label nAllowableErrors = 0;
labelList checkFaces(identity(mesh().nFaces()));
meshMover().move(coeffDict(), nAllowableErrors, checkFaces);
meshMover().move
(
coeffDict().subDict(meshMover().type() + "Coeffs"),
nAllowableErrors,
checkFaces
);
// This will have updated the mesh and implicitly the pointDisplacement
pointDisplacement().correctBoundaryConditions();
}