Files
openfoam/src/meshTools/sets/faceSources/patchToFace/patchToFace.H
2018-12-18 16:28:27 +01:00

121 lines
3.3 KiB
C++

/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
\\/ M anipulation | Copyright (C) 2018 OpenCFD Ltd.
-------------------------------------------------------------------------------
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/>.
Class
Foam::patchToFace
Description
A topoSetFaceSource to select faces based on usage in patches.
\heading Dictionary parameters
\table
Property | Description | Required | Default
patches | The patch names or regexs | possibly |
patch | The patch name or regex | possibly |
name | Older specification for 'patch' | no |
\endtable
Note
Must specify "patches", "patch" or "name" (highest to lowest precedence).
SourceFiles
patchToFace.C
\*---------------------------------------------------------------------------*/
#ifndef patchToFace_H
#define patchToFace_H
#include "topoSetFaceSource.H"
#include "wordRes.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
/*---------------------------------------------------------------------------*\
Class patchToFace Declaration
\*---------------------------------------------------------------------------*/
class patchToFace
:
public topoSetFaceSource
{
// Private data
//- Add usage string
static addToUsageTable usage_;
//- Matcher for patches
wordRes selectedPatches_;
// Private Member Functions
void combine(topoSet& set, const bool add) const;
public:
//- Runtime type information
TypeName("patchToFace");
// Constructors
//- Construct from components
patchToFace(const polyMesh& mesh, const wordRe& patchName);
//- Construct from dictionary
patchToFace(const polyMesh& mesh, const dictionary& dict);
//- Construct from Istream
patchToFace(const polyMesh& mesh, Istream& is);
//- Destructor
virtual ~patchToFace() = default;
// Member Functions
virtual void applyToSet
(
const topoSetSource::setAction action,
topoSet& set
) const;
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //