mergedCyclicPolyPatch.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) 2020-2022 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::mergedCyclicPolyPatch
26 
27 Description
28  Placeholder for two patches describing a cyclic interface. Used in mesh
29  conversion processes involving formats in which both halves of a cyclic
30  interface are stored on the same patch.
31 
32 See also
33  Foam::polyMeshUnMergeCyclics
34 
35 SourceFiles
36  mergedCyclicPolyPatch.C
37 
38 \*---------------------------------------------------------------------------*/
39 
40 #ifndef mergedCyclicPolyPatch_H
41 #define mergedCyclicPolyPatch_H
42 
43 #include "polyPatch.H"
44 
45 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 
47 namespace Foam
48 {
49 
50 /*---------------------------------------------------------------------------*\
51  Class mergedCyclicPolyPatch Declaration
52 \*---------------------------------------------------------------------------*/
53 
55 :
56  public polyPatch
57 {
58 public:
59 
60  //- Runtime type information
61  TypeName("mergedCyclic");
62 
63 
64  // Constructors
65 
66  //- Construct from components
68  (
69  const word& name,
70  const label size,
71  const label start,
72  const label index,
73  const polyBoundaryMesh& bm,
74  const word& patchType
75  );
76 
77  //- Construct from dictionary
79  (
80  const word& name,
81  const dictionary& dict,
82  const label index,
83  const polyBoundaryMesh& bm,
84  const word& patchType
85  );
86 
87  //- Construct as copy, resetting the boundary mesh
89  (
90  const mergedCyclicPolyPatch&,
91  const polyBoundaryMesh&
92  );
93 
94  //- Construct given the original patch and resetting the
95  // face list and boundary mesh information
97  (
98  const mergedCyclicPolyPatch& pp,
99  const polyBoundaryMesh& bm,
100  const label index,
101  const label newSize,
102  const label newStart
103  );
104 
105  //- Construct and return a clone, resetting the boundary mesh
106  virtual autoPtr<polyPatch> clone(const polyBoundaryMesh& bm) const
107  {
108  return autoPtr<polyPatch>(new mergedCyclicPolyPatch(*this, bm));
109  }
110 
111  //- Construct and return a clone, resetting the face list
112  // and boundary mesh
113  virtual autoPtr<polyPatch> clone
114  (
115  const polyBoundaryMesh& bm,
116  const label index,
117  const label newSize,
118  const label newStart
119  ) const
120  {
121  return autoPtr<polyPatch>
122  (
123  new mergedCyclicPolyPatch(*this, bm, index, newSize, newStart)
124  );
125  }
126 };
127 
128 
129 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
130 
131 } // End namespace Foam
132 
133 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
134 
135 #endif
136 
137 // ************************************************************************* //
autoPtr< PrimitivePatch< FaceList, PointField > > clone() const
Construct and return a clone.
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: autoPtr.H:51
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:160
Placeholder for two patches describing a cyclic interface. Used in mesh conversion processes involvin...
TypeName("mergedCyclic")
Runtime type information.
mergedCyclicPolyPatch(const word &name, const label size, const label start, const label index, const polyBoundaryMesh &bm, const word &patchType)
Construct from components.
label index() const
Return the index of this patch in the boundaryMesh.
const word & name() const
Return name.
Foam::polyBoundaryMesh.
A patch is a list of labels that address the faces in the global face list.
Definition: polyPatch.H:70
label start() const
Return start label of this patch in the polyMesh face list.
Definition: polyPatch.H:280
A class for handling words, derived from string.
Definition: word.H:62
Namespace for OpenFOAM.
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
Definition: label.H:59
dictionary dict