points0MotionSolver.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) 2016-2019 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::points0MotionSolver
26 
27 Description
28  Virtual base class for displacement motion solvers.
29 
30 SourceFiles
31  points0MotionSolver.C
32 
33 \*---------------------------------------------------------------------------*/
34 
35 #ifndef points0MotionSolver_H
36 #define points0MotionSolver_H
37 
38 #include "motionSolver.H"
39 #include "pointFields.H"
40 #include "pointIOField.H"
41 
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 
44 namespace Foam
45 {
46 
47 class mapPolyMesh;
48 
49 /*---------------------------------------------------------------------------*\
50  Class points0MotionSolver Declaration
51 \*---------------------------------------------------------------------------*/
52 
54 :
55  public motionSolver
56 {
57 protected:
58 
59  // Protected data
60 
61  //- Starting points
63 
64 
65 public:
66 
67  //- Runtime type information
68  TypeName("points0MotionSolver");
69 
70 
71  // Constructors
72 
73  //- Construct from mesh and dictionary
75  (
76  const polyMesh&,
77  const dictionary&,
78  const word& type
79  );
80 
81  //- Disallow default bitwise copy construction
83 
84 
85  //- Destructor
86  virtual ~points0MotionSolver();
87 
88 
89  // Member Functions
90 
91  //- Return reference to the reference field
93  {
94  return points0_;
95  }
96 
97  //- Return reference to the reference field
98  const pointField& points0() const
99  {
100  return points0_;
101  }
102 
103  //- Update local data for geometry changes
104  virtual void movePoints(const pointField&);
105 
106  //- Update local data for topology changes
107  virtual void updateMesh(const mapPolyMesh&);
108 
109 
110  // Member Operators
111 
112  //- Disallow default bitwise assignment
113  void operator=(const points0MotionSolver&) = delete;
114 };
115 
116 
117 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
118 
119 } // End namespace Foam
120 
121 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
122 
123 #endif
124 
125 // ************************************************************************* //
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:158
Virtual base class for mesh motion solver.
Definition: motionSolver.H:55
void operator=(const points0MotionSolver &)=delete
Disallow default bitwise assignment.
Class containing mesh-to-mesh mapping information after a change in polyMesh topology.
Definition: mapPolyMesh.H:158
points0MotionSolver(const polyMesh &, const dictionary &, const word &type)
Construct from mesh and dictionary.
A class for handling words, derived from string.
Definition: word.H:59
virtual void movePoints(const pointField &)
Update local data for geometry changes.
virtual void updateMesh(const mapPolyMesh &)
Update local data for topology changes.
Virtual base class for displacement motion solvers.
pointIOField points0_
Starting points.
fileType type(const fileName &, const bool checkVariants=true, const bool followLink=true)
Return the file type: directory or file.
Definition: POSIX.C:488
virtual ~points0MotionSolver()
Destructor.
Mesh consisting of general polyhedral cells.
Definition: polyMesh.H:74
pointField & points0()
Return reference to the reference field.
TypeName("points0MotionSolver")
Runtime type information.
A primitive field of type <T> with automated input and output.
Definition: IOField.H:50
Namespace for OpenFOAM.