/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation Copyright (C) 2019-2025 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 . \*---------------------------------------------------------------------------*/ #include "cyclicFvPatch.H" #include "addToRunTimeSelectionTable.H" #include "fvMesh.H" #include "transform.H" // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // namespace Foam { defineTypeNameAndDebug(cyclicFvPatch, 0); addToRunTimeSelectionTable(fvPatch, cyclicFvPatch, polyPatch); } // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // void Foam::cyclicFvPatch::makeWeights(scalarField& w) const { const cyclicFvPatch& nbrPatch = neighbFvPatch(); const scalarField deltas(nf()&coupledFvPatch::delta()); const scalarField nbrDeltas(nbrPatch.nf()&nbrPatch.coupledFvPatch::delta()); forAll(deltas, facei) { scalar di = deltas[facei]; scalar dni = nbrDeltas[facei]; w[facei] = dni/(di + dni); } } Foam::tmp Foam::cyclicFvPatch::delta() const { const vectorField patchD(coupledFvPatch::delta()); const vectorField nbrPatchD(neighbFvPatch().coupledFvPatch::delta()); auto tpdv = tmp::New(patchD.size()); auto& pdv = tpdv.ref(); // To the transformation if necessary if (parallel()) { forAll(patchD, facei) { vector ddi = patchD[facei]; vector dni = nbrPatchD[facei]; pdv[facei] = ddi - dni; } } else { forAll(patchD, facei) { vector ddi = patchD[facei]; vector dni = nbrPatchD[facei]; pdv[facei] = ddi - transform(forwardT()[0], dni); } } return tpdv; } Foam::tmp Foam::cyclicFvPatch::interfaceInternalField ( const labelUList& internalData ) const { return patchInternalField(internalData); } Foam::tmp Foam::cyclicFvPatch::interfaceInternalField ( const labelUList& internalData, const labelUList& faceCells ) const { auto tpfld = tmp::New(this->size()); patchInternalField(internalData, faceCells, tpfld.ref()); return tpfld; } Foam::tmp Foam::cyclicFvPatch::internalFieldTransfer ( const Pstream::commsTypes commsType, const labelUList& iF ) const { return neighbFvPatch().patchInternalField(iF); } // ************************************************************************* //