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

writeMesh.C

Go to the documentation of this file.
00001 /*---------------------------------------------------------------------------*\
00002   =========                 |
00003   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
00004    \\    /   O peration     |
00005     \\  /    A nd           | Copyright (C) 1991-2010 OpenCFD Ltd.
00006      \\/     M anipulation  |
00007 -------------------------------------------------------------------------------
00008 License
00009     This file is part of OpenFOAM.
00010 
00011     OpenFOAM is free software: you can redistribute it and/or modify it
00012     under the terms of the GNU General Public License as published by
00013     the Free Software Foundation, either version 3 of the License, or
00014     (at your option) any later version.
00015 
00016     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
00017     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
00018     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
00019     for more details.
00020 
00021     You should have received a copy of the GNU General Public License
00022     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
00023 
00024 Description
00025     Create intermediate mesh files from PROSTAR files
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_),           // we could probably re-use the data
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         // This is a polyMesh.
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_),           // we could probably re-use the data
00085             xferCopy(meshFaces_),
00086             xferCopy(cellPolys_)
00087         );
00088 
00089         // adding patches also checks the mesh
00090         pMesh.addPatches(polyBoundaryPatches(pMesh));
00091 
00092         Info << "Writing polyMesh" << endl;
00093         pMesh.write();
00094     }
00095 }
00096 
00097 
00098 // ************************ vim: set sw=4 sts=4 et: ************************ //
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines