displacementSBRStressFvMotionSolver.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-2014 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::displacementSBRStressFvMotionSolver
26 
27 Description
28  Mesh motion solver for an fvMesh. Based on solving the cell-centre
29  solid-body rotation stress equations for the motion displacement.
30 
31 SourceFiles
32  displacementSBRStressFvMotionSolver.C
33 
34 \*---------------------------------------------------------------------------*/
35 
36 #ifndef displacementSBRStressFvMotionSolver_H
37 #define displacementSBRStressFvMotionSolver_H
38 
40 #include "fvMotionSolverCore.H"
41 
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 
44 namespace Foam
45 {
46 
47 // Forward class declarations
48 class motionDiffusivity;
49 
50 /*---------------------------------------------------------------------------*\
51  Class displacementSBRStressFvMotionSolver Declaration
52 \*---------------------------------------------------------------------------*/
53 
55 :
57  public fvMotionSolverCore
58 {
59  // Private data
60 
61  //- Cell-centre motion field
62  mutable volVectorField cellDisplacement_;
63 
64  //- Diffusivity used to control the motion
65  autoPtr<motionDiffusivity> diffusivityPtr_;
66 
67 
68  // Private Member Functions
69 
70  //- Disallow default bitwise copy construct
72  (
74  );
75 
76  //- Disallow default bitwise assignment
77  void operator=(const displacementSBRStressFvMotionSolver&);
78 
79 
80 public:
81 
82  //- Runtime type information
83  TypeName("displacementSBRStress");
84 
85 
86  // Constructors
87 
88  //- Construct from polyMesh and IOdictionary
90  (
91  const polyMesh&,
92  const IOdictionary&
93  );
94 
95 
96  //- Destructor
98 
99 
100  // Member Functions
101 
102  //- Return reference to the cell motion displacement field
104  {
105  return cellDisplacement_;
106  }
107 
108  //- Return const reference to the cell motion displacement field
109  const volVectorField& cellDisplacement() const
110  {
111  return cellDisplacement_;
112  }
113 
114  //- Return diffusivity
116  {
117  return diffusivityPtr_();
118  }
119 
120  //- Return point location obtained from the current motion field
121  virtual tmp<pointField> curPoints() const;
122 
123  //- Solve for motion
124  virtual void solve();
125 
126  //- Update topology
127  virtual void updateMesh(const mapPolyMesh&);
128 };
129 
130 
131 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
132 
133 } // End namespace Foam
134 
135 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
136 
137 #endif
138 
139 // ************************************************************************* //
motionDiffusivity & diffusivity()
Return diffusivity.
virtual void updateMesh(const mapPolyMesh &)
Update topology.
Virtual base class for displacement motion solver.
virtual tmp< pointField > curPoints() const
Return point location obtained from the current motion field.
volVectorField & cellDisplacement()
Return reference to the cell motion displacement field.
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:53
Base class for fvMesh based motionSolvers.
Abstract base class for cell-centre mesh motion diffusivity.
Mesh motion solver for an fvMesh. Based on solving the cell-centre solid-body rotation stress equatio...
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: PtrList.H:53
Mesh consisting of general polyhedral cells.
Definition: polyMesh.H:74
A class for managing temporary objects.
Definition: PtrList.H:54
TypeName("displacementSBRStress")
Runtime type information.
Namespace for OpenFOAM.