nonConformalMappedWallFvPatch.C
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) 2023-2024 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 \*---------------------------------------------------------------------------*/
25 
29 #include "fvMesh.H"
31 #include "transform.H"
32 
33 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
34 
35 namespace Foam
36 {
39  (
40  fvPatch,
42  polyPatch
43  );
44 }
45 
46 
47 // * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * * //
48 
50 (
51  const polyPatch& patch,
52  const fvBoundaryMesh& bm
53 )
54 :
55  wallFvPatch(patch, bm),
56  nonConformalFvPatch(static_cast<const fvPatch&>(*this)),
57  nonConformalMappedFvPatchBase(static_cast<const fvPatch&>(*this)),
58  nonConformalMappedWallPolyPatch_
59  (
61  )
62 {}
63 
64 
65 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
66 
68 {}
69 
70 
71 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
72 
75 {
76  return nonConformalMappedWallPolyPatch_;
77 }
78 
79 
82 {
83  return refCast<const nonConformalMappedWallFvPatch>(nbrFvPatch());
84 }
85 
86 
88 {
89  return nonConformalMappedWallPolyPatch_.owner();
90 }
91 
92 
94 {
96 }
97 
98 
100 {
101  return nonConformalFvPatch::size();
102 }
103 
104 
106 {
108 }
109 
110 
112 {
114 }
115 
116 
117 // ************************************************************************* //
Macros for easy insertion into run-time selection tables.
static const char *const typeName
Definition: Field.H:106
Foam::fvBoundaryMesh.
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:64
Non-conformal FV patch. Provides the necessary interface for a FV patch which does not conform to the...
virtual label size() const
Return the size.
virtual const labelUList & faceCells() const
Return the face-cells.
virtual label start() const
Return the start label of this patch in the polyMesh face list.
Base class for fv patches which provides non-conformal mapping between two potentially non-globally c...
Wall fv patch which can do non-conformal mapping of values from another potentially non-globally conf...
const nonConformalMappedWallPolyPatch & nonConformalMappedWallPatch() const
Poly patch.
bool owner() const
Is this patch the owner?
virtual word polyFacesType() const
Return the face-poly-faces patch field type.
virtual label size() const
Return the size.
const nonConformalMappedWallFvPatch & nbrPatch() const
Neighbour patch.
virtual const labelUList & faceCells() const
Return the face-cells.
nonConformalMappedWallFvPatch(const polyPatch &patch, const fvBoundaryMesh &bm)
Construct from polyPatch and fvBoundaryMesh.
virtual label start() const
Return the start label of this patch in the polyMesh face list.
Wall poly patch which can do non-conformal mapping of values from another potentially non-globally co...
A patch is a list of labels that address the faces in the global face list.
Definition: polyPatch.H:70
Foam::wallFvPatch.
Definition: wallFvPatch.H:52
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
addToRunTimeSelectionTable(polyPatch, mergedCyclicPolyPatch, word)
To & refCast(From &r)
Reference type cast template function.
Definition: typeInfo.H:129
defineTypeNameAndDebug(combustionModel, 0)
3D tensor transformation operations.