repo.or.cz
/
OpenFOAM-2.0.x.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git]
/
applications
/
utilities
/
postProcessing
/
dataConversion
/
foamToEnsight
/
checkMeshMoving.H
blob
123036f63afe9d1a30c205fce0efc311125d6785
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
}