displacementMeshMoverMotionSolver.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) 2013-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::displacementMeshMoverMotionSolver
26 
27 Description
28  Mesh motion solver for an fvMesh. Based on solving the cell-centre
29  Laplacian for the motion displacement.
30 
31 SourceFiles
32  displacementMeshMoverMotionSolver.C
33 
34 \*---------------------------------------------------------------------------*/
35 
36 #ifndef displacementMeshMoverMotionSolver_H
37 #define displacementMeshMoverMotionSolver_H
38 
41 
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 
44 namespace Foam
45 {
46 
47 /*---------------------------------------------------------------------------*\
48  Class displacementMeshMoverMotionSolver Declaration
49 \*---------------------------------------------------------------------------*/
50 
52 :
54 {
55  // Private Data
56 
57  mutable autoPtr<externalDisplacementMeshMover> meshMoverPtr_;
58 
59 
60 public:
61 
62  //- Runtime type information
63  TypeName("displacementMeshMover");
64 
65 
66  // Constructors
67 
68  //- Construct from polyMesh and dictionary
70  (
71  const word& name,
72  const polyMesh&,
73  const dictionary&
74  );
75 
76  //- Disallow default bitwise copy construction
78  (
80  ) = delete;
81 
82 
83  //- Destructor
85 
86 
87  // Member Functions
88 
90 
91  //- Return point location obtained from the current motion field
92  virtual tmp<pointField> curPoints() const;
93 
94  //- Solve for motion
95  virtual void solve();
96 
97  //- Update local data for geometry changes
98  virtual void movePoints(const pointField&);
99 
100  //- Update topology
101  virtual void topoChange(const polyTopoChangeMap&);
102 
103 
104  // Member Operators
105 
106  //- Disallow default bitwise assignment
107  void operator=(const displacementMeshMoverMotionSolver&) = delete;
108 };
109 
110 
111 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
112 
113 } // End namespace Foam
114 
115 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
116 
117 #endif
118 
119 // ************************************************************************* //
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
Mesh motion solver for an fvMesh. Based on solving the cell-centre Laplacian for the motion displacem...
virtual tmp< pointField > curPoints() const
Return point location obtained from the current motion field.
virtual void topoChange(const polyTopoChangeMap &)
Update topology.
displacementMeshMoverMotionSolver(const word &name, const polyMesh &, const dictionary &)
Construct from polyMesh and dictionary.
externalDisplacementMeshMover & meshMover() const
TypeName("displacementMeshMover")
Runtime type information.
virtual void movePoints(const pointField &)
Update local data for geometry changes.
void operator=(const displacementMeshMoverMotionSolver &)=delete
Disallow default bitwise assignment.
Virtual base class for displacement motion solver.
Virtual base class for mesh movers with externally provided displacement field giving the boundary co...
const word & name() const
Return name.
Definition: motionSolver.H:125
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
A class for handling words, derived from string.
Definition: word.H:62
Namespace for OpenFOAM.