Files
openfoam/src/OpenFOAM/meshes/pointMesh/pointPatches/basic/coupled/coupledPointPatch.H

113 lines
3.2 KiB
C++

/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
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 <http://www.gnu.org/licenses/>.
Class
Foam::coupledPointPatch
Description
coupled patch for post-processing. Used as the base class for processor
and cyclic pointPatches
SourceFiles
coupledPointPatch.C
\*---------------------------------------------------------------------------*/
#ifndef coupledPointPatch_H
#define coupledPointPatch_H
#include "coupledPolyPatch.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
class pointBoundaryMesh;
/*---------------------------------------------------------------------------*\
Class coupledPointPatch Declaration
\*---------------------------------------------------------------------------*/
class coupledPointPatch
{
// Private Member Functions
//- Disallow default construct as copy
coupledPointPatch(const coupledPointPatch&);
//- Disallow default assignment
void operator=(const 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;
public:
//- Runtime type information
TypeName(coupledPolyPatch::typeName_());
// Constructors
//- Construct from components
coupledPointPatch(const pointBoundaryMesh& bm);
//- Destructor
virtual ~coupledPointPatch();
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //