mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
325 lines
7.9 KiB
C
325 lines
7.9 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | www.openfoam.com
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
Copyright (C) 2011-2017 OpenFOAM Foundation
|
|
Copyright (C) 2016-2018 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 "motionSmootherAlgo.H"
|
|
#include "meshTools.H"
|
|
#include "processorPointPatchFields.H"
|
|
#include "pointConstraint.H"
|
|
#include "pointConstraints.H"
|
|
#include "syncTools.H"
|
|
|
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
void Foam::motionSmootherAlgo::checkConstraints
|
|
(
|
|
GeometricField<Type, pointPatchField, pointMesh>& pf
|
|
)
|
|
{
|
|
typedef GeometricField<Type, pointPatchField, pointMesh> FldType;
|
|
|
|
const polyMesh& mesh = pf.mesh();
|
|
|
|
const polyBoundaryMesh& bm = mesh.boundaryMesh();
|
|
|
|
// First count the total number of patch-patch points
|
|
|
|
label nPatchPatchPoints = 0;
|
|
|
|
for (const polyPatch& pp : bm)
|
|
{
|
|
if (!isA<emptyPolyPatch>(pp))
|
|
{
|
|
nPatchPatchPoints += pp.boundaryPoints().size();
|
|
}
|
|
}
|
|
|
|
|
|
typename FldType::Boundary& bFld = pf.boundaryFieldRef();
|
|
|
|
|
|
// Evaluate in reverse order
|
|
|
|
forAllReverse(bFld, patchi)
|
|
{
|
|
bFld[patchi].initEvaluate(Pstream::commsTypes::blocking); // buffered
|
|
}
|
|
|
|
forAllReverse(bFld, patchi)
|
|
{
|
|
bFld[patchi].evaluate(Pstream::commsTypes::blocking);
|
|
}
|
|
|
|
|
|
// Save the values
|
|
|
|
Field<Type> boundaryPointValues(nPatchPatchPoints);
|
|
nPatchPatchPoints = 0;
|
|
|
|
forAll(bm, patchi)
|
|
{
|
|
if (!isA<emptyPolyPatch>(bm[patchi]))
|
|
{
|
|
const labelList& bp = bm[patchi].boundaryPoints();
|
|
const labelList& meshPoints = bm[patchi].meshPoints();
|
|
|
|
forAll(bp, pointi)
|
|
{
|
|
label ppp = meshPoints[bp[pointi]];
|
|
boundaryPointValues[nPatchPatchPoints++] = pf[ppp];
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// Forward evaluation
|
|
|
|
bFld.evaluate();
|
|
|
|
|
|
// Check
|
|
|
|
nPatchPatchPoints = 0;
|
|
|
|
forAll(bm, patchi)
|
|
{
|
|
if (!isA<emptyPolyPatch>(bm[patchi]))
|
|
{
|
|
const labelList& bp = bm[patchi].boundaryPoints();
|
|
const labelList& meshPoints = bm[patchi].meshPoints();
|
|
|
|
for (const label pointi : bp)
|
|
{
|
|
const label ppp = meshPoints[pointi];
|
|
|
|
const Type& savedVal = boundaryPointValues[nPatchPatchPoints++];
|
|
|
|
if (savedVal != pf[ppp])
|
|
{
|
|
FatalErrorInFunction
|
|
<< "Patch fields are not consistent on mesh point "
|
|
<< ppp << " coordinate " << mesh.points()[ppp]
|
|
<< " at patch " << bm[patchi].name() << '.'
|
|
<< endl
|
|
<< "Reverse evaluation gives value " << savedVal
|
|
<< " , forward evaluation gives value " << pf[ppp]
|
|
<< abort(FatalError);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::tmp<Foam::GeometricField<Type, Foam::pointPatchField, Foam::pointMesh>>
|
|
Foam::motionSmootherAlgo::avg
|
|
(
|
|
const GeometricField<Type, pointPatchField, pointMesh>& fld,
|
|
const scalarField& edgeWeight
|
|
) const
|
|
{
|
|
auto tres = tmp<GeometricField<Type, pointPatchField, pointMesh>>::New
|
|
(
|
|
IOobject
|
|
(
|
|
"avg("+fld.name()+')',
|
|
fld.time().timeName(),
|
|
fld.db(),
|
|
IOobject::NO_READ,
|
|
IOobject::NO_WRITE,
|
|
false
|
|
),
|
|
fld.mesh(),
|
|
dimensioned<Type>(fld.dimensions(), Zero)
|
|
);
|
|
auto& res = tres.ref();
|
|
|
|
const polyMesh& mesh = fld.mesh()();
|
|
|
|
|
|
// Sum local weighted values and weights
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
// Note: on coupled edges use only one edge (through isMasterEdge)
|
|
// This is done so coupled edges do not get counted double.
|
|
|
|
scalarField sumWeight(mesh.nPoints(), Zero);
|
|
|
|
const edgeList& edges = mesh.edges();
|
|
|
|
for (const label edgei : isMasterEdge_)
|
|
{
|
|
const edge& e = edges[edgei];
|
|
const scalar w = edgeWeight[edgei];
|
|
|
|
res[e[0]] += w*fld[e[1]];
|
|
sumWeight[e[0]] += w;
|
|
|
|
res[e[1]] += w*fld[e[0]];
|
|
sumWeight[e[1]] += w;
|
|
}
|
|
|
|
|
|
// Add coupled contributions
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
syncTools::syncPointList
|
|
(
|
|
mesh,
|
|
res,
|
|
plusEqOp<Type>(),
|
|
Type(Zero) // null value
|
|
);
|
|
syncTools::syncPointList
|
|
(
|
|
mesh,
|
|
sumWeight,
|
|
plusEqOp<scalar>(),
|
|
scalar(0) // null value
|
|
);
|
|
|
|
|
|
// Average
|
|
// ~~~~~~~
|
|
|
|
forAll(res, pointi)
|
|
{
|
|
if (mag(sumWeight[pointi]) < VSMALL)
|
|
{
|
|
// Unconnected point. Take over original value
|
|
res[pointi] = fld[pointi];
|
|
}
|
|
else
|
|
{
|
|
res[pointi] /= sumWeight[pointi];
|
|
}
|
|
}
|
|
|
|
// Single and multi-patch constraints
|
|
pointConstraints::New(fld.mesh()).constrain(res, false);
|
|
|
|
return tres;
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
void Foam::motionSmootherAlgo::smooth
|
|
(
|
|
const GeometricField<Type, pointPatchField, pointMesh>& fld,
|
|
const scalarField& edgeWeight,
|
|
GeometricField<Type, pointPatchField, pointMesh>& newFld
|
|
) const
|
|
{
|
|
tmp<pointVectorField> tavgFld = avg(fld, edgeWeight);
|
|
const pointVectorField& avgFld = tavgFld();
|
|
|
|
forAll(fld, pointi)
|
|
{
|
|
if (isInternalPoint_.test(pointi))
|
|
{
|
|
newFld[pointi] = 0.5*fld[pointi] + 0.5*avgFld[pointi];
|
|
}
|
|
}
|
|
|
|
// Single and multi-patch constraints
|
|
pointConstraints::New(fld.mesh()).constrain(newFld, false);
|
|
}
|
|
|
|
|
|
template<class Type, class CombineOp>
|
|
void Foam::motionSmootherAlgo::testSyncField
|
|
(
|
|
const Field<Type>& fld,
|
|
const CombineOp& cop,
|
|
const Type& zero,
|
|
const scalar maxMag
|
|
) const
|
|
{
|
|
if (debug)
|
|
{
|
|
Pout<< "testSyncField : testing synchronisation of Field<Type>."
|
|
<< endl;
|
|
}
|
|
|
|
Field<Type> syncedFld(fld);
|
|
|
|
syncTools::syncPointList
|
|
(
|
|
mesh_,
|
|
syncedFld,
|
|
cop,
|
|
zero
|
|
);
|
|
|
|
forAll(syncedFld, i)
|
|
{
|
|
if (mag(syncedFld[i] - fld[i]) > maxMag)
|
|
{
|
|
FatalErrorInFunction
|
|
<< "On element " << i << " value:" << fld[i]
|
|
<< " synchronised value:" << syncedFld[i]
|
|
<< abort(FatalError);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Type Foam::motionSmootherAlgo::get
|
|
(
|
|
const dictionary& dict,
|
|
const word& keyword,
|
|
const bool noExit,
|
|
enum keyType::option matchOpt,
|
|
const Type& defaultValue
|
|
)
|
|
{
|
|
Type val(defaultValue);
|
|
|
|
if
|
|
(
|
|
!dict.readEntry
|
|
(
|
|
keyword,
|
|
val,
|
|
matchOpt,
|
|
!noExit
|
|
)
|
|
)
|
|
{
|
|
FatalIOError
|
|
<< "Entry '" << keyword << "' not found in dictionary "
|
|
<< dict.name() << endl;
|
|
}
|
|
return val;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|