Home
Downloads
Documentation
Installation
User Guide
man-pages
API Documentation
README
Release Notes
Changes
License
Support
SourceForge Project
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
src
OpenFOAM
include
createMeshNoClear.H
Go to the documentation of this file.
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
);
20
21
// ************************ vim: set sw=4 sts=4 et: ************************ //