Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #include "sammMesh.H"
00030 #include <OpenFOAM/Time.H>
00031 #include <OpenFOAM/polyMesh.H>
00032
00033
00034
00035 void sammMesh::writeMesh()
00036 {
00037 if (isShapeMesh_)
00038 {
00039 Info << "This is a shapeMesh." << endl;
00040
00041 polyMesh pShapeMesh
00042 (
00043 IOobject
00044 (
00045 polyMesh::defaultRegion,
00046 runTime_.constant(),
00047 runTime_
00048 ),
00049 xferCopy(points_),
00050 cellShapes_,
00051 boundary_,
00052 patchNames_,
00053 patchTypes_,
00054 defaultFacesName_,
00055 defaultFacesType_,
00056 patchPhysicalTypes_
00057 );
00058
00059 Info << "Writing polyMesh" << endl;
00060 pShapeMesh.write();
00061 }
00062 else
00063 {
00064
00065
00066 createPolyMeshData();
00067
00068 Info << "This is a polyMesh" << endl;
00069
00070 polyMesh pMesh
00071 (
00072 IOobject
00073 (
00074 polyMesh::defaultRegion,
00075 runTime_.constant(),
00076 runTime_
00077 ),
00078 xferCopy(points_),
00079 xferCopy(meshFaces_),
00080 xferCopy(cellPolys_)
00081 );
00082
00083 pMesh.addPatches(polyBoundaryPatches(pMesh));
00084
00085 Info << "Writing polyMesh" << endl;
00086 pMesh.write();
00087 }
00088 }
00089
00090
00091