ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / src / dynamicMesh / polyTopoChange / polyTopoChanger / polyTopoChanger.H
blob9a8d91010b93e0a17d899a14eec7addda5c3a700
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 Class
25     Foam::polyTopoChanger
27 Description
28     List of mesh modifiers defining the mesh dynamics.
30 SourceFiles
31     polyTopoChanger.C
33 \*---------------------------------------------------------------------------*/
35 #ifndef polyTopoChanger_H
36 #define polyTopoChanger_H
38 #include "regIOobject.H"
39 #include "PtrList.H"
40 #include "polyMeshModifier.H"
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 namespace Foam
47 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
49 class polyMesh;
50 class mapPolyMesh;
51 class polyBoundaryMesh;
53 /*---------------------------------------------------------------------------*\
54                       Class polyTopoChanger Declaration
55 \*---------------------------------------------------------------------------*/
57 class polyTopoChanger
59     public PtrList<polyMeshModifier>,
60     public regIOobject
62     // Private Member Functions
64         //- Disallow default bitwise copy construct
65         polyTopoChanger(const polyTopoChanger&);
67         //- Disallow default bitwise assignment
68         void operator=(const polyTopoChanger&);
70         void readModifiers();
73 protected:
75     // Protected data
77         //- Reference to mesh
78         polyMesh& mesh_;
80 public:
82     //- Runtime type information
83     TypeName("polyTopoChanger");
86     // Constructors
88         //- Read constructor given IOobject and a polyMesh
89         polyTopoChanger(const IOobject&, polyMesh&);
91         //- Read constructor for given polyMesh
92         explicit polyTopoChanger(polyMesh&);
95     //- Destructor
96     virtual ~polyTopoChanger()
97     {}
100     // Member functions
102         //- Return the mesh reference
103         const polyMesh& mesh() const
104         {
105             return mesh_;
106         }
108         //- Return a list of patch types
109         wordList types() const;
111         //- Return a list of patch names
112         wordList names() const;
114         //- Is topology change required
115         bool changeTopology() const;
117         //- Return topology change request
118         autoPtr<polyTopoChange> topoChangeRequest() const;
120         //- Modify point motion
121         void modifyMotionPoints(pointField&) const;
123         autoPtr<mapPolyMesh> changeMesh
124         (
125             const bool inflate,
126             const bool syncParallel = true,
127             const bool orderCells = false,
128             const bool orderPoints = false
129         );
131         //- Force recalculation of locally stored data on topological change
132         void update(const mapPolyMesh& m);
134         //- Add given set of topology modifiers to the topoChanger
135         void addTopologyModifiers(const List<polyMeshModifier*>& tm);
137         //- Find modifier given a name
138         label findModifierID(const word& modName) const;
141         //- writeData member function required by regIOobject
142         bool writeData(Ostream&) const;
145     // Member Operators
147         bool operator!=(const polyTopoChanger&) const;
148         bool operator==(const polyTopoChanger&) const;
151     // Ostream operator
153         friend Ostream& operator<<(Ostream&, const polyTopoChanger&);
157 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
159 } // End namespace Foam
161 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
163 #endif
165 // ************************************************************************* //