50 surfaceToPoint::typeName,
51 "\n Usage: surfaceToPoint <surface> <near> <inside> <outside>\n\n"
52 " <surface> name of triSurface\n"
53 " <near> scalar; include points with coordinate <= near to surface\n"
54 " <inside> boolean; whether to include points on opposite side of"
56 " <outside> boolean; whether to include points on this side of"
63void Foam::surfaceToPoint::combine(topoSet& set,
const bool add)
const
67 triSurface surf(surfName_, surfType_, scale_);
71 Info<<
" Read surface from " << surfName_
72 <<
" in = "<< timer.cpuTimeIncrement() <<
" s" <<
nl <<
endl;
76 triSurfaceSearch querySurf(surf);
78 if (includeInside_ || includeOutside_)
82 forAll(pointInside, pointi)
84 if (pointInside[pointi] ? includeInside_ : includeOutside_)
96 const vector span(nearDist_, nearDist_, nearDist_);
100 const point& pt = meshPoints[pointi];
104 if (inter.hit() && inter.point().dist(pt) < nearDist_)
113void Foam::surfaceToPoint::checkSettings()
const
115 if (nearDist_ < 0 && !includeInside_ && !includeOutside_)
118 <<
"Illegal point selection specification."
119 <<
" Result would be either all or no points." <<
endl
120 <<
"Please set one of includeInside or includeOutside"
121 <<
" to true, set nearDistance to a value > 0"
131 const polyMesh&
mesh,
132 const fileName& surfName,
133 const scalar nearDist,
134 const bool includeInside,
135 const bool includeOutside
138 topoSetPointSource(
mesh),
143 includeInside_(includeInside),
144 includeOutside_(includeOutside)
158 surfType_(
dict.getOrDefault<
word>(
"fileType",
word::null)),
159 scale_(
dict.getOrDefault<scalar>(
"scale", -1)),
160 nearDist_(
dict.get<scalar>(
"nearDistance")),
161 includeInside_(
dict.get<bool>(
"includeInside")),
162 includeOutside_(
dict.get<bool>(
"includeOutside"))
175 surfName_(checkIs(is)),
178 nearDist_(readScalar(checkIs(is))),
179 includeInside_(
readBool(checkIs(is))),
180 includeOutside_(
readBool(checkIs(is)))
198 Info<<
" Adding points in relation to surface "
199 << surfName_ <<
" ..." <<
endl;
208 Info<<
" Removing points in relation to surface "
209 << surfName_ <<
" ..." <<
endl;
Macros for easy insertion into run-time selection tables.
#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)....
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
A class for handling file names.
Mesh consisting of general polyhedral cells.
A topoSetPointSource to select points based on relation to a surface given by an external file.
surfaceToPoint(const polyMesh &mesh, const fileName &surfName, const scalar nearDist, const bool includeInside, const bool includeOutside)
Construct from components.
virtual void applyToSet(const topoSetSource::setAction action, topoSet &set) const
Apply specified action to the topoSet.
The topoSetPointSource is a intermediate class for handling topoSet sources for selecting points.
topoSetPointSource(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.
#define FatalErrorInFunction
Report an error message using Foam::FatalError.
messageStream Info
Information stream (stdout output on master, null elsewhere).
Ostream & endl(Ostream &os)
Add newline and flush stream.
void add(DimensionedField< scalar, GeoMesh > &result, const dimensioned< scalar > &dt1, const DimensionedField< scalar, GeoMesh > &f2)
vector point
Point is a vector.
List< bool > boolList
A List of bools.
error FatalError
Error stream (stdout output on all processes), with additional 'FOAM FATAL ERROR' header text and sta...
vectorField pointField
pointField is a vectorField.
PointIndexHit< point > pointIndexHit
A PointIndexHit with a 3D point.
errorManipArg< error, int > exit(error &err, const int errNo=1)
cpuTimePosix cpuTime
Selection of preferred clock mechanism for the elapsed cpu time.
bool readBool(Istream &is)
Read bool from stream using Foam::Switch(Istream&).
constexpr char nl
The newline '\n' character (0x0a).
dict add("bounds", meshBb)
#define forAll(list, i)
Loop across all elements in list.