fvMeshTopoChangersNone.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2021-2022 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
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.
15 
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.
20 
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/>.
23 
24 Class
25  Foam::fvMeshTopoChangers::none
26 
27 Description
28  Dummy fvMeshTopoChanger which does not move the mesh points
29 
30 SourceFiles
31  none.C
32 
33 \*---------------------------------------------------------------------------*/
34 
35 #ifndef fvMeshTopoChangersNone_H
36 #define fvMeshTopoChangersNone_H
37 
38 #include "fvMeshTopoChanger.H"
39 
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
41 
42 namespace Foam
43 {
44 namespace fvMeshTopoChangers
45 {
46 
47 /*---------------------------------------------------------------------------*\
48  Class none Declaration
49 \*---------------------------------------------------------------------------*/
50 
51 class none
52 :
53  public fvMeshTopoChanger
54 {
55 public:
56 
57  //- Runtime type information
58  TypeName("none");
59 
60 
61  // Constructors
62 
63  //- Construct from fvMesh
64  none(fvMesh& mesh);
65 
66  //- Construct from fvMesh and dictionary
67  none(fvMesh& mesh, const dictionary& dict);
68 
69  //- Disallow default bitwise copy construction
70  none(const none&) = delete;
71 
72 
73  //- Destructor
74  ~none();
75 
76 
77  // Member Functions
78 
79  //- The mesh is static and does not change so return false
80  virtual bool dynamic() const
81  {
82  return false;
83  }
84 
85  //- Dummy update function which does not change the mesh
86  virtual bool update();
87 
88  //- Update corresponding to the given map
89  virtual void topoChange(const polyTopoChangeMap&)
90  {}
91 
92  //- Update from another mesh using the given map
93  virtual void mapMesh(const polyMeshMap&)
94  {}
95 
96  //- Update corresponding to the given distribution map
97  virtual void distribute(const polyDistributionMap&)
98  {}
99 
100 
101  // Member Operators
102 
103  //- Disallow default bitwise assignment
104  void operator=(const none&) = delete;
105 };
106 
107 
108 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
109 
110 } // End namespace fvMeshTopoChangers
111 } // End namespace Foam
112 
113 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
114 
115 #endif
116 
117 // ************************************************************************* //
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:160
Abstract base class for fvMesh topology changers.
fvMesh & mesh()
Return the fvMesh.
Dummy fvMeshTopoChanger which does not move the mesh points.
virtual void mapMesh(const polyMeshMap &)
Update from another mesh using the given map.
virtual bool dynamic() const
The mesh is static and does not change so return false.
virtual void topoChange(const polyTopoChangeMap &)
Update corresponding to the given map.
TypeName("none")
Runtime type information.
none(fvMesh &mesh)
Construct from fvMesh.
virtual void distribute(const polyDistributionMap &)
Update corresponding to the given distribution map.
virtual bool update()
Dummy update function which does not change the mesh.
void operator=(const none &)=delete
Disallow default bitwise assignment.
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:101
Class containing mesh-to-mesh mapping information after a mesh distribution where we send parts of me...
Class containing mesh-to-mesh mapping information.
Definition: polyMeshMap.H:51
Class containing mesh-to-mesh mapping information after a change in polyMesh topology.
Namespace for OpenFOAM.
dictionary dict