symmetryPolyPatch.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-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::symmetryPolyPatch
26 
27 Description
28  Symmetry patch for non-planar or multi-plane patches.
29 
30 SourceFiles
31  symmetryPolyPatch.C
32 
33 See also
34  symmetryPlanePolyPatch
35 
36 \*---------------------------------------------------------------------------*/
37 
38 #ifndef symmetryPolyPatch_H
39 #define symmetryPolyPatch_H
40 
41 #include "polyPatch.H"
42 
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 
45 namespace Foam
46 {
47 
48 /*---------------------------------------------------------------------------*\
49  Class symmetryPolyPatch Declaration
50 \*---------------------------------------------------------------------------*/
51 
53 :
54  public polyPatch
55 {
56 public:
57 
58  //- Runtime type information
59  TypeName("symmetry");
60 
61 
62  // Constructors
63 
64  //- Construct from components
66  (
67  const word& name,
68  const label size,
69  const label start,
70  const label index,
71  const polyBoundaryMesh& bm
72  );
73 
74  //- Construct from dictionary
76  (
77  const word& name,
78  const dictionary& dict,
79  const label index,
80  const polyBoundaryMesh& bm
81  );
82 
83  //- Construct as copy, resetting the boundary mesh
85 
86  //- Construct given the original patch and resetting the
87  // face list and boundary mesh information
89  (
90  const symmetryPolyPatch& pp,
91  const polyBoundaryMesh& bm,
92  const label index,
93  const label newSize,
94  const label newStart
95  );
96 
97  //- Construct and return a clone, resetting the boundary mesh
98  virtual autoPtr<polyPatch> clone(const polyBoundaryMesh& bm) const
99  {
100  return autoPtr<polyPatch>(new symmetryPolyPatch(*this, bm));
101  }
102 
103  //- Construct and return a clone, resetting the face list
104  // and boundary mesh
105  virtual autoPtr<polyPatch> clone
106  (
107  const polyBoundaryMesh& bm,
108  const label index,
109  const label newSize,
110  const label newStart
111  ) const
112  {
113  return autoPtr<polyPatch>
114  (
115  new symmetryPolyPatch(*this, bm, index, newSize, newStart)
116  );
117  }
118 
119 
120  // Member Functions
121 
122  //- Return true as this patch is a constraint type
123  virtual bool constraint() const
124  {
125  return true;
126  }
127 };
128 
129 
130 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
131 
132 } // End namespace Foam
133 
134 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
135 
136 #endif
137 
138 // ************************************************************************* //
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
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
Symmetry patch for non-planar or multi-plane patches.
TypeName("symmetry")
Runtime type information.
virtual bool constraint() const
Return true as this patch is a constraint type.
symmetryPolyPatch(const word &name, const label size, const label start, const label index, const polyBoundaryMesh &bm)
Construct from components.
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