openfoam/applications/utilities/postProcessing/dataConversion/foamToGMV/moveMesh.H
2008-04-15 18:56:58 +01:00

28 lines
463 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);
}