60 sphereToPoint::typeName,
61 "\n Usage: sphereToPoint (centreX centreY centreZ) radius\n\n"
62 " Select all points within bounding sphere\n\n"
68 void Foam::sphereToPoint::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)),
131 radius_(readScalar(checkIs(is))),
148 Info<<
" Adding points within sphere,"
149 <<
" origin = " << origin_ <<
", radius = " << radius_;
151 if (innerRadius_ > 0)
153 Info<<
", innerRadius = " << innerRadius_;
165 Info<<
" Removing points within sphere,"
166 <<
" origin = " << origin_ <<
", radius = " << radius_;
168 if (innerRadius_ > 0)
170 Info<<
", innerRadius = " << innerRadius_;
Macros for easy insertion into run-time selection tables.
An Istream is an abstract base class for all input systems (streams, files, token lists etc)....
static MinMax< scalar > ge(const scalar &minVal)
A semi-infinite range from minVal to the type max.
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...
T getCheckOrDefault(const word &keyword, const T &deflt, const Predicate &pred, enum keyType::option matchOpt=keyType::REGEX) const
Find and return a T, or return the given default value. FatalIOError if it is found and the number of...
Mesh consisting of general polyhedral cells.
virtual const pointField & points() const
Return raw points.
A topoSetPointSource to select points which are inside a given bounding sphere.
sphereToPoint(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 topoSetPointSource is a intermediate class for handling topoSet sources for selecting points.
Class with constructor to add usage string to table.
Base class of a source for a topoSet.
tmp< pointField > transform(const pointField &points) const
Coordinate transform (optionally) coordinates. Returns reference to input data if no transform is act...
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.
const polyMesh & mesh_
Reference to the mesh.
General set of labels of mesh quantity (points, cells, faces).
A class for handling words, derived from Foam::string.
void set(List< bool > &bools, const labelUList &locations)
Set the listed locations (assign 'true').
AccessType combine(const UList< T > &lists, AccessOp aop=accessOp< T >())
Combines sub-lists into a single list.
addNamedToRunTimeSelectionTable(topoSetCellSource, badQualityToCell, word, badQuality)
dimensionedSymmTensor sqr(const dimensionedVector &dv)
Ostream & endl(Ostream &os)
Add newline and flush stream.
addToRunTimeSelectionTable(functionObject, pointHistory, dictionary)
messageStream Info
Information stream (stdout output on master, null elsewhere)
vectorField pointField
pointField is a vectorField.
vector point
Point is a vector.
dimensioned< typename typeOfMag< Type >::type > magSqr(const dimensioned< Type > &dt)
void add(FieldField< Field1, typename typeOfSum< Type1, Type2 >::type > &f, const FieldField< Field1, Type1 > &f1, const FieldField< Field2, Type2 > &f2)
defineTypeNameAndDebug(combustionModel, 0)
#define forAll(list, i)
Loop across all elements in list.