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
Report patch name instead of index in debug
[foam-extend-3.2.git]
/
src
/
foam
/
include
/
createMeshNoClear.H
blob
8526a37be6ec2c42d0d3d6581e265676ec229ec1
1
//
2
// createMeshNoClear.H
3
// ~~~~~~~~~~~~~~~~~~~
4
// currently identical to createMesh.H
5
6
Foam::Info
7
<< "Create mesh, no clear-out for time = "
8
<< runTime.timeName() << Foam::nl << Foam::endl;
9
10
Foam::fvMesh mesh
11
(
12
Foam::IOobject
13
(
14
Foam::fvMesh::defaultRegion,
15
runTime.timeName(),
16
runTime,
17
Foam::IOobject::MUST_READ
18
)
19
);