60 sphereToFace::typeName,
61 "\n Usage: sphereToFace (centreX centreY centreZ) radius\n\n"
62 " Select all faces with faceCentre within bounding sphere\n\n"
68void Foam::sphereToFace::combine(topoSet& set,
const bool add)
const
73 const scalar orad2 =
sqr(radius_);
74 const scalar irad2 = innerRadius_ > 0 ?
sqr(innerRadius_) : -1;
80 const scalar d2 =
magSqr(ctrs[elemi] - origin_);
82 if ((d2 < orad2) && (d2 > irad2))
97 const scalar innerRadius
103 innerRadius_(innerRadius)
114 origin_(
dict.getCompat<
vector>(
"origin", {{
"centre", -1806}})),
130 origin_(checkIs(is)),
148 Info<<
" Adding faces within sphere,"
149 <<
" origin = " << origin_ <<
", radius = " << radius_;
151 if (innerRadius_ > 0)
153 Info<<
", innerRadius = " << innerRadius_;
165 Info<<
" Removing faces within sphere,"
166 <<
" origin = " << origin_ <<
", radius = " << radius_;
168 if (innerRadius_ > 0)
170 Info<<
", innerRadius = " << innerRadius_;
Macros for easy insertion into run-time selection tables.
#define addNamedToRunTimeSelectionTable(baseType, thisType, argNames, lookupName)
Add to construction table with 'lookupName' as the key.
#define addToRunTimeSelectionTable(baseType, thisType, argNames)
Add to construction table with typeName as the key.
An Istream is an abstract base class for all input systems (streams, files, token lists etc)....
static MinMax< scalar > ge(const scalar &minVal)
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
T getCheck(const word &keyword, const Predicate &pred, enum keyType::option matchOpt=keyType::REGEX) const
Find and return a T with additional checking FatalIOError if not found, or if the number of tokens is...
Mesh consisting of general polyhedral cells.
const vectorField & faceCentres() const
A topoSetFaceSource to select faces based on face centres inside a given bounding sphere.
sphereToFace(const polyMesh &mesh, const point &origin, const scalar radius, const scalar innerRadius=0)
Construct from components.
virtual void applyToSet(const topoSetSource::setAction action, topoSet &set) const
Apply specified action to the topoSet.
Specialization of rigidBody to construct a sphere given the mass and radius.
The topoSetFaceSource is a intermediate class for handling topoSet sources for selecting faces.
topoSetFaceSource(const polyMesh &mesh)
Construct from mesh.
Class with constructor to add usage string to table.
Base class of a source for a topoSet.
void addOrDelete(topoSet &set, const label id, const bool add) const
Add or delete id from set. Add when 'add' is true.
setAction
Enumeration defining various actions.
@ SUBTRACT
Subtract elements from current set.
@ ADD
Add elements to current set.
@ NEW
Create a new set and ADD elements to it.
bool verbose_
Output verbosity (default: true).
const polyMesh & mesh() const noexcept
Reference to the mesh.
const polyMesh & mesh_
Reference to the mesh.
static Istream & checkIs(Istream &is)
Check state of stream.
General set of labels of mesh quantity (points, cells, faces).
A class for handling words, derived from Foam::string.
#define defineTypeNameAndDebug(Type, DebugSwitch)
Define the typeName and debug information.
dimensionedSymmTensor sqr(const dimensionedVector &dv)
refinementData transform(const tensor &, const refinementData val)
No-op rotational transform for base types.
messageStream Info
Information stream (stdout output on master, null elsewhere).
Ostream & endl(Ostream &os)
Add newline and flush stream.
vector point
Point is a vector.
vectorField pointField
pointField is a vectorField.
dimensioned< typename typeOfMag< Type >::type > magSqr(const dimensioned< Type > &dt)
dict add("bounds", meshBb)
#define forAll(list, i)
Loop across all elements in list.