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-2018 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  // Private Member Functions
61 
62  //- Disallow default bitwise copy construct
64  (
66  );
67 
68  //- Disallow default bitwise assignment
69  void operator=(const displacementMeshMoverMotionSolver&);
70 
71 
72 public:
73 
74  //- Runtime type information
75  TypeName("displacementMeshMover");
76 
77 
78  // Constructors
79 
80  //- Construct from polyMesh and IOdictionary
82 
83 
84  //- Destructor
86 
87 
88  // Member Functions
89 
91 
92  //- Return point location obtained from the current motion field
93  virtual tmp<pointField> curPoints() const;
94 
95  //- Solve for motion
96  virtual void solve();
97 
98  //- Update local data for geometry changes
99  virtual void movePoints(const pointField&);
100 
101  //- Update topology
102  virtual void updateMesh(const mapPolyMesh&);
103 };
104 
105 
106 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
107 
108 } // End namespace Foam
109 
110 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
111 
112 #endif
113 
114 // ************************************************************************* //
Virtual base class for displacement motion solver.
virtual void updateMesh(const mapPolyMesh &)
Update topology.
TypeName("displacementMeshMover")
Runtime type information.
Class containing mesh-to-mesh mapping information after a change in polyMesh topology.
Definition: mapPolyMesh.H:158
IOdictionary is derived from dictionary and IOobject to give the dictionary automatic IO functionalit...
Definition: IOdictionary.H:52
virtual tmp< pointField > curPoints() const
Return point location obtained from the current motion field.
externalDisplacementMeshMover & meshMover() const
virtual void movePoints(const pointField &)
Update local data for geometry changes.
Virtual base class for mesh movers with externally provided displacement field giving the boundary co...
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: PtrList.H:52
Mesh consisting of general polyhedral cells.
Definition: polyMesh.H:74
A class for managing temporary objects.
Definition: PtrList.H:53
Mesh motion solver for an fvMesh. Based on solving the cell-centre Laplacian for the motion displacem...
Namespace for OpenFOAM.