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

27 lines
457 B
C

IOobject ioPoints
(
"points",
runTime.timeName(),
mesh.name(),
mesh
);
if (ioPoints.headerOk())
{
Info<< "new points available" << endl;
// Reading new points
pointIOField newPoints
(
IOobject
(
"points",
runTime.timeName(),
mesh.name(),
mesh,
IOobject::MUST_READ,
IOobject::NO_WRITE
)
);
mesh.movePoints(newPoints);
}