ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / src / conversion / meshWriter / meshWriter.H
blobd7b6ca004a592b5f8c24381e9e88b6d181f7bf29
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by
13     the Free Software Foundation, either version 3 of the License, or
14     (at your option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
24 Namespace
25     Foam::meshWriters
27 Description
28     A namespace for holding various types of mesh writers.
31 Class
32     Foam::meshWriter
34 Description
35     write OpenFOAM meshes and/or results to another CFD format
36     - currently just STAR-CD
38 \par Files
40     "constant/boundaryRegion" is an IOMap<dictionary> that contains
41     the boundary type and names. eg,
42     \verbatim
43         (
44             0
45             {
46                 BoundaryType    wall;
47                 Label           Default_Boundary_Region;
48             }
50             1
51             {
52                 BoundaryType    inlet;
53                 Label           inlet_1;
54             }
56             ...
58             4
59             {
60                 BoundaryType    pressure;
61                 Label           outlet;
62             }
63         )
64     \endverbatim
67 SourceFiles
68     meshWriterI.H
69     meshWriter.C
70     meshWriterIO.C
72 \*---------------------------------------------------------------------------*/
74 #ifndef meshWriter_H
75 #define meshWriter_H
77 #include "polyMesh.H"
78 #include "boundaryRegion.H"
79 #include "cellTable.H"
81 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
83 namespace Foam
86 /*---------------------------------------------------------------------------*\
87                          Class meshWriter Declaration
88 \*---------------------------------------------------------------------------*/
90 class meshWriter
92     // Private Member Functions
94         //- Disallow default bitwise copy construct
95         meshWriter(const meshWriter&);
97         //- Disallow default bitwise assignment
98         void operator=(const meshWriter&);
101 protected:
103     // Protected data
105         //- Mesh reference
106         const polyMesh& mesh_;
108         //- Scaling factor for points (eg, [m] -> [mm])
109         scalar scaleFactor_;
111         //- Write bnd file
112         bool writeBoundary_;
114         //- boundaryRegion persistent data saved as a dictionary
115         boundaryRegion boundaryRegion_;
117         //- cellTable persistent data saved as a dictionary
118         cellTable cellTable_;
120         //- cellTable IDs for each cell
121         labelList cellTableId_;
123         //- Pointers to cell shape models
124         static const cellModel* unknownModel;
125         static const cellModel* tetModel;
126         static const cellModel* pyrModel;
127         static const cellModel* prismModel;
128         static const cellModel* hexModel;
131 public:
133     // Static data members
135         //- Specify a default mesh name
136         static string defaultMeshName;
138     // Constructors
140         //- Create a writer obejct
141         meshWriter
142         (
143             const polyMesh&,
144             const scalar scaleFactor = 1.0
145         );
148     //- Destructor
149     virtual ~meshWriter();
152     // Member Functions
154         // Edit
156             //- Set points scaling
157             void scaleFactor(const scalar scaling)
158             {
159                 scaleFactor_ = scaling;
160             }
162             //- Suppress writing bnd file
163             void noBoundary()
164             {
165                 writeBoundary_ = false;
166             }
168         // Write
170             //- Write volume mesh. Subclass must supply this method
171             virtual bool write
172             (
173                 const fileName& timeName = fileName::null
174             ) const = 0;
179 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
181 } // End namespace Foam
183 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
185 #endif
187 // ************************************************************************* //