fvMeshMoversNone.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-2023 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::fvMeshMovers::none
26 
27 Description
28  Dummy fvMeshMover which does not move the mesh points
29 
30 SourceFiles
31  none.C
32 
33 \*---------------------------------------------------------------------------*/
34 
35 #ifndef fvMeshMoversNone_H
36 #define fvMeshMoversNone_H
37 
38 #include "fvMeshMover.H"
39 
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
41 
42 namespace Foam
43 {
44 namespace fvMeshMovers
45 {
46 
47 /*---------------------------------------------------------------------------*\
48  Class fvMeshMovers::none Declaration
49 \*---------------------------------------------------------------------------*/
50 
51 class none
52 :
53  public fvMeshMover
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  virtual ~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  //- The mesh is static, which meets the criteria of a solid body motion
83  virtual bool solidBody() const
84  {
85  return true;
86  }
87 
88  //- Dummy update function which does not change the mesh
89  virtual bool update();
90 
91  //- Update local data for topology changes
92  virtual void topoChange(const polyTopoChangeMap&)
93  {}
94 
95  //- Update from another mesh using the given map
96  virtual void mapMesh(const polyMeshMap&)
97  {}
98 
99  //- Update corresponding to the given distribution map
100  virtual void distribute(const polyDistributionMap&)
101  {}
102 
103 
104  // Member Operators
105 
106  //- Disallow default bitwise assignment
107  void operator=(const none&) = delete;
108 };
109 
110 
111 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
112 
113 } // End namespace fvMeshMovers
114 } // End namespace Foam
115 
116 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
117 
118 #endif
119 
120 // ************************************************************************* //
Abstract base class for fvMesh movers.
Definition: fvMeshMover.H:53
fvMesh & mesh()
Return the fvMesh.
Definition: fvMeshMover.H:132
Dummy fvMeshMover 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 local data for topology changes.
TypeName("none")
Runtime type information.
none(fvMesh &mesh)
Construct from fvMesh.
virtual bool solidBody() const
The mesh is static, which meets the criteria of a solid body motion.
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.
virtual ~none()
Destructor.
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.