/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2011-2017 OpenFOAM Foundation
Copyright (C) 2015-2018 OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with OpenFOAM. If not, see .
Class
Foam::searchableCylinder
Description
Searching on a cylinder.
\heading Dictionary parameters
\table
Property | Description | Required | Default
type | cylinder | selector |
point1 | coordinate of endpoint | yes |
point2 | coordinate of endpoint | yes |
radius | cylinder radius | yes |
\endtable
Note
Longer type name : \c searchableCylinder
SourceFiles
searchableCylinder.C
\*---------------------------------------------------------------------------*/
#ifndef searchableCylinder_H
#define searchableCylinder_H
#include "treeBoundBox.H"
#include "searchableSurface.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
/*---------------------------------------------------------------------------*\
Class searchableCylinder Declaration
\*---------------------------------------------------------------------------*/
class searchableCylinder
:
public searchableSurface
{
private:
// Private Member Data
//- The 'left' point
const point point1_;
//- The 'right' point
const point point2_;
//- Length of vector point2-point1
const scalar magDir_;
//- Normalised vector point2-point1
const vector unitDir_;
//- The radius
const scalar radius_;
//- Names of regions
mutable wordList regions_;
// Private Member Functions
//- Inherit findNearest from searchableSurface
using searchableSurface::findNearest;
//- Find nearest point on cylinder.
pointIndexHit findNearest
(
const point& sample,
const scalar nearestDistSqr
) const;
scalar radius2(const point& pt) const;
//- Find intersection with cylinder
void findLineAll
(
const point& start,
const point& end,
pointIndexHit& near,
pointIndexHit& far
) const;
//- Return the boundBox of the cylinder
boundBox calcBounds() const;
//- No copy construct
searchableCylinder(const searchableCylinder&) = delete;
//- No copy assignment
void operator=(const searchableCylinder&) = delete;
public:
//- Runtime type information
TypeName("searchableCylinder");
// Constructors
//- Construct from components
searchableCylinder
(
const IOobject& io,
const point& point1,
const point& point2,
const scalar radius
);
//- Construct from dictionary (used by searchableSurface)
searchableCylinder
(
const IOobject& io,
const dictionary& dict
);
//- Destructor
virtual ~searchableCylinder() = default;
// Member Functions
//- Names of regions
virtual const wordList& regions() const;
//- Whether supports volume type below
virtual bool hasVolumeType() const
{
return true;
}
//- What is type of points outside bounds
virtual volumeType outsideVolumeType() const
{
return volumeType::OUTSIDE;
}
//- Range of local indices that can be returned.
virtual label size() const
{
return 1;
}
//- Get representative set of element coordinates
// Usually the element centres (should be of length size()).
virtual tmp coordinates() const;
//- Get bounding spheres (centre and radius squared), one per element.
// Any point on element is guaranteed to be inside.
virtual void boundingSpheres
(
pointField& centres,
scalarField& radiusSqr
) const;
//- Get the points that define the surface.
virtual tmp points() const;
//- Does any part of the surface overlap the supplied bound box?
virtual bool overlaps(const boundBox& bb) const
{
NotImplemented;
return false;
}
// Multiple point queries.
virtual void findNearest
(
const pointField& sample,
const scalarField& nearestDistSqr,
List&
) const;
virtual void findLine
(
const pointField& start,
const pointField& end,
List&
) const;
virtual void findLineAny
(
const pointField& start,
const pointField& end,
List&
) const;
//- Get all intersections in order from start to end.
virtual void findLineAll
(
const pointField& start,
const pointField& end,
List>&
) const;
//- From a set of points and indices get the region
virtual void getRegion
(
const List&,
labelList& region
) const;
//- From a set of points and indices get the normal
virtual void getNormal
(
const List&,
vectorField& normal
) const;
//- Determine type (inside/outside/mixed) for point.
// Unknown if cannot be determined (e.g. non-manifold surface)
virtual void getVolumeType
(
const pointField& points,
List& volType
) const;
// regIOobject implementation
bool writeData(Ostream&) const
{
NotImplemented;
return false;
}
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //