Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / fileFormats / starcd / STARCDCore.H
bloba70183f7bf8a81d2d47c66cf5d1213b768a41144
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2006-2011 OpenCFD Ltd.
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 Class
25     Foam::fileFormats::STARCDCore
27 Description
28     Core routines used when reading/writing pro-STAR vrt/cel/bnd files.
30 SourceFiles
31     STARCDCore.C
33 \*---------------------------------------------------------------------------*/
35 #ifndef STARCDCore_H
36 #define STARCDCore_H
38 #include "IFstream.H"
39 #include "pointField.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
46 namespace fileFormats
49 /*---------------------------------------------------------------------------*\
50                    Class fileFormats::STARCDCore Declaration
51 \*---------------------------------------------------------------------------*/
53 class STARCDCore
55 protected:
57     // Protected Member Functions
59         //- Read header
60         static bool readHeader(IFstream&, const word& fileSignature);
62         //- Write header for fileType (CELL|VERTEX|BOUNDARY)
63         static void writeHeader(Ostream&, const word& fileType);
66 protected:
68         enum cellType
69         {
70             starcdFluidType   = 1,
71             starcdSolidType   = 2,
72             starcdBaffleType  = 3,
73             starcdShellType   = 4,
74             starcdLineType    = 5,
75             starcdPointType   = 6
76         };
78         enum shapeType
79         {
80             starcdPoint = 1,
81             starcdLine  = 2,
82             starcdShell = 3,
83             starcdHex   = 11,
84             starcdPrism = 12,
85             starcdTet   = 13,
86             starcdPyr   = 14,
87             starcdPoly  = 255
88         };
91 public:
93     // Public Member Functions
95         //- Read points from a (.vrt) file
96         // The file format is as follows:
97         // \verbatim
98         // Line 1:
99         //   PROSTAR_VERTEX  newline
100         //
101         // Line 2:
102         //   {version} 0 0 0 0 0 0 0  newline
103         //
104         // Body:
105         //   {vertexId}  {x}  {y}  {z}  newline
106         // \endverbatim
107         static bool readPoints(IFstream&, pointField&, labelList& ids);
109         //- Write header and points to (.vrt) file
110         static void writePoints(Ostream&, const pointField&);
113     // Constructors
115         //- Construct null
116         STARCDCore();
121 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
123 } // End namespace fileFormats
124 } // End namespace Foam
126 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
128 #endif
130 // ************************************************************************* //