Public Types | Public Member Functions | List of all members
faceToCell Class Reference

A topoSetCellSource to select all cells based on usage in given faceSet(s), e.g. select cells that are the owner/neighbour/any of the faces in a given faceSet. More...

Inheritance diagram for faceToCell:
Inheritance graph
[legend]
Collaboration diagram for faceToCell:
Collaboration graph
[legend]

Public Types

enum  faceAction { ANY, ALL, OWNER, NEIGHBOUR }
 
- Public Types inherited from topoSetSource
enum  sourceType {
  UNKNOWN_SOURCE = 0, CELL_TYPE = 0x1, FACE_TYPE = 0x2, POINT_TYPE = 0x4,
  SET_SOURCE = 0x10, CELLSET_SOURCE = (CELL_TYPE | SET_SOURCE), FACESET_SOURCE = (FACE_TYPE | SET_SOURCE), POINTSET_SOURCE = (POINT_TYPE | SET_SOURCE),
  ZONE_SOURCE = 0x20, CELLZONE_SOURCE = (CELL_TYPE | ZONE_SOURCE), FACEZONE_SOURCE = (FACE_TYPE | ZONE_SOURCE), POINTZONE_SOURCE = (POINT_TYPE | ZONE_SOURCE),
  CELLSETSOURCE = CELLSET_SOURCE, FACESETSOURCE = FACESET_SOURCE, POINTSETSOURCE = POINTSET_SOURCE, CELLZONESOURCE = CELLZONE_SOURCE,
  FACEZONESOURCE = FACEZONE_SOURCE, POINTZONESOURCE = POINTZONE_SOURCE
}
 
enum  setAction {
  ADD, NEW, SUBTRACT, SUBSET,
  INVERT, CLEAR, REMOVE, LIST,
  DELETE = SUBTRACT
}
 

Public Member Functions

 TypeName ("faceToCell")
 
 faceToCell (const polyMesh &mesh, const word &setName, const faceAction option)
 
 faceToCell (const polyMesh &mesh, const dictionary &dict)
 
 faceToCell (const polyMesh &mesh, Istream &is)
 
virtual ~faceToCell ()=default
 
virtual void applyToSet (const topoSetSource::setAction action, topoSet &set) const
 
- Public Member Functions inherited from topoSetCellSource
 declareRunTimeSelectionTable (autoPtr, topoSetCellSource, word,(const polyMesh &mesh, const dictionary &dict),(mesh, dict))
 
 declareRunTimeSelectionTable (autoPtr, topoSetCellSource, istream,(const polyMesh &mesh, Istream &is),(mesh, is))
 
 topoSetCellSource (const polyMesh &mesh)
 
 topoSetCellSource (const polyMesh &mesh, const dictionary &dict)
 
autoPtr< topoSetCellSourceclone () const
 
virtual ~topoSetCellSource ()=default
 
virtual topoSetSource::sourceType setType () const
 
- Public Member Functions inherited from topoSetSource
 TypeName ("topoSetSource")
 
 declareRunTimeSelectionTable (autoPtr, topoSetSource, word,(const polyMesh &mesh, const dictionary &dict),(mesh, dict))
 
 declareRunTimeSelectionTable (autoPtr, topoSetSource, istream,(const polyMesh &mesh, Istream &is),(mesh, is))
 
 topoSetSource (const polyMesh &mesh, bool verbose=true)
 
 topoSetSource (const polyMesh &mesh, const dictionary &dict)
 
autoPtr< topoSetSourceclone () const
 
virtual ~topoSetSource ()=default
 
const polyMeshmesh () const noexcept
 
bool verbose () const noexcept
 
bool verbose (bool on) noexcept
 
void verbose (const dictionary &dict)
 

Additional Inherited Members

- Static Public Member Functions inherited from topoSetCellSource
static autoPtr< topoSetCellSourceNew (const word &sourceType, const polyMesh &mesh, const dictionary &dict)
 
static autoPtr< topoSetCellSourceNew (const word &sourceType, const polyMesh &mesh, Istream &is)
 
- Static Public Member Functions inherited from topoSetSource
static IstreamcheckIs (Istream &is)
 
static bool isSetSource (const sourceType t) noexcept
 
static bool isZoneSource (const sourceType t) noexcept
 
static bool isCell (const sourceType t) noexcept
 
static bool isFace (const sourceType t) noexcept
 
static bool isPoint (const sourceType t) noexcept
 
static const stringusage (const word &name)
 
static autoPtr< topoSetSourceNew (const word &topoSetSourceType, const polyMesh &mesh, const dictionary &dict)
 
static autoPtr< topoSetSourceNew (const word &topoSetSourceType, const polyMesh &mesh, Istream &is)
 
static setAction toAction (const word &actionName)
 
- Static Public Attributes inherited from topoSetSource
static const Enum< setActionactionNames
 
- Protected Member Functions inherited from topoSetSource
void addOrDelete (topoSet &set, const label id, const bool add) const
 
void addOrDelete (topoSet &set, const labelUList &labels, const bool add) const
 
void addOrDelete (topoSet &set, const bitSet &labels, const bool add) const
 
 topoSetSource (const topoSetSource &)=delete
 
void operator= (const topoSetSource &)=delete
 
- Static Protected Member Functions inherited from topoSetSource
static bool check (labelList &list, const label maxLabel)
 
- Protected Attributes inherited from topoSetSource
const polyMeshmesh_
 
bool verbose_
 
- Static Protected Attributes inherited from topoSetSource
static const string illegalSource_
 
static HashTable< string > * usageTablePtr_ = nullptr
 

Detailed Description

A topoSetCellSource to select all cells based on usage in given faceSet(s), e.g. select cells that are the owner/neighbour/any of the faces in a given faceSet.

Operands:

Operand Type Location
input faceSet(s) $FOAM_CASE/constant/polyMesh/sets/<set>
output cellSet $FOAM_CASE/constant/polyMesh/sets/<set>
Usage
Minimal example by using system/topoSetDict.actions:
{
    // Mandatory (inherited) entries
    name        <name>;
    type        cellSet;
    action      <action>;

    // Mandatory entries
    source      faceToCell;
    option      <option>;

    // Conditional mandatory entries
    // Select either of the below

    // Option-1
    sets
    (
        <faceSetName0>
        <faceSetName1>
        ...
    );

    // Option-2
    set     <faceSetName>;
}

where the entries mean:

Property Description Type Req'd Dflt
name Name of cellSet word yes -
type Type name: cellSet word yes -
action Action applied on cells - see below word yes -
source Source name: faceToCell word yes -
option Selection type - see below word yes -

Options for the action entry:

      new      | Create a new cellSet from selected cells
      add      | Add selected cells into this cellSet
      subtract | Remove selected cells from this cellSet

Options for the option entry:

      all       | Cells that are either owner or neighbour of given faces
      any       | Cells that are either owner or neighbour of given faces
      owner     | Cells that are owner of given faces
      neighbour | Cells that are neighbour of given faces

Options for the conditional mandatory entries:

      Entry    | Description                | Type     | Req'd  | Dflt
      sets     | Names of input faceSets    | wordList | cond'l | -
      set      | Name of input faceSet      | word     | cond'l | -
Note
The order of precedence among the conditional mandatory entries from the highest to the lowest is sets, and set.
See also
Source files

Definition at line 175 of file faceToCell.H.

Member Enumeration Documentation

◆ faceAction

enum faceAction
Enumerator
ANY 
ALL 
OWNER 
NEIGHBOUR 

Definition at line 181 of file faceToCell.H.

Constructor & Destructor Documentation

◆ faceToCell() [1/3]

faceToCell ( const polyMesh mesh,
const word setName,
const faceAction  option 
)

Definition at line 133 of file faceToCell.C.

◆ faceToCell() [2/3]

faceToCell ( const polyMesh mesh,
const dictionary dict 
)

Definition at line 146 of file faceToCell.C.

References dict, dictionary::readEntry(), and dictionary::readIfPresent().

Here is the call graph for this function:

◆ faceToCell() [3/3]

faceToCell ( const polyMesh mesh,
Istream is 
)

Definition at line 165 of file faceToCell.C.

◆ ~faceToCell()

virtual ~faceToCell ( )
virtualdefault

Member Function Documentation

◆ TypeName()

TypeName ( "faceToCell"  )

◆ applyToSet()

void applyToSet ( const topoSetSource::setAction  action,
topoSet set 
) const
virtual

Implements topoSetSource.

Definition at line 179 of file faceToCell.C.

References topoSetSource::ADD, Foam::ListListOps::combine(), Foam::flatOutput(), Foam::Info, topoSetSource::NEW, Foam::nl, Foam::BitOps::set(), and topoSetSource::SUBTRACT.

Here is the call graph for this function:

The documentation for this class was generated from the following files: