42 cylinderAnnulusToCell::typeName,
43 "\n Usage: cylinderAnnulusToCell (p1X p1Y p1Z) (p2X p2Y p2Z)" 44 " outerRadius innerRadius\n\n" 45 " Select all cells with cell centre within bounding cylinder annulus\n\n" 51 void Foam::cylinderAnnulusToCell::combine(topoSet&
set,
const bool add)
const 53 const vector axis = p2_ - p1_;
54 const scalar orad2 =
sqr(outerRadius_);
55 const scalar irad2 =
sqr(innerRadius_);
56 const scalar magAxis2 =
magSqr(axis);
62 vector d = ctrs[celli] - p1_;
63 scalar magD = d & axis;
65 if ((magD > 0) && (magD < magAxis2))
67 scalar d2 = (d & d) -
sqr(magD)/magAxis2;
68 if ((d2 < orad2) && (d2 > irad2))
70 addOrDelete(
set, celli, add);
84 const scalar outerRadius,
85 const scalar innerRadius
91 outerRadius_(outerRadius),
92 innerRadius_(innerRadius)
141 Info<<
" Adding cells with centre within cylinder annulus," 143 << p1_ <<
", p2 = " << p2_ <<
" and outer radius = " << outerRadius_
144 <<
" and inner radius = " << innerRadius_
151 Info<<
" Removing cells with centre within cylinder, with p1 = " 152 << p1_ <<
", p2 = " << p2_ <<
" and outer radius = " << outerRadius_
153 <<
" and inner radius " << innerRadius_
#define forAll(list, i)
Loop across all elements in list.
virtual ~cylinderAnnulusToCell()
A list of keyword definitions, which are a keyword followed by any number of values (e...
dimensionedSymmTensor sqr(const dimensionedVector &dv)
An Istream is an abstract base class for all input systems (streams, files, token lists etc)...
Ostream & endl(Ostream &os)
Add newline and flush stream.
Vector< scalar > vector
A scalar version of the templated Vector.
AccessType combine(const List< T > &, AccessOp aop=accessOp< T >())
Combines sublists into one big list.
Macros for easy insertion into run-time selection tables.
cylinderAnnulusToCell(const polyMesh &mesh, const vector &p1, const vector &p2, const scalar outerRadius, const scalar innerRadius)
Construct from components.
Base class of a source for a topoSet.
vectorField pointField
pointField is a vectorField.
setAction
Enumeration defining the valid actions.
bool readScalar(const char *buf, doubleScalar &s)
Read whole of buf as a scalar. Return true if succesful.
virtual void applyToSet(const topoSetSource::setAction action, topoSet &) const
dimensioned< scalar > magSqr(const dimensioned< Type > &)
addToRunTimeSelectionTable(ensightPart, ensightPartCells, istream)
defineTypeNameAndDebug(combustionModel, 0)
General set of labels of mesh quantity (points, cells, faces).
Class with constructor to add usage string to table.
Mesh consisting of general polyhedral cells.
ITstream & lookup(const word &, bool recursive=false, bool patternMatch=true) const
Find and return an entry data stream.