moveMesh.H
Go to the documentation of this file.
1 {
2  IOobject io
3  (
4  "points",
5  runTime.timeName(),
6  polyMesh::meshSubDir,
7  mesh
8  );
9 
10  if (io.headerOk())
11  {
12  // Read new points
13  io.readOpt() = IOobject::MUST_READ;
14  mesh.movePoints(pointIOField(io));
15  }
16 }
vectorIOField pointIOField
pointIOField is a vectorIOField.
Definition: pointIOField.H:42
dynamicFvMesh & mesh