FreeFOAM The Cross-Platform CFD Toolkit
checkMeshMoving.H
Go to the documentation of this file.
1 // check for "points" in all of the result directories
2 
3 bool meshMoving = true;
4 if (Times.size() > 2)
5 {
6  for (label n1=2; n1<Times.size() && meshMoving; ++n1)
7  {
8  meshMoving = IOobject
9  (
10  "points",
11  Times[n1].name(),
12  polyMesh::meshSubDir,
13  mesh,
14  IOobject::NO_READ
15  ).headerOk();
16  }
17 }
18 else
19 {
20  meshMoving = false;
21 }
22 
23 // ************************ vim: set sw=4 sts=4 et: ************************ //