Loading...
Searching...
No Matches
surfaceToPoint.C
Go to the documentation of this file.
1/*---------------------------------------------------------------------------*\
2 ========= |
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4 \\ / O peration |
5 \\ / A nd | www.openfoam.com
6 \\/ M anipulation |
7-------------------------------------------------------------------------------
8 Copyright (C) 2011-2016 OpenFOAM Foundation
9 Copyright (C) 2017-2022 OpenCFD Ltd.
10-------------------------------------------------------------------------------
11License
12 This file is part of OpenFOAM.
13
14 OpenFOAM is free software: you can redistribute it and/or modify it
15 under the terms of the GNU General Public License as published by
16 the Free Software Foundation, either version 3 of the License, or
17 (at your option) any later version.
18
19 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
20 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
21 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22 for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
26
27\*---------------------------------------------------------------------------*/
28
29#include "surfaceToPoint.H"
30#include "polyMesh.H"
31#include "triSurfaceSearch.H"
32#include "triSurface.H"
33#include "cpuTime.H"
36// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
38namespace Foam
39{
45}
46
47
48Foam::topoSetSource::addToUsageTable Foam::surfaceToPoint::usage_
49(
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"
55 " surface normal\n"
56 " <outside> boolean; whether to include points on this side of"
57 " surface normal\n\n"
58);
59
60
61// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
62
63void Foam::surfaceToPoint::combine(topoSet& set, const bool add) const
64{
65 cpuTime timer;
66
67 triSurface surf(surfName_, surfType_, scale_);
68
69 if (verbose_)
70 {
71 Info<< " Read surface from " << surfName_
72 << " in = "<< timer.cpuTimeIncrement() << " s" << nl << endl;
73 }
74
75 // Construct search engine on surface
76 triSurfaceSearch querySurf(surf);
77
78 if (includeInside_ || includeOutside_)
79 {
80 boolList pointInside(querySurf.calcInside(mesh_.points()));
81
82 forAll(pointInside, pointi)
83 {
84 if (pointInside[pointi] ? includeInside_ : includeOutside_)
85 {
86 addOrDelete(set, pointi, add);
87 }
88 }
89 }
90
91 if (nearDist_ > 0)
92 {
93 const pointField& meshPoints = mesh_.points();
94
95 // Box dimensions to search in octree.
96 const vector span(nearDist_, nearDist_, nearDist_);
97
98 forAll(meshPoints, pointi)
99 {
100 const point& pt = meshPoints[pointi];
101
102 pointIndexHit inter = querySurf.nearest(pt, span);
103
104 if (inter.hit() && inter.point().dist(pt) < nearDist_)
105 {
106 addOrDelete(set, pointi, add);
107 }
108 }
109 }
110}
111
112
113void Foam::surfaceToPoint::checkSettings() const
114{
115 if (nearDist_ < 0 && !includeInside_ && !includeOutside_)
116 {
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"
123 }
124}
125
126
127// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
128
130(
131 const polyMesh& mesh,
132 const fileName& surfName,
133 const scalar nearDist,
134 const bool includeInside,
135 const bool includeOutside
136)
137:
138 topoSetPointSource(mesh),
139 surfName_(surfName),
140 surfType_(),
141 scale_(-1),
142 nearDist_(nearDist),
143 includeInside_(includeInside),
144 includeOutside_(includeOutside)
145{
146 checkSettings();
147}
148
149
151(
152 const polyMesh& mesh,
153 const dictionary& dict
154)
155:
157 surfName_(dict.get<fileName>("file").expand()),
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"))
163{
164 checkSettings();
165}
166
167
169(
170 const polyMesh& mesh,
171 Istream& is
172)
173:
175 surfName_(checkIs(is)),
176 surfType_(),
177 scale_(-1),
178 nearDist_(readScalar(checkIs(is))),
179 includeInside_(readBool(checkIs(is))),
180 includeOutside_(readBool(checkIs(is)))
182 checkSettings();
183}
184
185
186// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
187
189(
190 const topoSetSource::setAction action,
191 topoSet& set
192) const
193{
194 if (action == topoSetSource::ADD || action == topoSetSource::NEW)
195 {
196 if (verbose_)
197 {
198 Info<< " Adding points in relation to surface "
199 << surfName_ << " ..." << endl;
200 }
201
202 combine(set, true);
203 }
204 else if (action == topoSetSource::SUBTRACT)
205 {
206 if (verbose_)
207 {
208 Info<< " Removing points in relation to surface "
209 << surfName_ << " ..." << endl;
210 }
211
212 combine(set, false);
213 }
214}
215
216
217// ************************************************************************* //
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)....
Definition Istream.H:60
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
Definition dictionary.H:133
A class for handling file names.
Definition fileName.H:75
Mesh consisting of general polyhedral cells.
Definition polyMesh.H:79
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).
Definition topoSet.H:63
A class for handling words, derived from Foam::string.
Definition word.H:66
#define defineTypeNameAndDebug(Type, DebugSwitch)
Define the typeName and debug information.
Definition className.H:142
dynamicFvMesh & mesh
#define FatalErrorInFunction
Report an error message using Foam::FatalError.
Definition error.H:600
Namespace for OpenFOAM.
messageStream Info
Information stream (stdout output on master, null elsewhere).
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition Ostream.H:519
void add(DimensionedField< scalar, GeoMesh > &result, const dimensioned< scalar > &dt1, const DimensionedField< scalar, GeoMesh > &f2)
vector point
Point is a vector.
Definition point.H:37
List< bool > boolList
A List of bools.
Definition List.H:60
error FatalError
Error stream (stdout output on all processes), with additional 'FOAM FATAL ERROR' header text and sta...
vectorField pointField
pointField is a vectorField.
Vector< scalar > vector
Definition vector.H:57
PointIndexHit< point > pointIndexHit
A PointIndexHit with a 3D point.
errorManipArg< error, int > exit(error &err, const int errNo=1)
Definition errorManip.H:125
cpuTimePosix cpuTime
Selection of preferred clock mechanism for the elapsed cpu time.
Definition cpuTimeFwd.H:38
bool readBool(Istream &is)
Read bool from stream using Foam::Switch(Istream&).
Definition bool.C:72
constexpr char nl
The newline '\n' character (0x0a).
Definition Ostream.H:50
dict add("bounds", meshBb)
dictionary dict
#define forAll(list, i)
Loop across all elements in list.
Definition stdFoam.H:299