Files
OpenFOAM-6/applications/utilities/postProcessing/dataConversion/foamToEnsightParts/moveMesh.H
2014-12-10 22:40:10 +00:00

17 lines
272 B
C

{
IOobject io
(
"points",
runTime.timeName(),
polyMesh::meshSubDir,
mesh
);
if (io.headerOk())
{
// Read new points
io.readOpt() = IOobject::MUST_READ;
mesh.movePoints(pointIOField(io));
}
}