equipotentialPointSmoother.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 | www.openfoam.com
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8  Copyright (C) 2024 OpenCFD Ltd.
9 -------------------------------------------------------------------------------
10 License
11  This file is part of OpenFOAM.
12 
13  OpenFOAM is free software: you can redistribute it and/or modify it
14  under the terms of the GNU General Public License as published by
15  the Free Software Foundation, either version 3 of the License, or
16  (at your option) any later version.
17 
18  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
19  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21  for more details.
22 
23  You should have received a copy of the GNU General Public License
24  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25 
26 Class
27  Foam::equipotentialPointSmoother
28 
29 Description
30  Equipotential point smoothing. Points are moved towards the centroid of the
31  surrounding cell volumes. This method tends to equilise cell volumes, and
32  can generate distorted cells around refinement patterns.
33 
34 SourceFiles
35  equipotentialPointSmoother.C
36 
37 \*---------------------------------------------------------------------------*/
38 
39 #ifndef equipotentialPointSmoother_H
40 #define equipotentialPointSmoother_H
41 
42 #include "pointSmoother.H"
43 
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 
46 namespace Foam
47 {
48 namespace pointSmoothers
49 {
50 
51 /*---------------------------------------------------------------------------*\
52  Class equipotentialPointSmoother Declaration
53 \*---------------------------------------------------------------------------*/
54 
56 :
57  public pointSmoother
58 {
59 public:
60 
61  //- Runtime type information
62  TypeName("equipotential");
63 
64 
65  // Constructors
66 
67  //- Construct from a dictionary and a polyMesh
69  (
70  const polyMesh& mesh,
71  const dictionary& dict
72  );
73 
74 
75  //- Destructor
76  virtual ~equipotentialPointSmoother() = default;
77 
78 
79  // Member Functions
80 
81  //- Calculate the point displacements
82  virtual void calculate
83  (
84  const labelList& facesToMove,
85  const pointField& oldPoints,
86  const pointField& currentPoints,
87  const pointField& faceCentres,
88  const vectorField& faceAreas,
89  const pointField& cellCentres,
90  const scalarField& cellVolumes,
91  vectorField& pointDisplacement
92  ) const;
93 };
94 
95 
96 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
97 
98 } // End namespace pointSmoothers
99 } // End namespace Foam
100 
101 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
102 
103 #endif
104 
105 // ************************************************************************* //
const polyMesh & mesh() const
dictionary dict
A list of keyword definitions, which are a keyword followed by a number of values (eg...
Definition: dictionary.H:129
virtual ~equipotentialPointSmoother()=default
Destructor.
Abstract base class for point smoothing methods. Handles parallel communication via reset and average...
Definition: pointSmoother.H:50
virtual void calculate(const labelList &facesToMove, const pointField &oldPoints, const pointField &currentPoints, const pointField &faceCentres, const vectorField &faceAreas, const pointField &cellCentres, const scalarField &cellVolumes, vectorField &pointDisplacement) const
Calculate the point displacements.
equipotentialPointSmoother(const polyMesh &mesh, const dictionary &dict)
Construct from a dictionary and a polyMesh.
TypeName("equipotential")
Runtime type information.
Mesh consisting of general polyhedral cells.
Definition: polyMesh.H:75
Namespace for OpenFOAM.