mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
17 lines
322 B
C
17 lines
322 B
C
// 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
|
|
)
|
|
);
|