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
BUGFIX: Illegal use of uninitialised value (backport)
[foam-extend-3.2.git]
/
applications
/
utilities
/
postProcessing
/
dataConversion
/
foamToEnsight
/
checkMeshMoving.H
blob
3c190d1a4961db2e4c11d29448faa4e8d5ba364a
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
}