velocityLaplacianFvMotionSolver.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-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::velocityLaplacianFvMotionSolver
26 
27 Description
28  Mesh motion solver for an fvMesh. Based on solving the cell-centre
29  Laplacian for the motion velocity.
30 
31 SourceFiles
32  velocityLaplacianFvMotionSolver.C
33 
34 \*---------------------------------------------------------------------------*/
35 
36 #ifndef velocityLaplacianFvMotionSolver_H
37 #define velocityLaplacianFvMotionSolver_H
38 
39 #include "velocityMotionSolver.H"
40 #include "fvMotionSolver.H"
41 
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 
44 namespace Foam
45 {
46 
47 // Forward class declarations
48 class motionDiffusivity;
49 
50 /*---------------------------------------------------------------------------*\
51  Class velocityLaplacianFvMotionSolver Declaration
52 \*---------------------------------------------------------------------------*/
53 
55 :
56  public velocityMotionSolver,
57  public fvMotionSolver
58 {
59  // Private Data
60 
61  //- Cell-centre motion field
62  mutable volVectorField cellMotionU_;
63 
64  //- Diffusivity used to control the motion
65  autoPtr<motionDiffusivity> diffusivityPtr_;
66 
67 
68 public:
69 
70  //- Runtime type information
71  TypeName("velocityLaplacian");
72 
73 
74  // Constructors
75 
76  //- Construct from polyMesh and dictionary
78  (
79  const word& name,
80  const polyMesh&,
81  const dictionary&
82  );
83 
84  //- Disallow default bitwise copy construction
86  (
88  ) = delete;
89 
90 
91  //- Destructor
93 
94 
95  // Member Functions
96 
97  //- Return reference to the cell motion velocity field
99  {
100  return cellMotionU_;
101  }
102 
103  //- Return const reference to the cell motion velocity field
104  const volVectorField& cellMotionU() const
105  {
106  return cellMotionU_;
107  }
108 
109  //- Return point location obtained from the current motion field
110  virtual tmp<pointField> curPoints() const;
111 
112  //- Solve for motion
113  virtual void solve();
114 
115  //- Update corresponding to the given map
116  virtual void topoChange(const polyTopoChangeMap&);
117 
118  //- Update from another mesh using the given map
119  virtual void mapMesh(const polyMeshMap&);
120 
121 
122  // Member Operators
123 
124  //- Disallow default bitwise assignment
125  void operator=(const velocityLaplacianFvMotionSolver&) = delete;
126 };
127 
128 
129 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
130 
131 } // End namespace Foam
132 
133 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
134 
135 #endif
136 
137 // ************************************************************************* //
Generic GeometricField class.
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 keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:160
Base class for fvMesh based motionSolvers.
const word & name() const
Return name.
Definition: motionSolver.H:125
Class containing mesh-to-mesh mapping information.
Definition: polyMeshMap.H:51
Mesh consisting of general polyhedral cells.
Definition: polyMesh.H:80
Class containing mesh-to-mesh mapping information after a change in polyMesh topology.
A class for managing temporary objects.
Definition: tmp.H:55
Mesh motion solver for an fvMesh. Based on solving the cell-centre Laplacian for the motion velocity.
velocityLaplacianFvMotionSolver(const word &name, const polyMesh &, const dictionary &)
Construct from polyMesh and dictionary.
virtual tmp< pointField > curPoints() const
Return point location obtained from the current motion field.
TypeName("velocityLaplacian")
Runtime type information.
virtual void topoChange(const polyTopoChangeMap &)
Update corresponding to the given map.
void operator=(const velocityLaplacianFvMotionSolver &)=delete
Disallow default bitwise assignment.
virtual void mapMesh(const polyMeshMap &)
Update from another mesh using the given map.
volVectorField & cellMotionU()
Return reference to the cell motion velocity field.
Virtual base class for velocity motion solver.
A class for handling words, derived from string.
Definition: word.H:62
Namespace for OpenFOAM.