displacementComponentLaplacianFvMotionSolver.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-2024 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::displacementComponentLaplacianFvMotionSolver
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 displacement.
30 
31 SourceFiles
32  displacementComponentLaplacianFvMotionSolver.C
33 
34 \*---------------------------------------------------------------------------*/
35 
36 #ifndef displacementComponentLaplacianFvMotionSolver_H
37 #define displacementComponentLaplacianFvMotionSolver_H
38 
40 #include "fvMotionSolver.H"
41 
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 
44 namespace Foam
45 {
46 
47 // Forward class declarations
48 class motionDiffusivity;
49 
50 /*---------------------------------------------------------------------------*\
51  Class displacementComponentLaplacianFvMotionSolver Declaration
52 \*---------------------------------------------------------------------------*/
53 
55 :
57  public fvMotionSolver
58 {
59  // Private Data
60 
61  //- Cell-centre motion field
62  mutable volScalarField cellDisplacement_;
63 
64  //- Optionally read point-position field. Used only for position
65  // boundary conditions.
66  mutable autoPtr<pointVectorField> pointLocation_;
67 
68  //- Diffusivity type and data stream
69  ITstream diffusivityType_;
70 
71  //- Diffusivity used to control the motion
72  autoPtr<motionDiffusivity> diffusivityPtr_;
73 
74  //- Frozen points (that are not on patches). -1 or points that are
75  // fixed to be at points0_ location
76  label frozenPointsZone_;
77 
78 
79  // Private Member Functions
80 
81  //- Return the component corresponding to the given component name
82  direction cmpt(const word& cmptName) const;
83 
84 
85 public:
86 
87  //- Runtime type information
88  TypeName("displacementComponentLaplacian");
89 
90 
91  // Constructors
92 
93  //- Construct from polyMesh and dictionary
95  (
96  const word& name,
97  const polyMesh&,
98  const dictionary&
99  );
100 
101  //- Disallow default bitwise copy construction
103  (
105  ) = delete;
106 
107 
108  //- Destructor
110 
111 
112  // Member Functions
113 
114  //- Non-const access to the cellDisplacement in order to allow
115  // changes to the boundary motion
117  {
118  return cellDisplacement_;
119  }
120 
121  //- Return point location obtained from the current motion field
122  virtual tmp<pointField> curPoints() const;
123 
124  //- Solve for motion
125  virtual void solve();
126 
127  //- Update corresponding to the given map
128  virtual void topoChange(const polyTopoChangeMap&);
129 
130  //- Update from another mesh using the given map
131  virtual void mapMesh(const polyMeshMap&);
132 
133 
134  // Member Operators
135 
136  //- Disallow default bitwise assignment
137  void operator=
138  (
140  ) = delete;
141 };
142 
143 
144 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
145 
146 } // End namespace Foam
147 
148 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
149 
150 #endif
151 
152 // ************************************************************************* //
Generic GeometricField class.
Input token stream.
Definition: ITstream.H:53
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: autoPtr.H:51
Virtual base class for displacement motion solver.
A list of keywords followed by any number of values (e.g. words and numbers) or sub-dictionaries.
Definition: dictionary.H:162
Mesh motion solver for an fvMesh. Based on solving the cell-centre Laplacian for the given component ...
virtual tmp< pointField > curPoints() const
Return point location obtained from the current motion field.
virtual void topoChange(const polyTopoChangeMap &)
Update corresponding to the given map.
displacementComponentLaplacianFvMotionSolver(const word &name, const polyMesh &, const dictionary &)
Construct from polyMesh and dictionary.
virtual void mapMesh(const polyMeshMap &)
Update from another mesh using the given map.
volScalarField & cellDisplacement()
Non-const access to the cellDisplacement in order to allow.
TypeName("displacementComponentLaplacian")
Runtime type information.
Base class for fvMesh based motionSolvers.
const word & name() const
Return name.
Definition: motionSolver.H:121
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
A class for handling words, derived from string.
Definition: word.H:62
Namespace for OpenFOAM.
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
Definition: label.H:59
uint8_t direction
Definition: direction.H:45