Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
004b5405
Commit
004b5405
authored
Jan 07, 2013
by
andy
Browse files
ENH: Added findPatchIDs function to polyBoundaryMesh
parent
00a6e3ab
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/OpenFOAM/meshes/polyMesh/polyBoundaryMesh/polyBoundaryMesh.H
View file @
004b5405
...
...
@@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-201
2
OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-201
3
OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
...
...
@@ -176,6 +176,10 @@ public:
//- Find patch index given a name
label
findPatchID
(
const
word
&
patchName
)
const
;
//- Find patch indices for a given polyPatch type
template
<
class
Type
>
labelHashSet
findPatchIDs
()
const
;
//- Return patch index for a given face label
label
whichPatch
(
const
label
faceIndex
)
const
;
...
...
@@ -235,6 +239,7 @@ public:
IOstream
::
compressionType
cmp
)
const
;
// Member Operators
//- Return const and non-const reference to polyPatch by index.
...
...
@@ -259,6 +264,12 @@ public:
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#ifdef NoRepository
#include "polyBoundaryMeshTemplates.C"
#endif
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //
src/OpenFOAM/meshes/polyMesh/polyBoundaryMesh/polyBoundaryMeshTemplates.C
0 → 100644
View file @
004b5405
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2013 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
\*---------------------------------------------------------------------------*/
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
template
<
class
Type
>
Foam
::
labelHashSet
Foam
::
polyBoundaryMesh
::
findPatchIDs
()
const
{
const
polyBoundaryMesh
&
bm
=
*
this
;
labelHashSet
patchIDs
(
bm
.
size
());
forAll
(
bm
,
patchI
)
{
if
(
isA
<
Type
>
(
bm
[
patchI
]))
{
patchIDs
.
insert
(
patchI
);
}
}
return
patchIDs
;
}
// ************************************************************************* //
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment