/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2013 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::coupledPointPatch Description coupled patch for post-processing. Used as the base class for processor and cyclic pointPatches SourceFiles coupledPointPatch.C \*---------------------------------------------------------------------------*/ #ifndef Foam_coupledPointPatch_H #define Foam_coupledPointPatch_H #include "coupledPolyPatch.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { // Forward Declarations class pointBoundaryMesh; /*---------------------------------------------------------------------------*\ Class coupledPointPatch Declaration \*---------------------------------------------------------------------------*/ class coupledPointPatch { protected: // Protected Member Functions //- Initialise the calculation of the patch geometry virtual void initGeometry(PstreamBuffers&) = 0; //- Calculate the patch geometry virtual void calcGeometry(PstreamBuffers&) = 0; //- Initialise the patches for moving points virtual void initMovePoints(PstreamBuffers&, const pointField&) = 0; //- Correct patches after moving points virtual void movePoints(PstreamBuffers&, const pointField&) = 0; //- Initialise the update of the patch topology virtual void initUpdateMesh(PstreamBuffers&) = 0; //- Update of the patch topology virtual void updateMesh(PstreamBuffers&) = 0; //- No copy construct coupledPointPatch(const coupledPointPatch&) = delete; //- No copy assignment void operator=(const coupledPointPatch&) = delete; public: //- Runtime type information TypeName(coupledPolyPatch::typeName_()); // Constructors //- Construct from components explicit coupledPointPatch(const pointBoundaryMesh& bm); //- Destructor virtual ~coupledPointPatch() = default; }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //