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