Merge branch 'master' of github.com:OpenCFD/OpenFOAM-2.0.x
[OpenFOAM-2.0.x.git] / src / dynamicMesh / polyTopoChange / polyMeshModifier / polyMeshModifier.H
blobab82546018f02145b4505e3f8097bab140352e8b
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2004-2010 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::polyMeshModifier
27 Description
28     Virtual base class for mesh modifiers.
30 SourceFiles
31     polyMeshModifier.C
33 \*---------------------------------------------------------------------------*/
35 #ifndef polyMeshModifier_H
36 #define polyMeshModifier_H
38 #include "label.H"
39 #include "word.H"
40 #include "Switch.H"
41 #include "typeInfo.H"
42 #include "runTimeSelectionTables.H"
43 #include "autoPtr.H"
44 #include "pointField.H"
45 #include "faceList.H"
46 #include "cellList.H"
48 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
50 namespace Foam
53 // Forward declaration of classes
54 class polyTopoChanger;
55 class polyTopoChange;
56 class mapPolyMesh;
58 /*---------------------------------------------------------------------------*\
59                        Class polyMeshModifier Declaration
60 \*---------------------------------------------------------------------------*/
62 class polyMeshModifier
64     // Private data
66         //- Name of zone
67         word name_;
69         //- Index of zone
70         label index_;
72         //- Reference to morph engine
73         const polyTopoChanger& topoChanger_;
75         //- Activation switch
76         mutable Switch active_;
79     // Private Member Functions
81         //- Disallow default bitwise copy construct
82         polyMeshModifier(const polyMeshModifier&);
84         //- Disallow default bitwise assignment
85         void operator=(const polyMeshModifier&);
88 public:
90     // Static data members
92         //- Runtime type information
93         TypeName("meshModifier");
96     // Declare run-time constructor selection tables
98         declareRunTimeSelectionTable
99         (
100             autoPtr,
101             polyMeshModifier,
102             dictionary,
103             (
104                 const word& name,
105                 const dictionary& dict,
106                 const label index,
107                 const polyTopoChanger& mme
108             ),
109             (name, dict, index, mme)
110         );
113     // Constructors
115         //- Construct from components
116         polyMeshModifier
117         (
118             const word& name,
119             const label index,
120             const polyTopoChanger& mme,
121             const bool act
122         );
125     // Selectors
127         //- Select constructed from dictionary
128         static autoPtr<polyMeshModifier> New
129         (
130             const word& name,
131             const dictionary& dict,
132             const label index,
133             const polyTopoChanger& mme
134         );
137     //- Destructor
138     virtual ~polyMeshModifier();
141     // Member Functions
143         //- Return name
144         const word& name() const
145         {
146             return name_;
147         }
149         //- Return the index of this patch in the boundaryMesh
150         label index() const
151         {
152             return index_;
153         }
155         //- Return reference to morph engine
156         const polyTopoChanger& topoChanger() const;
158         //- Check for topology change
159         virtual bool changeTopology() const = 0;
161         //- Insert the topological change instructions
162         virtual void setRefinement(polyTopoChange&) const = 0;
164         //- Modify motion points to comply with the topological change
165         virtual void modifyMotionPoints(pointField& motionPoints) const = 0;
167         //- Force recalculation of locally stored data on topological change
168         virtual void updateMesh(const mapPolyMesh&) = 0;
171         // Activation and deactivation
173             const Switch& active() const
174             {
175                 return active_;
176             }
178             //- Activate mesh modifier
179             void enable() const
180             {
181                 active_ = true;
182             }
184             //- Activate mesh modifier
185             void disable() const
186             {
187                 active_ = false;
188             }
191         //- Write
192         virtual void write(Ostream&) const = 0;
194         //- Write dictionary
195         virtual void writeDict(Ostream&) const = 0;
198     // Ostream Operator
200         friend Ostream& operator<<(Ostream&, const polyMeshModifier&);
204 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
206 } // End namespace Foam
208 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
210 #endif
212 // ************************************************************************* //