coupledFacePointPatch.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
11  OpenFOAM is free software: you can redistribute it and/or modify it
12  under the terms of the GNU General Public License as published by
13  the Free Software Foundation, either version 3 of the License, or
14  (at your option) any later version.
15 
16  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19  for more details.
20 
21  You should have received a copy of the GNU General Public License
22  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
23 
24 Class
25  Foam::coupledFacePointPatch
26 
27 Description
28  coupled patch for post-processing. Used as the base class for processor
29  and cyclic pointPatches
30 
31 SourceFiles
32  coupledFacePointPatch.C
33 
34 \*---------------------------------------------------------------------------*/
35 
36 #ifndef coupledFacePointPatch_H
37 #define coupledFacePointPatch_H
38 
39 #include "coupledPointPatch.H"
40 #include "facePointPatch.H"
41 #include "coupledPolyPatch.H"
42 
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 
45 namespace Foam
46 {
47 
48 class pointBoundaryMesh;
49 
50 /*---------------------------------------------------------------------------*\
51  Class coupledFacePointPatch Declaration
52 \*---------------------------------------------------------------------------*/
53 
55 :
56  public facePointPatch,
57  public coupledPointPatch
58 {
59  // Private Data
60 
61  const coupledPolyPatch& coupledPolyPatch_;
62 
63 
64 protected:
65 
66  // Protected Member Functions
67 
68  //- Calculate mesh points
69  virtual void calcGeometry(PstreamBuffers&) = 0;
70 
71 
72 public:
73 
74  //- Runtime type information
75  TypeName(coupledPolyPatch::typeName_());
76 
77 
78  // Constructors
79 
80  //- Construct from components
82  (
83  const polyPatch& patch,
84  const pointBoundaryMesh& bm
85  );
86 
87  //- Disallow default bitwise copy construction
89 
90 
91 
92  //- Destructor
93  virtual ~coupledFacePointPatch();
94 
95 
96  // Member Operators
97 
98  //- Disallow default bitwise assignment
99  void operator=(const coupledFacePointPatch&) = delete;
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 calcGeometry(PstreamBuffers &)=0
Calculate mesh points.
void operator=(const coupledFacePointPatch &)=delete
Disallow default bitwise assignment.
coupledFacePointPatch(const polyPatch &patch, const pointBoundaryMesh &bm)
Construct from components.
virtual ~coupledFacePointPatch()
Destructor.
coupled patch for post-processing. Used as the base class for processor and cyclic pointPatches
The coupledPolyPatch is an abstract base class for patches that couple regions of the computational d...
A pointPatch based on a polyPatch.
const polyPatch & patch() const
Return the polyPatch.
Foam::pointBoundaryMesh.
A patch is a list of labels that address the faces in the global face list.
Definition: polyPatch.H:70
Namespace for OpenFOAM.