nearWallDist.C
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-2018 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 "nearWallDist.H"
27 #include "fvMesh.H"
28 #include "cellDistFuncs.H"
29 #include "wallFvPatch.H"
30 #include "surfaceFields.H"
31 
32 // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
33 
34 void Foam::nearWallDist::calculate()
35 {
36  cellDistFuncs wallUtils(mesh_);
37 
38  // Get patch ids of walls
39  labelHashSet wallPatchIDs(wallUtils.getPatchIDs<wallPolyPatch>());
40 
41  // Size neighbours array for maximum possible
42 
43  labelList neighbours(wallUtils.maxPatchSize(wallPatchIDs));
44 
45 
46  // Correct all cells with face on wall
47 
48  const volVectorField& cellCentres = mesh_.C();
49 
50  forAll(mesh_.boundary(), patchi)
51  {
52  fvPatchScalarField& ypatch = operator[](patchi);
53 
54  const fvPatch& patch = mesh_.boundary()[patchi];
55 
56  if (isA<wallFvPatch>(patch))
57  {
58  const polyPatch& pPatch = patch.patch();
59 
60  const labelUList& faceCells = patch.faceCells();
61 
62  // Check cells with face on wall
63  forAll(patch, patchFacei)
64  {
65  label nNeighbours = wallUtils.getPointNeighbours
66  (
67  pPatch,
68  patchFacei,
69  neighbours
70  );
71 
72  label minFacei = -1;
73 
74  ypatch[patchFacei] = wallUtils.smallestDist
75  (
76  cellCentres[faceCells[patchFacei]],
77  pPatch,
78  nNeighbours,
79  neighbours,
80  minFacei
81  );
82  }
83  }
84  else
85  {
86  ypatch = 0.0;
87  }
88  }
89 }
90 
91 
92 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
93 
95 :
96  volScalarField::Boundary
97  (
98  mesh.boundary(),
99  mesh.V(), // Dummy internal field,
100  calculatedFvPatchScalarField::typeName
101  ),
102  mesh_(mesh)
103 {
104  calculate();
105 }
106 
107 
108 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
109 
111 {}
112 
113 
114 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
115 
117 {
118  if (mesh_.topoChanging())
119  {
120  const DimensionedField<scalar, volMesh>& V = mesh_.V();
121  const fvBoundaryMesh& bnd = mesh_.boundary();
122 
123  this->setSize(bnd.size());
124  forAll(*this, patchi)
125  {
126  this->set
127  (
128  patchi,
130  (
131  calculatedFvPatchScalarField::typeName,
132  bnd[patchi],
133  V
134  )
135  );
136  }
137  }
138 
139  calculate();
140 }
141 
142 
143 // ************************************************************************* //
Foam::surfaceFields.
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:434
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
const DimensionedField< scalar, volMesh > & V() const
Return cell volumes.
GeometricField< vector, fvPatchField, volMesh > volVectorField
Definition: volFieldsFwd.H:58
UList< label > labelUList
Definition: UList.H:65
HashSet< label, Hash< label > > labelHashSet
A HashSet with label keys.
Definition: HashSet.H:211
points setSize(newPointi)
dynamicFvMesh & mesh
fvPatchField< scalar > fvPatchScalarField
static tmp< fvPatchField< Type > > New(const word &, const fvPatch &, const DimensionedField< Type, volMesh > &)
Return a pointer to a new patchField created on freestore given.
List< label > labelList
A List of labels.
Definition: labelList.H:56
faceListList boundary(nPatches)
virtual ~nearWallDist()
Destructor.
Definition: nearWallDist.C:110
label size() const
Return the number of elements in the UPtrList.
Definition: UPtrListI.H:29
label patchi
Foam::fvBoundaryMesh.
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:78
bool topoChanging() const
Is mesh topology changing.
Definition: polyMesh.H:526
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
const volVectorField & C() const
Return cell centres as volVectorField.
virtual void correct()
Correct for mesh geom/topo changes.
Definition: nearWallDist.C:116
const fvBoundaryMesh & boundary() const
Return reference to boundary mesh.
Definition: fvMesh.C:540
nearWallDist(const fvMesh &mesh)
Construct from components.
Definition: nearWallDist.C:94