mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: displacementMeshMoverMotionSolver: update boundary condition
This commit is contained in:
@ -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();
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user