19 lines
423 B
C
19 lines
423 B
C
//
|
|
// createMeshNoClear.H
|
|
// ~~~~~~~~~~~~~~~~~~~
|
|
// currently identical to createMesh.H
|
|
|
|
Foam::Info
|
|
<< "Create mesh, no clear-out for time = "
|
|
<< runTime.timeName() << Foam::nl << Foam::endl;
|
|
|
|
Foam::fvMesh mesh
|
|
(
|
|
Foam::IOobject
|
|
(
|
|
Foam::fvMesh::defaultRegion,
|
|
runTime.timeName(),
|
|
runTime,
|
|
Foam::IOobject::MUST_READ
|
|
)
|
|
);
|