repo.or.cz
/
OpenFOAM-1.7.x.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ENH: patchCloud: return pTraits<Type>::max for unfound points
[OpenFOAM-1.7.x.git]
/
src
/
dynamicFvMesh
/
include
/
createDynamicFvMesh.H
blob
9a541a764dcbae06cda32f4eb8f87c966ff77702
1
Info<< "Create mesh for time = "
2
<< runTime.timeName() << nl << endl;
3
4
autoPtr<dynamicFvMesh> meshPtr
5
(
6
dynamicFvMesh::New
7
(
8
IOobject
9
(
10
dynamicFvMesh::defaultRegion,
11
runTime.timeName(),
12
runTime
13
)
14
)
15
);
16
17
dynamicFvMesh& mesh = meshPtr();