1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
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
13 the Free Software Foundation, either version 3 of the License, or
14 (at your 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, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 #include "motionSmoother.H"
27 #include "meshTools.H"
28 #include "processorPointPatchFields.H"
29 #include "pointConstraint.H"
30 #include "syncTools.H"
32 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
35 void Foam::motionSmoother::checkConstraints
37 GeometricField<Type, pointPatchField, pointMesh>& pf
40 typedef GeometricField<Type, pointPatchField, pointMesh> FldType;
42 const polyMesh& mesh = pf.mesh();
44 const polyBoundaryMesh& bm = mesh.boundaryMesh();
46 // first count the total number of patch-patch points
48 label nPatchPatchPoints = 0;
52 if (!isA<emptyPolyPatch>(bm[patchi]))
54 nPatchPatchPoints += bm[patchi].boundaryPoints().size();
59 typename FldType::GeometricBoundaryField& bFld = pf.boundaryField();
62 // Evaluate in reverse order
64 forAllReverse(bFld, patchi)
66 bFld[patchi].initEvaluate(Pstream::blocking); // buffered
69 forAllReverse(bFld, patchi)
71 bFld[patchi].evaluate(Pstream::blocking);
77 Field<Type> boundaryPointValues(nPatchPatchPoints);
78 nPatchPatchPoints = 0;
82 if (!isA<emptyPolyPatch>(bm[patchi]))
84 const labelList& bp = bm[patchi].boundaryPoints();
85 const labelList& meshPoints = bm[patchi].meshPoints();
89 label ppp = meshPoints[bp[pointi]];
90 boundaryPointValues[nPatchPatchPoints++] = pf[ppp];
103 nPatchPatchPoints = 0;
107 if (!isA<emptyPolyPatch>(bm[patchi]))
109 const labelList& bp = bm[patchi].boundaryPoints();
110 const labelList& meshPoints = bm[patchi].meshPoints();
114 label ppp = meshPoints[bp[pointi]];
116 const Type& savedVal = boundaryPointValues[nPatchPatchPoints++];
118 if (savedVal != pf[ppp])
122 "motionSmoother::checkConstraints"
123 "(GeometricField<Type, pointPatchField, pointMesh>&)"
124 ) << "Patch fields are not consistent on mesh point "
125 << ppp << " coordinate " << mesh.points()[ppp]
126 << " at patch " << bm[patchi].name() << '.'
128 << "Reverse evaluation gives value " << savedVal
129 << " , forward evaluation gives value " << pf[ppp]
130 << abort(FatalError);
139 void Foam::motionSmoother::applyCornerConstraints
141 GeometricField<Type, pointPatchField, pointMesh>& pf
144 forAll(patchPatchPointConstraintPoints_, pointi)
146 pf[patchPatchPointConstraintPoints_[pointi]] = transform
148 patchPatchPointConstraintTensors_[pointi],
149 pf[patchPatchPointConstraintPoints_[pointi]]
155 // Average of connected points.
156 template <class Type>
157 Foam::tmp<Foam::GeometricField<Type, Foam::pointPatchField, Foam::pointMesh> >
158 Foam::motionSmoother::avg
160 const GeometricField<Type, pointPatchField, pointMesh>& fld,
161 const scalarField& edgeWeight
164 tmp<GeometricField<Type, pointPatchField, pointMesh> > tres
166 new GeometricField<Type, pointPatchField, pointMesh>
170 "avg("+fld.name()+')',
171 fld.time().timeName(),
178 dimensioned<Type>("zero", fld.dimensions(), pTraits<Type>::zero)
181 GeometricField<Type, pointPatchField, pointMesh>& res = tres();
183 const polyMesh& mesh = fld.mesh()();
186 // Sum local weighted values and weights
187 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
189 // Note: on coupled edges use only one edge (through isMasterEdge)
190 // This is done so coupled edges do not get counted double.
192 scalarField sumWeight(mesh.nPoints(), 0.0);
194 const edgeList& edges = mesh.edges();
198 if (isMasterEdge_.get(edgeI) == 1)
200 const edge& e = edges[edgeI];
201 const scalar w = edgeWeight[edgeI];
203 res[e[0]] += w*fld[e[1]];
204 sumWeight[e[0]] += w;
206 res[e[1]] += w*fld[e[0]];
207 sumWeight[e[1]] += w;
212 // Add coupled contributions
213 // ~~~~~~~~~~~~~~~~~~~~~~~~~
215 syncTools::syncPointList
220 pTraits<Type>::zero // null value
222 syncTools::syncPointList
227 scalar(0) // null value
236 if (mag(sumWeight[pointI]) < VSMALL)
238 // Unconnected point. Take over original value
239 res[pointI] = fld[pointI];
243 res[pointI] /= sumWeight[pointI];
247 res.correctBoundaryConditions();
248 applyCornerConstraints(res);
254 // smooth field (point-jacobi)
255 template <class Type>
256 void Foam::motionSmoother::smooth
258 const GeometricField<Type, pointPatchField, pointMesh>& fld,
259 const scalarField& edgeWeight,
260 GeometricField<Type, pointPatchField, pointMesh>& newFld
263 tmp<pointVectorField> tavgFld = avg(fld, edgeWeight);
264 const pointVectorField& avgFld = tavgFld();
268 if (isInternalPoint(pointI))
270 newFld[pointI] = 0.5*fld[pointI] + 0.5*avgFld[pointI];
274 newFld.correctBoundaryConditions();
275 applyCornerConstraints(newFld);
279 //- Test synchronisation of generic field (not positions!) on points
280 template<class Type, class CombineOp>
281 void Foam::motionSmoother::testSyncField
283 const Field<Type>& fld,
284 const CombineOp& cop,
291 Pout<< "testSyncField : testing synchronisation of Field<Type>."
295 Field<Type> syncedFld(fld);
297 syncTools::syncPointList
307 if (mag(syncedFld[i] - fld[i]) > maxMag)
311 "motionSmoother::testSyncField"
312 "(const Field<Type>&, const CombineOp&"
313 ", const Type&, const bool)"
314 ) << "On element " << i << " value:" << fld[i]
315 << " synchronised value:" << syncedFld[i]
316 << abort(FatalError);
322 // ************************************************************************* //