/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation ------------------------------------------------------------------------------- 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::cyclicAMIPointPatch Description Cyclic AMI point patch - place holder only SourceFiles cyclicAMIPointPatch.C \*---------------------------------------------------------------------------*/ #ifndef cyclicAMIPointPatch_H #define cyclicAMIPointPatch_H #include "coupledFacePointPatch.H" #include "cyclicAMIPolyPatch.H" #include "pointBoundaryMesh.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { /*---------------------------------------------------------------------------*\ Class cyclicAMIPointPatch Declaration \*---------------------------------------------------------------------------*/ class cyclicAMIPointPatch : public coupledFacePointPatch { // Private data //- Local reference cast into the cyclic AMI patch const cyclicAMIPolyPatch& cyclicAMIPolyPatch_; // Private Member Functions //- No copy construct cyclicAMIPointPatch(const cyclicAMIPointPatch&) = delete; //- No copy assignment void operator=(const cyclicAMIPointPatch&) = delete; protected: // Protected Member Functions //- Initialise the calculation of the patch geometry virtual void initGeometry(PstreamBuffers&); //- Calculate the patch geometry virtual void calcGeometry(PstreamBuffers&); //- Initialise the patches for moving points virtual void initMovePoints(PstreamBuffers&, const pointField&); //- Correct patches after moving points virtual void movePoints(PstreamBuffers&, const pointField&); //- Initialise the update of the patch topology virtual void initUpdateMesh(PstreamBuffers&); //- Update of the patch topology virtual void updateMesh(PstreamBuffers&); public: //- Runtime type information TypeName(cyclicAMIPolyPatch::typeName_()); // Constructors //- Construct from components cyclicAMIPointPatch ( const polyPatch& patch, const pointBoundaryMesh& bm ); //- Destructor virtual ~cyclicAMIPointPatch(); // Member Functions //- Return true if this patch field is coupled virtual bool coupled() const; //- Return the constraint type this pointPatch implements. virtual const word& constraintType() const { return type(); } //- Return the underlying cyclicAMIPolyPatch const cyclicAMIPolyPatch& cyclicAMIPatch() const { return cyclicAMIPolyPatch_; } //- Return neighbour point patch const cyclicAMIPointPatch& neighbPatch() const { label patchi = cyclicAMIPolyPatch_.neighbPatchID(); const pointPatch& pp = this->boundaryMesh()[patchi]; return refCast(pp); } //- Are the cyclic planes parallel bool parallel() const { return cyclicAMIPolyPatch_.parallel(); } //- Return face transformation tensor const tensorField& forwardT() const { return cyclicAMIPolyPatch_.forwardT(); } //- Return neighbour-cell transformation tensor const tensorField& reverseT() const { return cyclicAMIPolyPatch_.reverseT(); } }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //