mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
208 lines
5.6 KiB
C++
208 lines
5.6 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | www.openfoam.com
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
Copyright (C) 2011 OpenFOAM Foundation
|
|
Copyright (C) 2018-2020 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::cellToFace
|
|
|
|
Description
|
|
A \c topoSetFaceSource to select all the faces from given \c cellSet(s).
|
|
|
|
Operands:
|
|
\table
|
|
Operand | Type | Location
|
|
input | cellSet(s) | $FOAM_CASE/constant/polyMesh/sets/\<set\>
|
|
output | faceSet | $FOAM_CASE/constant/polyMesh/sets/\<set\>
|
|
\endtable
|
|
|
|
Usage
|
|
Minimal example by using \c system/topoSetDict.actions:
|
|
\verbatim
|
|
{
|
|
// Mandatory (inherited) entries
|
|
name <name>;
|
|
type faceSet;
|
|
action <action>;
|
|
|
|
// Mandatory entries
|
|
source cellToFace;
|
|
option <option>;
|
|
|
|
// Conditional mandatory entries
|
|
// Select either of the below
|
|
|
|
// Option-1
|
|
sets
|
|
(
|
|
<cellSetName1>
|
|
<cellSetName2>
|
|
...
|
|
);
|
|
|
|
// Option-2
|
|
set <cellSetName>;
|
|
}
|
|
\endverbatim
|
|
|
|
where the entries mean:
|
|
\table
|
|
Property | Description | Type | Req'd | Dflt
|
|
name | Name of faceSet | word | yes | -
|
|
type | Type name: faceSet | word | yes | -
|
|
action | Action applied on faces - see below | word | yes | -
|
|
source | Source name: cellToFace | word | yes | -
|
|
option | Selection type - see below | word | yes | -
|
|
\endtable
|
|
|
|
Options for the \c action entry:
|
|
\verbatim
|
|
new | Create a new faceSet from selected cells of cellSet(s)
|
|
add | Add selected faces of cellSet(s) into this faceSet
|
|
subtract | Remove selected faces of cellSet(s) from this faceSet
|
|
\endverbatim
|
|
|
|
Options for the \c option entry:
|
|
\verbatim
|
|
all | All faces of cells in the cellSet
|
|
both | Faces where both neighbours are in the cellSet
|
|
\endverbatim
|
|
|
|
Options for the conditional mandatory entries:
|
|
\verbatim
|
|
Entry | Description | Type | Req'd | Dflt
|
|
sets | Names of input cellSets | wordList | cond'l | -
|
|
set | Name of input cellSet | word | cond'l | -
|
|
\endverbatim
|
|
|
|
Note
|
|
The order of precedence among the conditional mandatory entries from the
|
|
highest to the lowest is \c sets, and \c set.
|
|
|
|
See also
|
|
- Foam::topoSetSource
|
|
- Foam::topoSetFaceSource
|
|
|
|
SourceFiles
|
|
cellToFace.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef cellToFace_H
|
|
#define cellToFace_H
|
|
|
|
#include "topoSetFaceSource.H"
|
|
#include "Enum.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class cellToFace Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class cellToFace
|
|
:
|
|
public topoSetFaceSource
|
|
{
|
|
public:
|
|
//- Enumeration defining the valid options
|
|
enum cellAction
|
|
{
|
|
ALL,
|
|
BOTH
|
|
};
|
|
|
|
|
|
private:
|
|
|
|
// Private Data
|
|
|
|
//- Add usage string
|
|
static addToUsageTable usage_;
|
|
|
|
static const Enum<cellAction> cellActionNames_;
|
|
|
|
//- Names of cellSets to use
|
|
wordList names_;
|
|
|
|
//- Selection type
|
|
cellAction option_;
|
|
|
|
|
|
// Private Member Functions
|
|
|
|
//- Depending on face to cell option add to or delete from cellSet.
|
|
void combine(topoSet& set, const bool add, const word& setName) const;
|
|
|
|
|
|
public:
|
|
|
|
//- Runtime type information
|
|
TypeName("cellToFace");
|
|
|
|
|
|
// Constructors
|
|
|
|
//- Construct from components
|
|
cellToFace
|
|
(
|
|
const polyMesh& mesh,
|
|
const word& setName,
|
|
const cellAction option
|
|
);
|
|
|
|
//- Construct from dictionary
|
|
cellToFace(const polyMesh& mesh, const dictionary& dict);
|
|
|
|
//- Construct from Istream
|
|
cellToFace(const polyMesh& mesh, Istream& is);
|
|
|
|
|
|
//- Destructor
|
|
virtual ~cellToFace() = default;
|
|
|
|
|
|
// Member Functions
|
|
|
|
virtual void applyToSet
|
|
(
|
|
const topoSetSource::setAction action,
|
|
topoSet& set
|
|
) const;
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|