fvBoundaryMeshMapper.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-2016 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::fvBoundaryMeshMapper
28 
29 Description
30  Foam::fvBoundaryMeshMapper
31 
32 \*---------------------------------------------------------------------------*/
33 
34 #ifndef fvBoundaryMeshMapper_H
35 #define fvBoundaryMeshMapper_H
36 
37 #include "PtrList.H"
38 #include "fvPatchMapper.H"
39 
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
41 
42 namespace Foam
43 {
44 
45 /*---------------------------------------------------------------------------*\
46  Class fvBoundaryMeshMapper Declaration
47 \*---------------------------------------------------------------------------*/
48 
50 :
51  public PtrList<fvPatchMapper>
52 {
53 public:
54 
55  // Public Types
56 
57  //- The patch mapper type
58  typedef fvPatchMapper mapper_type;
59 
60 
61  // Generated Methods
62 
63  //- No copy construct
65 
66  //- No copy assignment
67  void operator=(const fvBoundaryMeshMapper&) = delete;
68 
69 
70  // Constructors
71 
72  //- Construct from components
74  (
75  const fvMesh& mesh,
76  const faceMapper& faceMap
77  )
78  :
80  {
81  const fvBoundaryMesh& patches = mesh.boundary();
82 
83  forAll(patches, patchi)
84  {
85  set
86  (
87  patchi,
88  new fvPatchMapper
89  (
90  patches[patchi],
91  faceMap
92  )
93  );
94  }
95  }
96 };
97 
98 
99 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
100 
101 } // End namespace Foam
102 
103 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
104 
105 #endif
106 
107 // ************************************************************************* //
faceListList boundary
void operator=(const fvBoundaryMeshMapper &)=delete
No copy assignment.
fvBoundaryMeshMapper(const fvBoundaryMeshMapper &)=delete
No copy construct.
This object provides mapping and fill-in information for face data between the two meshes after the t...
Definition: faceMapper.H:53
Foam::fvBoundaryMeshMapper.
Pair< int > faceMap(const label facePi, const face &faceP, const label faceNi, const face &faceN)
#define forAll(list, i)
Loop across all elements in list.
Definition: stdFoam.H:421
fvPatchMapper mapper_type
The patch mapper type.
dynamicFvMesh & mesh
label size() const noexcept
The number of entries in the list.
Definition: UPtrListI.H:106
A list of pointers to objects of type <T>, with allocation/deallocation management of the pointers...
Definition: List.H:55
Foam::fvBoundaryMesh.
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:78
const polyBoundaryMesh & patches
Mapping class for a fvPatchField.
Definition: fvPatchMapper.H:53
Namespace for OpenFOAM.