Skip to content
Snippets Groups Projects
Commit 2e6a6446 authored by mattijs's avatar mattijs
Browse files

BUG: displacementMeshMoverMotionSolver: update boundary condition

parent cfd7d515
Branches
Tags
No related merge requests found
......@@ -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();
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment