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 -------------------------------------------------------------------------------
10 License
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 
26 Class
27  Foam::coupledPointPatch
28 
29 Description
30  coupled patch for post-processing. Used as the base class for processor
31  and cyclic pointPatches
32 
33 SourceFiles
34  coupledPointPatch.C
35 
36 \*---------------------------------------------------------------------------*/
37 
38 #ifndef coupledPointPatch_H
39 #define coupledPointPatch_H
40 
41 #include "coupledPolyPatch.H"
42 
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 
45 namespace Foam
46 {
47 
48 class pointBoundaryMesh;
49 
50 /*---------------------------------------------------------------------------*\
51  Class coupledPointPatch Declaration
52 \*---------------------------------------------------------------------------*/
53 
55 {
56  // Private Member Functions
57 
58  //- No copy construct
59  coupledPointPatch(const coupledPointPatch&) = delete;
60 
61  //- No copy assignment
62  void operator=(const coupledPointPatch&) = delete;
63 
64 
65 protected:
66 
67  // Protected Member Functions
68 
69  //- Initialise the calculation of the patch geometry
70  virtual void initGeometry(PstreamBuffers&) = 0;
71 
72  //- Calculate the patch geometry
73  virtual void calcGeometry(PstreamBuffers&) = 0;
74 
75  //- Initialise the patches for moving points
76  virtual void initMovePoints(PstreamBuffers&, const pointField&) = 0;
77 
78  //- Correct patches after moving points
79  virtual void movePoints(PstreamBuffers&, const pointField&) = 0;
80 
81  //- Initialise the update of the patch topology
82  virtual void initUpdateMesh(PstreamBuffers&) = 0;
83 
84  //- Update of the patch topology
85  virtual void updateMesh(PstreamBuffers&) = 0;
86 
87 
88 public:
89 
90  //- Runtime type information
91  TypeName(coupledPolyPatch::typeName_());
92 
93 
94  // Constructors
95 
96  //- Construct from components
98 
99 
100  //- Destructor
101  virtual ~coupledPointPatch();
102 
103 };
104 
105 
106 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
107 
108 } // End namespace Foam
109 
110 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
111 
112 #endif
113 
114 // ************************************************************************* //
Foam::coupledPointPatch::TypeName
TypeName(coupledPolyPatch::typeName_())
Runtime type information.
Foam::coupledPointPatch::initUpdateMesh
virtual void initUpdateMesh(PstreamBuffers &)=0
Initialise the update of the patch topology.
Foam::coupledPointPatch::initGeometry
virtual void initGeometry(PstreamBuffers &)=0
Initialise the calculation of the patch geometry.
Foam::coupledPointPatch::initMovePoints
virtual void initMovePoints(PstreamBuffers &, const pointField &)=0
Initialise the patches for moving points.
Foam::PstreamBuffers
Buffers for inter-processor communications streams (UOPstream, UIPstream).
Definition: PstreamBuffers.H:88
Foam::coupledPointPatch
coupled patch for post-processing. Used as the base class for processor and cyclic pointPatches
Definition: coupledPointPatch.H:53
coupledPolyPatch.H
Foam::Field< vector >
Foam::coupledPointPatch::movePoints
virtual void movePoints(PstreamBuffers &, const pointField &)=0
Correct patches after moving points.
Foam
Namespace for OpenFOAM.
Definition: atmBoundaryLayer.C:33
Foam::coupledPointPatch::updateMesh
virtual void updateMesh(PstreamBuffers &)=0
Update of the patch topology.
Foam::pointBoundaryMesh
Foam::pointBoundaryMesh.
Definition: pointBoundaryMesh.H:56
Foam::coupledPointPatch::calcGeometry
virtual void calcGeometry(PstreamBuffers &)=0
Calculate the patch geometry.
Foam::coupledPointPatch::~coupledPointPatch
virtual ~coupledPointPatch()
Destructor.
Definition: coupledPointPatch.C:49