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

createMesh.H

Go to the documentation of this file.
00001 //
00002 // createMesh.H
00003 // ~~~~~~~~~~~~
00004 
00005     Foam::Info
00006         << "Create mesh for time = "
00007         << runTime.timeName() << Foam::nl << Foam::endl;
00008 
00009     Foam::fvMesh mesh
00010     (
00011         Foam::IOobject
00012         (
00013             Foam::fvMesh::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