OpenFOAM-2.4.x/applications/utilities/postProcessing/dataConversion/foamToEnsightParts/moveMesh.H
2014-02-17 16:00:08 +00:00

16 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));
}
}