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

moveMesh.H

Go to the documentation of this file.
00001 {
00002     IOobject io
00003     (
00004         "points",
00005         runTime.timeName(),
00006         polyMesh::meshSubDir,
00007         mesh
00008     );
00009 
00010     if (io.headerOk())
00011     {
00012         // Read new points
00013         io.readOpt() = IOobject::MUST_READ;
00014         mesh.movePoints(pointIOField(io));
00015     }
00016 }
00017 
00018 // ************************ vim: set sw=4 sts=4 et: ************************ //
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines