repo.or.cz
/
foam-extend-3.2.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git]
/
applications
/
utilities
/
postProcessing
/
dataConversion
/
foamToEnsightParts
/
checkHasMovingMesh.H
blob
a5a2dd7d2d8d9e1b05c1c629fb4c6aa3935ed918
1
// check for "points" in all of the result directories
2
3
bool hasMovingMesh = false;
4
if (timeDirs.size() > 1)
5
{
6
hasMovingMesh = true;
7
for (label i=0; i < timeDirs.size() && hasMovingMesh; ++i)
8
{
9
hasMovingMesh = IOobject
10
(
11
"points",
12
timeDirs[i].name(),
13
polyMesh::meshSubDir,
14
mesh,
15
IOobject::NO_READ
16
).headerOk();
17
}
18
}