displacementLaplacianFvMotionSolver.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | Copyright (C) 2011-2015 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::displacementLaplacianFvMotionSolver
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  displacementLaplacianFvMotionSolver.C
33 
34 \*---------------------------------------------------------------------------*/
35 
36 #ifndef displacementLaplacianFvMotionSolver_H
37 #define displacementLaplacianFvMotionSolver_H
38 
40 #include "fvMotionSolverCore.H"
41 
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 
44 namespace Foam
45 {
46 
47 // Forward class declarations
48 class motionInterpolation;
49 class motionDiffusivity;
50 
51 /*---------------------------------------------------------------------------*\
52  Class displacementLaplacianFvMotionSolver Declaration
53 \*---------------------------------------------------------------------------*/
54 
56 :
58  public fvMotionSolverCore
59 {
60  // Private data
61 
62  //- Cell-centre motion field
64 
65  //- Optionally read point-position field. Used only for position
66  // boundary conditions.
68 
69  //- Interpolation used to transfer cell displacement to the points
71 
72  //- Diffusivity used to control the motion
74 
75  //- Frozen points (that are not on patches). -1 or points that are
76  // fixed to be at points0_ location
78 
79 
80  // Private Member Functions
81 
82  //- Disallow default bitwise copy construct
84  (
86  );
87 
88  //- Disallow default bitwise assignment
90 
91 
92 public:
93 
94  //- Runtime type information
95  TypeName("displacementLaplacian");
96 
97 
98  // Constructors
99 
100  //- Construct from polyMesh and IOdictionary
102  (
103  const polyMesh&,
104  const IOdictionary&
105  );
106 
107  //- Construct from components
109  (
110  const polyMesh& mesh,
111  const IOdictionary& dict,
113  const pointIOField& points0
114  );
115 
116 
117  //- Destructor
119 
120 
121  // Member Functions
122 
123  //- Return reference to the cell motion displacement field
125  {
126  return cellDisplacement_;
127  }
128 
129  //- Return const reference to the cell motion displacement field
130  const volVectorField& cellDisplacement() const
131  {
132  return cellDisplacement_;
133  }
134 
135  //- Return reference to the diffusivity field
137 
138  //- Return point location obtained from the current motion field
139  virtual tmp<pointField> curPoints() const;
140 
141  //- Solve for motion
142  virtual void solve();
143 
144  //- Update topology
145  virtual void updateMesh(const mapPolyMesh&);
146 };
147 
148 
149 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
150 
151 } // End namespace Foam
152 
153 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
154 
155 #endif
156 
157 // ************************************************************************* //
Foam::displacementLaplacianFvMotionSolver::~displacementLaplacianFvMotionSolver
~displacementLaplacianFvMotionSolver()
Destructor.
Definition: displacementLaplacianFvMotionSolver.C:239
Foam::IOdictionary
IOdictionary is derived from dictionary and IOobject to give the dictionary automatic IO functionalit...
Definition: IOdictionary.H:53
Foam::IOField< vector >
Foam::displacementLaplacianFvMotionSolver::cellDisplacement_
volVectorField cellDisplacement_
Cell-centre motion field.
Definition: displacementLaplacianFvMotionSolver.H:62
Foam::displacementLaplacianFvMotionSolver::solve
virtual void solve()
Solve for motion.
Definition: displacementLaplacianFvMotionSolver.C:325
Foam::displacementMotionSolver::pointDisplacement
pointVectorField & pointDisplacement()
Return reference to the point motion displacement field.
Definition: displacementMotionSolver.H:163
Foam::tmp
A class for managing temporary objects.
Definition: PtrList.H:118
Foam::motionDiffusivity
Abstract base class for cell-centre mesh motion diffusivity.
Definition: motionDiffusivity.H:49
Foam::displacementLaplacianFvMotionSolver::frozenPointsZone_
label frozenPointsZone_
Frozen points (that are not on patches). -1 or points that are.
Definition: displacementLaplacianFvMotionSolver.H:76
Foam::displacementLaplacianFvMotionSolver::displacementLaplacianFvMotionSolver
displacementLaplacianFvMotionSolver(const displacementLaplacianFvMotionSolver &)
Disallow default bitwise copy construct.
Foam::displacementLaplacianFvMotionSolver::interpolationPtr_
autoPtr< motionInterpolation > interpolationPtr_
Interpolation used to transfer cell displacement to the points.
Definition: displacementLaplacianFvMotionSolver.H:69
Foam::fvMotionSolverCore::mesh
const fvMesh & mesh() const
Return reference to the fvMesh to be moved.
Definition: fvMotionSolverCore.H:84
Foam::displacementLaplacianFvMotionSolver::updateMesh
virtual void updateMesh(const mapPolyMesh &)
Update topology.
Definition: displacementLaplacianFvMotionSolver.C:347
Foam::displacementLaplacianFvMotionSolver::diffusivity
motionDiffusivity & diffusivity()
Return reference to the diffusivity field.
Definition: displacementLaplacianFvMotionSolver.C:246
Foam::displacementLaplacianFvMotionSolver::diffusivityPtr_
autoPtr< motionDiffusivity > diffusivityPtr_
Diffusivity used to control the motion.
Definition: displacementLaplacianFvMotionSolver.H:72
Foam::polyMesh
Mesh consisting of general polyhedral cells.
Definition: polyMesh.H:74
Foam::label
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
Foam::fvMotionSolverCore
Base class for fvMesh based motionSolvers.
Definition: fvMotionSolverCore.H:48
Foam::displacementLaplacianFvMotionSolver::TypeName
TypeName("displacementLaplacian")
Runtime type information.
dict
dictionary dict
Definition: searchingEngine.H:14
Foam::displacementMotionSolver
Virtual base class for displacement motion solver.
Definition: displacementMotionSolver.H:55
Foam
Namespace for OpenFOAM.
Definition: combustionModel.C:30
displacementMotionSolver.H
Foam::displacementLaplacianFvMotionSolver::curPoints
virtual tmp< pointField > curPoints() const
Return point location obtained from the current motion field.
Definition: displacementLaplacianFvMotionSolver.C:261
Foam::displacementMotionSolver::points0
pointField & points0()
Return reference to the reference field.
Definition: displacementMotionSolver.H:151
Foam::autoPtr
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: PtrList.H:117
Foam::displacementLaplacianFvMotionSolver::cellDisplacement
volVectorField & cellDisplacement()
Return reference to the cell motion displacement field.
Definition: displacementLaplacianFvMotionSolver.H:123
Foam::displacementLaplacianFvMotionSolver::operator=
void operator=(const displacementLaplacianFvMotionSolver &)
Disallow default bitwise assignment.
fvMotionSolverCore.H
Foam::displacementLaplacianFvMotionSolver
Mesh motion solver for an fvMesh. Based on solving the cell-centre Laplacian for the motion displacem...
Definition: displacementLaplacianFvMotionSolver.H:54
Foam::mapPolyMesh
Class containing mesh-to-mesh mapping information after a change in polyMesh topology.
Definition: mapPolyMesh.H:158
Foam::GeometricField
Generic GeometricField class.
Definition: surfaceFieldsFwd.H:52
Foam::displacementLaplacianFvMotionSolver::pointLocation_
autoPtr< pointVectorField > pointLocation_
Optionally read point-position field. Used only for position.
Definition: displacementLaplacianFvMotionSolver.H:66
Foam::displacementLaplacianFvMotionSolver::cellDisplacement
const volVectorField & cellDisplacement() const
Return const reference to the cell motion displacement field.
Definition: displacementLaplacianFvMotionSolver.H:129