velocityComponent_pointMeshMover.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) 2012-2026 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::pointMeshMovers::velocityComponent
26 
27 Description
28  Abstract base class for velocity pointMesh movers.
29 
30  The boundary displacement is set as a boundary condition
31  on the pointMotionUX pointScalarField.
32 
33 SourceFiles
34  velocityComponent.C
35 
36 \*---------------------------------------------------------------------------*/
37 
38 #ifndef velocityComponent_pointMeshMover_H
39 #define velocityComponent_pointMeshMover_H
40 
41 #include "pointMeshMover.H"
42 #include "pointFields.H"
43 
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 
46 namespace Foam
47 {
48 namespace pointMeshMovers
49 {
50 
51 /*---------------------------------------------------------------------------*\
52  Class velocityComponent Declaration
53 \*---------------------------------------------------------------------------*/
54 
56 :
57  public pointMeshMover
58 {
59 protected:
60 
61  // Protected data
62 
63  //- The component name to solve for
65 
66  //- The component to solve for
68 
69  //- Point motion field
71 
72 
73 private:
74 
75  // Private Member Functions
76 
77  //- Return the component corresponding to the given component name
78  direction cmpt(const word& cmptName) const;
79 
80 
81 public:
82 
83  //- Runtime type information
84  TypeName("velocityComponent");
85 
86 
87  // Constructors
88 
89  //- Construct from mesh and dictionary
91  (
92  const polyMesh&,
93  const dictionary&,
94  const word& type
95  );
96 
97  //- Disallow default bitwise copy construction
99  (
100  const velocityComponent&
101  ) = delete;
102 
103 
104  //- Destructor
105  virtual ~velocityComponent();
106 
107 
108  // Member Functions
109 
110  //- Non-const access to the pointMotionU in order to allow changes
111  // to the boundary motion
113  {
114  return pointMotionU_;
115  }
116 
117  //- Update local data for geometry changes
118  virtual void movePoints(const pointField&);
119 
120  //- Update local data for topology changes
121  virtual void topoChange(const polyTopoChangeMap&);
122 
123  //- Update from another mesh using the given map
124  virtual void mapMesh(const polyMeshMap&);
125 
126  //- Update corresponding to the given distribution map
127  virtual void distribute(const polyDistributionMap&);
128 
129 
130  // Member Operators
131 
132  //- Disallow default bitwise assignment
133  void operator=(const velocityComponent&) = delete;
134 };
135 
136 
137 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
138 
139 } // End namespace pointMeshMovers
140 } // End namespace Foam
141 
142 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
143 
144 #endif
145 
146 // ************************************************************************* //
A list of keywords followed by any number of values (e.g. words and numbers) or sub-dictionaries.
Definition: dictionary.H:162
Abstract base class for pointMesh movers.
Abstract base class for velocity pointMesh movers.
pointScalarField & pointMotionU()
Non-const access to the pointMotionU in order to allow changes.
virtual void topoChange(const polyTopoChangeMap &)
Update local data for topology changes.
virtual void distribute(const polyDistributionMap &)
Update corresponding to the given distribution map.
virtual void mapMesh(const polyMeshMap &)
Update from another mesh using the given map.
virtual void movePoints(const pointField &)
Update local data for geometry changes.
TypeName("velocityComponent")
Runtime type information.
velocityComponent(const polyMesh &, const dictionary &, const word &type)
Construct from mesh and dictionary.
void operator=(const velocityComponent &)=delete
Disallow default bitwise assignment.
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
Mesh consisting of general polyhedral cells.
Definition: polyMesh.H:78
Class containing mesh-to-mesh mapping information after a change in polyMesh topology.
A class for handling words, derived from string.
Definition: word.H:63
Namespace for OpenFOAM.
uint8_t direction
Definition: direction.H:45
fileType type(const fileName &, const bool checkVariants=true, const bool followLink=true)
Return the file type: directory or file.
Definition: POSIX.C:488