fvMeshDistributorsNone.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::fvMeshDistributors::none
26 
27 Description
28  Dummy fvMeshDistributor which does not move the mesh points
29 
30 SourceFiles
31  none.C
32 
33 \*---------------------------------------------------------------------------*/
34 
35 #ifndef fvMeshDistributorsNone_H
36 #define fvMeshDistributorsNone_H
37 
38 #include "fvMeshDistributor.H"
39 
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
41 
42 namespace Foam
43 {
44 namespace fvMeshDistributors
45 {
46 
47 /*---------------------------------------------------------------------------*\
48  Class none Declaration
49 \*---------------------------------------------------------------------------*/
50 
51 class none
52 :
53  public fvMeshDistributor
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  //- Disallow default bitwise copy construction
67  none(const none&) = delete;
68 
69 
70  //- Destructor
71  ~none();
72 
73 
74  // Member Functions
75 
76  //- The mesh is static and does not change so return false
77  virtual bool dynamic() const
78  {
79  return false;
80  }
81 
82  //- Dummy update function which does not change the mesh
83  virtual bool update();
84 
85  //- Update corresponding to the given map
86  virtual void topoChange(const polyTopoChangeMap&)
87  {}
88 
89  //- Update from another mesh using the given map
90  virtual void mapMesh(const polyMeshMap&)
91  {}
92 
93  //- Update corresponding to the given distribution map
94  virtual void distribute(const polyDistributionMap&)
95  {}
96 
97 
98  // Member Operators
99 
100  //- Disallow default bitwise assignment
101  void operator=(const none&) = delete;
102 };
103 
104 
105 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
106 
107 } // End namespace fvMeshDistributors
108 } // End namespace Foam
109 
110 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
111 
112 #endif
113 
114 // ************************************************************************* //
Abstract base class for fvMesh movers.
fvMesh & mesh()
Return the fvMesh.
Dummy fvMeshDistributor 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.