Forward compatibility: flex
[foam-extend-3.2.git] / src / dynamicMesh / dynamicTopoFvMesh / convexSetAlgorithm / faceSetAlgorithm.H
bloba0a1b2aa03e39c34e2ac748f20f700ac483433d6
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend 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 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 Class
25     faceSetAlgorithm
27 Description
28     Class for convexSetAlgorithms pertaining to faces
30 Author
31     Sandeep Menon
32     University of Massachusetts Amherst
33     All rights reserved
35 SourceFiles
36     faceSetAlgorithm.C
38 \*---------------------------------------------------------------------------*/
40 #ifndef faceSetAlgorithm_H
41 #define faceSetAlgorithm_H
43 #include "convexSetAlgorithm.H"
45 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
47 namespace Foam
50 /*---------------------------------------------------------------------------*\
51                      Class faceSetAlgorithm Declaration
52 \*---------------------------------------------------------------------------*/
54 class faceSetAlgorithm
56     public convexSetAlgorithm
59     // Private Member Functions
61         //- Disallow default bitwise copy construct
62         faceSetAlgorithm(const faceSetAlgorithm&);
64         //- Disallow default bitwise assignment
65         void operator=(const faceSetAlgorithm&);
67         //- Write out tris as a VTK
68         void writeVTK
69         (
70             const word&,
71             const List<FixedList<point, 3> >&
72         ) const;
74 public:
76     //- Constructor
78         faceSetAlgorithm
79         (
80             const polyMesh& mesh,
81             const pointField& newPoints,
82             const UList<edge>& newEdges,
83             const UList<face>& newFaces,
84             const UList<cell>& newCells,
85             const UList<label>& newOwner,
86             const UList<label>& newNeighbour
87         );
89     //- Destructor
91         virtual ~faceSetAlgorithm()
92         {}
94     //- Virtual member functions
96         // Dimensions of the algorithm
97         virtual label dimension() const
98         {
99             return 2;
100         }
102         // Compute normFactor
103         virtual void computeNormFactor(const label index) const;
105         // Check whether the bounding box contains the entity
106         virtual bool contains(const label index) const;
108         // Compute intersections
109         virtual bool computeIntersection
110         (
111             const label newIndex,
112             const label oldIndex,
113             const label offset,
114             bool output
115         ) const;
119 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
121 } // End namespace Foam
123 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
125 #endif
127 // ************************************************************************* //