Files
openfoam/src/fvMotionSolver/motionDiffusivity/inverseDistance/inverseDistanceDiffusivity.C
Mark Olesen c126464d1c ENH: change wordRes to be a List of wordRe instead of a wrapper (issue #259)
- this permits direct storage of a list with additional matcher
  capabilities

- provide wordRes::matcher class for similar behaviour as previously
2018-02-21 10:05:30 +01:00

84 lines
2.5 KiB
C

/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
\\/ M anipulation | Copyright (C) 2017 OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
\*---------------------------------------------------------------------------*/
#include "inverseDistanceDiffusivity.H"
#include "addToRunTimeSelectionTable.H"
#include "patchWave.H"
#include "HashSet.H"
#include "surfaceInterpolate.H"
#include "zeroGradientFvPatchFields.H"
#include "wallDist.H"
#include "meshWavePatchDistMethod.H"
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
namespace Foam
{
defineTypeNameAndDebug(inverseDistanceDiffusivity, 0);
addToRunTimeSelectionTable
(
motionDiffusivity,
inverseDistanceDiffusivity,
Istream
);
}
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
Foam::inverseDistanceDiffusivity::inverseDistanceDiffusivity
(
const fvMesh& mesh,
Istream& mdData
)
:
uniformDiffusivity(mesh, mdData),
patchNames_(mdData)
{
correct();
}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
void Foam::inverseDistanceDiffusivity::correct()
{
faceDiffusivity_ =
dimensionedScalar("one", dimLength, 1)
/fvc::interpolate
(
wallDist::New
(
mesh(),
patchDistMethods::meshWave::typeName,
mesh().boundaryMesh().patchSet(patchNames_)
).y()
);
}
// ************************************************************************* //