OpenFOAM
v2512
The open source CFD toolbox
Loading...
Searching...
No Matches
moveMesh.H
Go to the documentation of this file.
1
{
2
IOobject
io
3
(
4
"points"
,
5
runTime
.timeName(),
6
mesh
.name(),
7
mesh
,
8
IOobject::NO_READ,
9
IOobject::NO_WRITE,
10
IOobject::NO_REGISTER
11
);
12
13
if
(
io
.typeHeaderOk<pointIOField>(
true
,
false
))
14
{
15
Info<<
"new points available"
<< endl;
16
// Read new points
17
io
.readOpt(IOobject::MUST_READ);
18
mesh
.movePoints(pointIOField(
io
));
19
}
20
}
mesh
dynamicFvMesh & mesh
Definition
createDynamicFvMesh.H:6
runTime
engineTime & runTime
Definition
createEngineTime.H:13
io
const auto & io
Definition
findMeshDefinitionDict.H:139
applications
utilities
postProcessing
dataConversion
foamToGMV
moveMesh.H
Generated by
1.16.1