mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
214 lines
5.1 KiB
C
214 lines
5.1 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2015 OpenFOAM Foundation
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
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 "wallDist.H"
|
|
#include "wallPolyPatch.H"
|
|
|
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
defineTypeNameAndDebug(wallDist, 0);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
|
|
|
void Foam::wallDist::constructn() const
|
|
{
|
|
n_ = tmp<volVectorField>
|
|
(
|
|
new volVectorField
|
|
(
|
|
IOobject
|
|
(
|
|
"n" & patchTypeName_,
|
|
mesh().time().timeName(),
|
|
mesh()
|
|
),
|
|
mesh(),
|
|
dimensionedVector("n" & patchTypeName_, dimless, vector::zero),
|
|
patchDistMethod::patchTypes<vector>(mesh(), patchIDs_)
|
|
)
|
|
);
|
|
|
|
const fvPatchList& patches = mesh().boundary();
|
|
|
|
forAllConstIter(labelHashSet, patchIDs_, iter)
|
|
{
|
|
label patchi = iter.key();
|
|
n_().boundaryField()[patchi] == patches[patchi].nf();
|
|
}
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::wallDist::wallDist(const fvMesh& mesh, const word& patchTypeName)
|
|
:
|
|
MeshObject<fvMesh, Foam::UpdateableMeshObject, wallDist>(mesh),
|
|
patchIDs_(mesh.boundaryMesh().findPatchIDs<wallPolyPatch>()),
|
|
patchTypeName_(patchTypeName),
|
|
pdm_
|
|
(
|
|
patchDistMethod::New
|
|
(
|
|
static_cast<const fvSchemes&>(mesh)
|
|
.subDict(patchTypeName_ & "Dist"),
|
|
mesh,
|
|
patchIDs_
|
|
)
|
|
),
|
|
y_
|
|
(
|
|
IOobject
|
|
(
|
|
"y" & patchTypeName_,
|
|
mesh.time().timeName(),
|
|
mesh
|
|
),
|
|
mesh,
|
|
dimensionedScalar("y" & patchTypeName_, dimLength, SMALL),
|
|
patchDistMethod::patchTypes<scalar>(mesh, patchIDs_)
|
|
),
|
|
nRequired_
|
|
(
|
|
static_cast<const fvSchemes&>(mesh).subDict(patchTypeName_ & "Dist")
|
|
.lookupOrDefault<Switch>("nRequired", false)
|
|
),
|
|
n_(volVectorField::null())
|
|
{
|
|
if (nRequired_)
|
|
{
|
|
constructn();
|
|
}
|
|
|
|
movePoints();
|
|
}
|
|
|
|
|
|
Foam::wallDist::wallDist
|
|
(
|
|
const fvMesh& mesh,
|
|
const labelHashSet& patchIDs,
|
|
const word& patchTypeName
|
|
)
|
|
:
|
|
MeshObject<fvMesh, Foam::UpdateableMeshObject, wallDist>(mesh),
|
|
patchIDs_(patchIDs),
|
|
patchTypeName_(patchTypeName),
|
|
pdm_
|
|
(
|
|
patchDistMethod::New
|
|
(
|
|
static_cast<const fvSchemes&>(mesh)
|
|
.subDict(patchTypeName_ & "Dist"),
|
|
mesh,
|
|
patchIDs_
|
|
)
|
|
),
|
|
y_
|
|
(
|
|
IOobject
|
|
(
|
|
"y" & patchTypeName_,
|
|
mesh.time().timeName(),
|
|
mesh
|
|
),
|
|
mesh,
|
|
dimensionedScalar("y" & patchTypeName_, dimLength, SMALL),
|
|
patchDistMethod::patchTypes<scalar>(mesh, patchIDs_)
|
|
),
|
|
nRequired_
|
|
(
|
|
static_cast<const fvSchemes&>(mesh).subDict(patchTypeName_ & "Dist")
|
|
.lookupOrDefault<Switch>("nRequired", false)
|
|
),
|
|
n_(volVectorField::null())
|
|
{
|
|
if (nRequired_)
|
|
{
|
|
constructn();
|
|
}
|
|
|
|
movePoints();
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
|
|
|
Foam::wallDist::~wallDist()
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
const Foam::volVectorField& Foam::wallDist::n() const
|
|
{
|
|
if (isNull(n_()))
|
|
{
|
|
WarningIn("Foam::wallDist::n()")
|
|
<< "n requested but 'nRequired' not specified in the "
|
|
<< (patchTypeName_ & "Dist") << " dictionary" << nl
|
|
<< " Recalculating y and n fields." << endl;
|
|
|
|
nRequired_ = true;
|
|
constructn();
|
|
pdm_->correct(y_, n_());
|
|
}
|
|
|
|
return n_();
|
|
}
|
|
|
|
|
|
bool Foam::wallDist::movePoints()
|
|
{
|
|
if (pdm_->movePoints())
|
|
{
|
|
if (nRequired_)
|
|
{
|
|
return pdm_->correct(y_, n_());
|
|
}
|
|
else
|
|
{
|
|
return pdm_->correct(y_);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
|
|
void Foam::wallDist::updateMesh(const mapPolyMesh& mpm)
|
|
{
|
|
pdm_->updateMesh(mpm);
|
|
movePoints();
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|