1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright (C) 1991-2008 OpenCFD Ltd.
7 -------------------------------------------------------------------------------
9 This file is part of OpenFOAM.
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 the
13 Free Software Foundation; either version 2 of the License, or (at your
14 option) any later version.
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
21 You should have received a copy of the GNU General Public License
22 along with OpenFOAM; if not, write to the Free Software Foundation,
23 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 \*---------------------------------------------------------------------------*/
27 #include "nearWallDistNoSearch.H"
29 #include "wallPoint.H"
30 #include "wallFvPatch.H"
31 #include "surfaceFields.H"
33 // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
35 void Foam::nearWallDistNoSearch::doAll()
37 const volVectorField& cellCentres = mesh_.C();
38 const fvPatchList& patches = mesh_.boundary();
40 forAll(patches, patchI)
42 fvPatchScalarField& ypatch = operator[](patchI);
44 if (patches[patchI].type() == wallFvPatch::typeName)
46 const unallocLabelList& faceCells = patches[patchI].faceCells();
48 const fvPatchVectorField& patchCentres
49 = cellCentres.boundaryField()[patchI];
51 const fvsPatchVectorField& Apatch
52 = mesh_.Sf().boundaryField()[patchI];
54 const fvsPatchScalarField& magApatch
55 = mesh_.magSf().boundaryField()[patchI];
57 forAll(patchCentres, facei)
64 - cellCentres[faceCells[facei]]
77 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
79 Foam::nearWallDistNoSearch::nearWallDistNoSearch(const Foam::fvMesh& mesh)
81 volScalarField::GeometricBoundaryField
84 mesh.V(), // Dummy internal field
85 calculatedFvPatchScalarField::typeName
93 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
95 Foam::nearWallDistNoSearch::~nearWallDistNoSearch()
99 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
101 void Foam::nearWallDistNoSearch::correct()
103 if (mesh_.changing())
105 // Update size of GeometricBoundaryField
106 forAll(mesh_.boundary(), patchI)
108 operator[](patchI).setSize(mesh_.boundary()[patchI].size());
116 // ************************************************************************* //