/*---------------------------------------------------------------------------*\ ========= | \\ / 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 . Class Foam::cyclicAMIFvPatchField Group grpCoupledBoundaryConditions Description This boundary condition enforces a cyclic condition between a pair of boundaries, whereby communication between the patches is performed using an arbitrary mesh interface (AMI) interpolation. Usage Example of the boundary condition specification: \verbatim { type cyclicAMI; value ; neighbourValue ; } \endverbatim Note The outer boundary of the patch pairs must be similar, i.e. if the owner patch is transformed to the neighbour patch, the outer perimeter of each patch should be identical (or very similar). The \c neighbourValue is only needed when running distributed, i.e. the neighbour cells are on a different processor from the owner cells. It guarantees consistent restart e.g. when doing a snGrad and avoids additional communication. See also Foam::AMIInterpolation Foam::processorFvPatchField SourceFiles cyclicAMIFvPatchField.C \*---------------------------------------------------------------------------*/ #ifndef Foam_cyclicAMIFvPatchField_H #define Foam_cyclicAMIFvPatchField_H #include "cyclicAMIFvPatch.H" #include "coupledFvPatchField.H" #include "cyclicAMILduInterfaceField.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { /*---------------------------------------------------------------------------*\ Class cyclicAMIFvPatchField Declaration \*---------------------------------------------------------------------------*/ template class cyclicAMIFvPatchField : virtual public cyclicAMILduInterfaceField, public coupledFvPatchField { // Private Data //- Local reference cast into the cyclic patch const cyclicAMIFvPatch& cyclicAMIPatch_; // Sending and receiving (distributed AMI) //- Current range of send requests (non-blocking) mutable labelRange sendRequests_; //- Current range of recv requests (non-blocking) mutable labelRange recvRequests_; //- Send buffers mutable PtrList> sendBufs_; //- Receive buffers_ mutable PtrList> recvBufs_; //- Scalar send buffers mutable PtrList> scalarSendBufs_; //- Scalar receive buffers mutable PtrList> scalarRecvBufs_; //- Neighbour coupled internal cell data mutable autoPtr> patchNeighbourFieldPtr_; // Private Member Functions //- Return the AMI corresponding to the owner side const AMIPatchToPatchInterpolation& ownerAMI() const { return ( cyclicAMIPatch_.owner() ? cyclicAMIPatch_.AMI() : cyclicAMIPatch_.neighbPatch().AMI() ); } //- All receive/send requests have completed virtual bool all_ready() const; //- Use neighbour field caching static bool cacheNeighbourField(); //- Return neighbour coupled internal cell data tmp> getNeighbourField(const UList&) const; //- Return neighbour coupled internal cell data (cached or extracted), //- with optional check that AMI.comm() is valid. tmp> getPatchNeighbourField(bool checkCommunicator) const; //- Return new matrix coeffs tmp> coeffs ( fvMatrix& matrix, const Field&, const label ) const; template void collectStencilData ( const refPtr& mapPtr, const labelListList& stencil, const Type2& data, List& expandedData ); public: //- Runtime type information TypeName(cyclicAMIFvPatch::typeName_()); // Constructors //- Construct from patch and internal field cyclicAMIFvPatchField ( const fvPatch&, const DimensionedField& ); //- Construct from patch, internal field and dictionary cyclicAMIFvPatchField ( const fvPatch&, const DimensionedField&, const dictionary& ); //- Construct by mapping given cyclicAMIFvPatchField onto a new patch cyclicAMIFvPatchField ( const cyclicAMIFvPatchField&, const fvPatch&, const DimensionedField&, const fvPatchFieldMapper& ); //- Construct as copy cyclicAMIFvPatchField(const cyclicAMIFvPatchField&); //- Construct as copy setting internal field reference cyclicAMIFvPatchField ( const cyclicAMIFvPatchField&, const DimensionedField& ); //- Return a clone virtual tmp> clone() const { return fvPatchField::Clone(*this); } //- Clone with an internal field reference virtual tmp> clone ( const DimensionedField& iF ) const { return fvPatchField::Clone(*this, iF); } // Member Functions //- Return local reference cast into the cyclic AMI patch const cyclicAMIFvPatch& cyclicAMIPatch() const noexcept { return cyclicAMIPatch_; } // Coupling //- Return true if coupled. Note that the underlying patch // is not coupled() - the points don't align. virtual bool coupled() const { return cyclicAMIPatch_.coupled(); } //- Are all (receive) data available? virtual bool ready() const; //- Return neighbour coupled internal cell data virtual tmp> patchNeighbourField() const; //- Retrieve neighbour coupled internal cell data virtual void patchNeighbourField(UList& pnf) const; //- Return reference to neighbour patchField const cyclicAMIFvPatchField& neighbourPatchField() const; // Mapping Functions //- Map (and resize as needed) from self given a mapping object virtual void autoMap ( const fvPatchFieldMapper& ); //- Reverse map the given fvPatchField onto this fvPatchField virtual void rmap ( const fvPatchField&, const labelList& ); // Evaluation //- Initialise the evaluation of the patch field virtual void initEvaluate(const Pstream::commsTypes commsType); //- Evaluate the patch field virtual void evaluate(const Pstream::commsTypes commsType); // Coupled interface functionality //- Initialise neighbour matrix update virtual void initInterfaceMatrixUpdate ( solveScalarField& result, const bool add, const lduAddressing& lduAddr, const label patchId, const solveScalarField& psiInternal, const scalarField& coeffs, const direction cmpt, const Pstream::commsTypes commsType ) const; //- Update result field based on interface functionality virtual void updateInterfaceMatrix ( solveScalarField& result, const bool add, const lduAddressing& lduAddr, const label patchId, const solveScalarField& psiInternal, const scalarField& coeffs, const direction cmpt, const Pstream::commsTypes commsType ) const; //- Initialise neighbour matrix update virtual void initInterfaceMatrixUpdate ( Field& result, const bool add, const lduAddressing& lduAddr, const label patchId, const Field& psiInternal, const scalarField& coeffs, const Pstream::commsTypes commsType ) const; //- Update result field based on interface functionality virtual void updateInterfaceMatrix ( Field&, const bool add, const lduAddressing& lduAddr, const label patchId, const Field&, const scalarField&, const Pstream::commsTypes commsType ) const; //- Manipulate matrix virtual void manipulateMatrix ( fvMatrix& m, const label iMatrix, const direction cmpt ); // Coupled interface functions //- Does the patch field perform the transformation virtual bool doTransform() const { return (pTraits::rank && !cyclicAMIPatch_.parallel()); } //- Return face transformation tensor virtual const tensorField& forwardT() const { return cyclicAMIPatch_.forwardT(); } //- Return neighbour-cell transformation tensor virtual const tensorField& reverseT() const { return cyclicAMIPatch_.reverseT(); } //- Return rank of component for transform virtual int rank() const { return pTraits::rank; } // I-O //- Write virtual void write(Ostream& os) const; // Member Operators virtual void operator=(const fvPatchField&); virtual void operator==(const fvPatchField&); }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #ifdef NoRepository #include "cyclicAMIFvPatchField.C" #endif // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //