coupledPointPatch.H
Go to the documentation of this file.
1/*---------------------------------------------------------------------------*\
2 ========= |
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4 \\ / O peration |
5 \\ / A nd | www.openfoam.com
6 \\/ M anipulation |
7-------------------------------------------------------------------------------
8 Copyright (C) 2011-2013 OpenFOAM Foundation
9-------------------------------------------------------------------------------
10License
11 This file is part of OpenFOAM.
12
13 OpenFOAM is free software: you can redistribute it and/or modify it
14 under the terms of the GNU General Public License as published by
15 the Free Software Foundation, either version 3 of the License, or
16 (at your option) any later version.
17
18 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
19 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25
26Class
27 Foam::coupledPointPatch
28
29Description
30 coupled patch for post-processing. Used as the base class for processor
31 and cyclic pointPatches
32
33SourceFiles
34 coupledPointPatch.C
35
36\*---------------------------------------------------------------------------*/
37
38#ifndef Foam_coupledPointPatch_H
39#define Foam_coupledPointPatch_H
40
41#include "coupledPolyPatch.H"
42
43// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44
45namespace Foam
46{
47
48// Forward Declarations
49class pointBoundaryMesh;
50
51/*---------------------------------------------------------------------------*\
52 Class coupledPointPatch Declaration
53\*---------------------------------------------------------------------------*/
56{
57protected:
58
59 // Protected Member Functions
60
61 //- Initialise the calculation of the patch geometry
62 virtual void initGeometry(PstreamBuffers&) = 0;
63
64 //- Calculate the patch geometry
65 virtual void calcGeometry(PstreamBuffers&) = 0;
66
67 //- Initialise the patches for moving points
68 virtual void initMovePoints(PstreamBuffers&, const pointField&) = 0;
69
70 //- Correct patches after moving points
71 virtual void movePoints(PstreamBuffers&, const pointField&) = 0;
72
73 //- Initialise the update of the patch topology
74 virtual void initUpdateMesh(PstreamBuffers&) = 0;
75
76 //- Update of the patch topology
77 virtual void updateMesh(PstreamBuffers&) = 0;
78
79
80 //- No copy construct
81 coupledPointPatch(const coupledPointPatch&) = delete;
82
83 //- No copy assignment
84 void operator=(const coupledPointPatch&) = delete;
85
86public:
87
88 //- Runtime type information
89 TypeName(coupledPolyPatch::typeName_());
90
91
92 // Constructors
93
94 //- Construct from components
95 explicit coupledPointPatch(const pointBoundaryMesh& bm);
96
97
98 //- Destructor
99 virtual ~coupledPointPatch() = default;
100};
101
102
103// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
104
105} // End namespace Foam
106
107// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
108
109#endif
110
111// ************************************************************************* //
Buffers for inter-processor communications streams (UOPstream, UIPstream).
coupled patch for post-processing. Used as the base class for processor and cyclic pointPatches
TypeName(coupledPolyPatch::typeName_())
Runtime type information.
virtual void initMovePoints(PstreamBuffers &, const pointField &)=0
Initialise the patches for moving points.
virtual void calcGeometry(PstreamBuffers &)=0
Calculate the patch geometry.
virtual void updateMesh(PstreamBuffers &)=0
Update of the patch topology.
virtual void initUpdateMesh(PstreamBuffers &)=0
Initialise the update of the patch topology.
void operator=(const coupledPointPatch &)=delete
No copy assignment.
coupledPointPatch(const coupledPointPatch &)=delete
No copy construct.
virtual void movePoints(PstreamBuffers &, const pointField &)=0
Correct patches after moving points.
virtual ~coupledPointPatch()=default
Destructor.
virtual void initGeometry(PstreamBuffers &)=0
Initialise the calculation of the patch geometry.
Foam::pointBoundaryMesh.
Namespace for OpenFOAM.
#define TypeName(TypeNameString)
Declare a ClassName() with extra virtual type info.
Definition: typeInfo.H:73