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
/
foamToGMV
/
moveMesh.H
blob
17cf53de25e66eac998b9c45d62a66e96a3c875f
1
IOobject ioPoints
2
(
3
"points",
4
runTime.timeName(),
5
mesh.name(),
6
mesh
7
);
8
9
if (ioPoints.headerOk())
10
{
11
Info << "new points available" << endl;
12
// Reading new points
13
pointIOField newPoints
14
(
15
IOobject
16
(
17
"points",
18
runTime.timeName(),
19
mesh.name(),
20
mesh,
21
IOobject::MUST_READ,
22
IOobject::NO_WRITE
23
)
24
);
25
26
mesh.movePoints(newPoints);
27
}