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-2026 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  );
75 
76  //- Construct from dictionary
78  (
79  const word& name,
80  const dictionary& dict,
81  const label index,
82  const polyBoundaryMesh& bm
83  );
84 
85  //- Construct as copy, resetting the boundary mesh
87  (
88  const mergedCyclicPolyPatch&,
89  const polyBoundaryMesh&
90  );
91 
92  //- Construct given the original patch and resetting the
93  // face list and boundary mesh information
95  (
96  const mergedCyclicPolyPatch& pp,
97  const polyBoundaryMesh& bm,
98  const label index,
99  const label newSize,
100  const label newStart
101  );
102 
103  //- Construct and return a clone, resetting the boundary mesh
104  virtual autoPtr<polyPatch> clone(const polyBoundaryMesh& bm) const
105  {
106  return autoPtr<polyPatch>(new mergedCyclicPolyPatch(*this, bm));
107  }
108 
109  //- Construct and return a clone, resetting the face list
110  // and boundary mesh
111  virtual autoPtr<polyPatch> clone
112  (
113  const polyBoundaryMesh& bm,
114  const label index,
115  const label newSize,
116  const label newStart
117  ) const
118  {
119  return autoPtr<polyPatch>
120  (
121  new mergedCyclicPolyPatch(*this, bm, index, newSize, newStart)
122  );
123  }
124 };
125 
126 
127 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
128 
129 } // End namespace Foam
130 
131 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
132 
133 #endif
134 
135 // ************************************************************************* //
autoPtr< PrimitivePatch< SubList< face >, const pointField & > > clone() const
Construct and return a clone.
label size() const
Return the number of elements in the UList.
Definition: UListI.H:311
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 keywords followed by any number of values (e.g. words and numbers) or sub-dictionaries.
Definition: dictionary.H:162
Placeholder for two patches describing a cyclic interface. Used in mesh conversion processes involvin...
mergedCyclicPolyPatch(const word &name, const label size, const label start, const label index, const polyBoundaryMesh &bm)
Construct from components.
TypeName("mergedCyclic")
Runtime type information.
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:71
label start() const
Return start label of this patch in the polyMesh face list.
Definition: polyPatch.H:277
A class for handling words, derived from string.
Definition: word.H:63
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