Skip to content
Snippets Groups Projects
Commit 72465aab authored by mattijs's avatar mattijs
Browse files

BUG: displacementMotionSolver: access incorrect region. Fixes #327.

parent 789cef44
Branches
Tags
No related merge requests found
......@@ -56,7 +56,7 @@ Foam::IOobject Foam::displacementMotionSolver::points0IO(const polyMesh& mesh)
(
"points0",
instance,
mesh.meshDir(),
polyMesh::meshSubDir,
mesh,
IOobject::MUST_READ,
IOobject::NO_WRITE,
......@@ -71,7 +71,7 @@ Foam::IOobject Foam::displacementMotionSolver::points0IO(const polyMesh& mesh)
(
"points0",
instance,
mesh.meshDir(),
polyMesh::meshSubDir,
mesh,
IOobject::MUST_READ,
IOobject::NO_WRITE,
......@@ -91,7 +91,7 @@ Foam::IOobject Foam::displacementMotionSolver::points0IO(const polyMesh& mesh)
(
"points",
instance,
mesh.meshDir(),
polyMesh::meshSubDir,
mesh,
IOobject::MUST_READ,
IOobject::NO_WRITE,
......@@ -138,7 +138,7 @@ Foam::displacementMotionSolver::displacementMotionSolver
(
"points",
time().constant(),
mesh.meshDir(),
polyMesh::meshSubDir,
mesh,
IOobject::MUST_READ,
IOobject::NO_WRITE,
......
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