initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / conversion / ensight / part / ensightPartFaces.H
blob073a70bc58c01de7faff7cc8943695b8510a6b5e
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 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 the
13     Free Software Foundation; either version 2 of the License, or (at your
14     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, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 Class
26     Foam::ensightPartFaces
28 Description
29     An implementation of ensightPart to hold volume mesh faces.
31 SourceFiles
32     ensightPartFaces.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef ensightPartFaces_H
37 #define ensightPartFaces_H
39 #include "ensightPart.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
46 /*---------------------------------------------------------------------------*\
47                      Class ensightPartFaces Declaration
48 \*---------------------------------------------------------------------------*/
50 class ensightPartFaces
52     public ensightPart
54     // Private Member Functions
56         //- Disallow default bitwise assignment
57         void operator=(const ensightPartFaces&);
59         //- track points used
60         virtual localPoints calcLocalPoints() const;
62         //- element connectivity
63         virtual void writeConnectivity
64         (
65             ensightGeoFile& os,
66             const string& key,
67             const labelList& idList,
68             const labelList& pointMap
69         ) const;
72 protected:
74     //- addressable ensight element types
75     enum elemType
76     {
77         tria3Elements,
78         quad4Elements,
79         nsidedElements
80     };
82     // Static data members
83     static List<word> elemTypes_;
86 public:
88     //- Runtime type information
89     TypeName("ensightFaces");
91     // Constructors
93         //- Construct empty part with number and description
94         ensightPartFaces(label partNumber, const string& partDescription);
96         //- Construct from polyMesh and polyPatch
97         ensightPartFaces
98         (
99             label partNumber,
100             const polyMesh&,
101             const polyPatch&
102         );
104         //- Construct as copy
105         ensightPartFaces(const ensightPartFaces&);
107         //- Construct from Istream
108         ensightPartFaces(Istream&);
110         //- Construct on freestore from Istream
111         static autoPtr<ensightPartFaces> New(Istream& is)
112         {
113             return autoPtr<ensightPartFaces>(new ensightPartFaces(is));
114         }
117     //- Destructor
118     virtual ~ensightPartFaces();
121     // Member Functions
123         //- static listing of the element types
124         virtual List<word> const& elementTypes() const
125         {
126             return elemTypes_;
127         }
131 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
133 } // End namespace Foam
135 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
137 #endif
139 // ************************************************************************* //