OpenFOAM logo
Open Source CFD Toolkit

createEngineMesh.H

Go to the documentation of this file.
00001     Info<< "Create mesh\n" << endl;
00002     autoPtr<engineMesh> meshPtr
00003     (
00004         engineMesh::New
00005         (
00006             IOobject
00007             (
00008                 engineMesh::defaultRegion,
00009                 runTime.timeName(),
00010                 runTime
00011             )
00012         )
00013     );
00014 
00015     engineMesh& mesh = meshPtr();
00016 
00017     mesh.constructAndClear();
For further information go to www.openfoam.org