FreeFOAM The Cross-Platform CFD Toolkit
Hosted by SourceForge:
Get FreeFOAM at SourceForge.net.
            Fast, secure and Free Open Source software downloads

createPolyMesh.H

Go to the documentation of this file.
00001 //
00002 // createPolyMesh.H
00003 // ~~~~~~~~~~~~~~~~
00004 
00005     Foam::Info
00006         << "Create polyMesh for time = "
00007         << runTime.timeName() << Foam::nl << Foam::endl;
00008 
00009     Foam::polyMesh mesh
00010     (
00011         Foam::IOobject
00012         (
00013             Foam::polyMesh::defaultRegion,
00014             runTime.timeName(),
00015             runTime,
00016             Foam::IOobject::MUST_READ
00017         )
00018     );
00019 
00020 // ************************ vim: set sw=4 sts=4 et: ************************ //
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines