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]
/
src
/
foam
/
include
/
createPolyMesh.H
blob
02e25d1c519ab1a92fb56aa7d1e71baaf71b36e9
1
//
2
// createPolyMesh.H
3
// ~~~~~~~~~~~~~~~~
4
5
Foam::Info
6
<< "Create polyMesh for time = "
7
<< runTime.timeName() << Foam::nl << Foam::endl;
8
9
Foam::polyMesh mesh
10
(
11
Foam::IOobject
12
(
13
Foam::polyMesh::defaultRegion,
14
runTime.timeName(),
15
runTime,
16
Foam::IOobject::MUST_READ
17
)
18
);