mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
125 lines
3.5 KiB
C++
125 lines
3.5 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 1991-2009 OpenCFD Ltd.
|
|
\\/ 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 2 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, write to the Free Software Foundation,
|
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
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();
|
|
|
|
|
|
// Member Functions
|
|
|
|
// Access
|
|
|
|
//- Return true because this patch is coupled
|
|
virtual bool coupled() const
|
|
{
|
|
return true;
|
|
}
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|