motionSmoother.C
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) 2013 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 \*---------------------------------------------------------------------------*/
25 
26 #include "motionSmoother.H"
27 
28 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
29 
30 namespace Foam
31 {
32  defineTypeNameAndDebug(motionSmoother, 0);
33 }
34 
35 
36 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
37 
39 (
40  polyMesh& mesh,
41  pointMesh& pMesh,
43  const labelList& adaptPatchIDs,
44  const dictionary& paramDict
45 )
46 :
47  motionSmootherData(pMesh),
49  (
50  mesh,
51  pMesh,
52  pp,
56  adaptPatchIDs,
57  paramDict
58  )
59 {}
60 
61 
63 (
64  polyMesh& mesh,
66  const labelList& adaptPatchIDs,
67  const pointVectorField& displacement,
68  const dictionary& paramDict
69 )
70 :
71  motionSmootherData(displacement),
73  (
74  mesh,
75  const_cast<pointMesh&>(displacement.mesh()),
76  pp,
80  adaptPatchIDs,
81  paramDict
82  )
83 {}
84 
85 
86 // ************************************************************************* //
pointVectorField displacement_
Displacement field.
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
motionSmoother(polyMesh &, pointMesh &, indirectPrimitivePatch &pp, const labelList &adaptPatchIDs, const dictionary &paramDict)
Construct from mesh, patches to work on and smoothing parameters.
Mesh representing a set of points created from polyMesh.
Definition: pointMesh.H:48
A list of faces which address into the list of points.
pointScalarField scale_
Scale factor for displacement.
pointField oldPoints_
Starting mesh position.
const Mesh & mesh() const
Return mesh.
defineTypeNameAndDebug(combustionModel, 0)
Mesh consisting of general polyhedral cells.
Definition: polyMesh.H:74
Given a displacement moves the mesh by scaling the displacement back until there are no more mesh err...
Namespace for OpenFOAM.