velocityComponentLaplacian_fvMotionSolver.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) 2011-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::fvMotionSolvers::velocityComponentLaplacian
26 
27 Description
28  Mesh motion solver for an fvMesh. Based on solving the cell-centre
29  Laplacian for the given component of the motion velocity.
30 
31 SourceFiles
32  velocityComponentLaplacian_fvMotionSolver.C
33 
34 \*---------------------------------------------------------------------------*/
35 
36 #ifndef velocityComponentLaplacian_fvMotionSolver_H
37 #define velocityComponentLaplacian_fvMotionSolver_H
38 
40 #include "fvMotionSolver.H"
41 
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 
44 namespace Foam
45 {
46 
47 // Forward class declarations
48 class motionDiffusivity;
49 
50 namespace fvMotionSolvers
51 {
52 
53 /*---------------------------------------------------------------------------*\
54  Class velocityComponentLaplacian Declaration
55 \*---------------------------------------------------------------------------*/
56 
58 :
59  public fvMotionSolver,
61 {
62  // Private Data
63 
64  //- Cell-centre motion field
65  mutable volScalarField cellMotionU_;
66 
67  //- Diffusivity type and data stream
68  ITstream diffusivityType_;
69 
70  //- Diffusivity used to control the motion
71  autoPtr<motionDiffusivity> diffusivityPtr_;
72 
73 
74 public:
75 
76  //- Runtime type information
77  TypeName("velocityComponentLaplacian");
78 
79 
80  // Constructors
81 
82  //- Construct from fvMesh and dictionary
84 
85  //- Construct from polyMesh and dictionary
87 
88  //- Disallow default bitwise copy construction
90  (
92  ) = delete;
93 
94 
95  //- Destructor
97 
98 
99  // Member Functions
100 
101  //- Non-const access to the cellMotionU in order to allow changes
102  // to the boundary motion
104  {
105  return cellMotionU_;
106  }
107 
108  //- Return point location obtained from the current motion field
109  virtual tmp<pointField> newPoints();
110 
111  //- Update corresponding to the given map
112  virtual void topoChange(const polyTopoChangeMap&);
113 
114  //- Update from another mesh using the given map
115  virtual void mapMesh(const polyMeshMap&);
116 
117 
118  // Member Operators
119 
120  //- Disallow default bitwise assignment
121  void operator=
122  (
124  ) = delete;
125 };
126 
127 
128 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
129 
130 } // End namespace fvMotionSolvers
131 } // End namespace Foam
132 
133 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
134 
135 #endif
136 
137 // ************************************************************************* //
Generic GeometricField class.
Input token stream.
Definition: ITstream.H:56
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: autoPtr.H:51
A list of keywords followed by any number of values (e.g. words and numbers) or sub-dictionaries.
Definition: dictionary.H:162
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:98
Base class for fvMesh motion solvers.
Mesh motion solver for an fvMesh. Based on solving the cell-centre Laplacian for the given component ...
velocityComponentLaplacian(fvMesh &, const dictionary &)
Construct from fvMesh and dictionary.
virtual void topoChange(const polyTopoChangeMap &)
Update corresponding to the given map.
virtual tmp< pointField > newPoints()
Return point location obtained from the current motion field.
volScalarField & cellMotionU()
Non-const access to the cellMotionU in order to allow changes.
virtual void mapMesh(const polyMeshMap &)
Update from another mesh using the given map.
TypeName("velocityComponentLaplacian")
Runtime type information.
Abstract base class for velocity pointMesh movers.
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 managing temporary objects.
Definition: tmp.H:55
Namespace for OpenFOAM.