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 "starMesh.H"
00030 #include <OpenFOAM/Time.H>
00031 #include <OpenFOAM/polyMesh.H>
00032
00033
00034
00035 void starMesh::writeMesh()
00036 {
00037 if (isShapeMesh_)
00038 {
00039 Info << "This is a shapeMesh." << endl;
00040
00041 Info << "Default patch type set to empty" << endl;
00042
00043 clearExtraStorage();
00044
00045 polyMesh pShapeMesh
00046 (
00047 IOobject
00048 (
00049 polyMesh::defaultRegion,
00050 runTime_.constant(),
00051 runTime_
00052 ),
00053 xferCopy(points_),
00054 cellShapes_,
00055 boundary_,
00056 patchNames_,
00057 patchTypes_,
00058 defaultFacesName_,
00059 defaultFacesType_,
00060 patchPhysicalTypes_
00061 );
00062
00063 Info << "Writing polyMesh" << endl;
00064 pShapeMesh.write();
00065 }
00066 else
00067 {
00068
00069
00070 createPolyMeshData();
00071
00072 Info << "This is a polyMesh" << endl;
00073
00074 clearExtraStorage();
00075
00076 polyMesh pMesh
00077 (
00078 IOobject
00079 (
00080 polyMesh::defaultRegion,
00081 runTime_.constant(),
00082 runTime_
00083 ),
00084 xferCopy(points_),
00085 xferCopy(meshFaces_),
00086 xferCopy(cellPolys_)
00087 );
00088
00089
00090 pMesh.addPatches(polyBoundaryPatches(pMesh));
00091
00092 Info << "Writing polyMesh" << endl;
00093 pMesh.write();
00094 }
00095 }
00096
00097
00098