/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2018-2020 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 .
\*---------------------------------------------------------------------------*/
#include "sphereToPoint.H"
#include "polyMesh.H"
#include "addToRunTimeSelectionTable.H"
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
namespace Foam
{
defineTypeNameAndDebug(sphereToPoint, 0);
addToRunTimeSelectionTable(topoSetSource, sphereToPoint, word);
addToRunTimeSelectionTable(topoSetSource, sphereToPoint, istream);
addToRunTimeSelectionTable(topoSetPointSource, sphereToPoint, word);
addToRunTimeSelectionTable(topoSetPointSource, sphereToPoint, istream);
addNamedToRunTimeSelectionTable
(
topoSetPointSource,
sphereToPoint,
word,
sphere
);
addNamedToRunTimeSelectionTable
(
topoSetPointSource,
sphereToPoint,
istream,
sphere
);
}
Foam::topoSetSource::addToUsageTable Foam::sphereToPoint::usage_
(
sphereToPoint::typeName,
"\n Usage: sphereToPoint (centreX centreY centreZ) radius\n\n"
" Select all points within bounding sphere\n\n"
);
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
void Foam::sphereToPoint::combine(topoSet& set, const bool add) const
{
const tmp tctrs(this->transform(mesh_.points()));
const pointField& ctrs = tctrs();
const scalar orad2 = sqr(radius_);
const scalar irad2 = innerRadius_ > 0 ? sqr(innerRadius_) : -1;
// Treat innerRadius == 0 like unspecified innerRadius (always accept)
forAll(ctrs, elemi)
{
const scalar d2 = magSqr(ctrs[elemi] - origin_);
if ((d2 < orad2) && (d2 > irad2))
{
addOrDelete(set, elemi, add);
}
}
}
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
Foam::sphereToPoint::sphereToPoint
(
const polyMesh& mesh,
const point& origin,
const scalar radius,
const scalar innerRadius
)
:
topoSetPointSource(mesh),
origin_(origin),
radius_(radius),
innerRadius_(innerRadius)
{}
Foam::sphereToPoint::sphereToPoint
(
const polyMesh& mesh,
const dictionary& dict
)
:
topoSetPointSource(mesh, dict),
origin_(dict.getCompat("origin", {{"centre", -1806}})),
radius_(dict.getCheck("radius", scalarMinMax::ge(0))),
innerRadius_
(
dict.getCheckOrDefault("innerRadius", 0, scalarMinMax::ge(0))
)
{}
Foam::sphereToPoint::sphereToPoint
(
const polyMesh& mesh,
Istream& is
)
:
topoSetPointSource(mesh),
origin_(checkIs(is)),
radius_(readScalar(checkIs(is))),
innerRadius_(0)
{}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
void Foam::sphereToPoint::applyToSet
(
const topoSetSource::setAction action,
topoSet& set
) const
{
if (action == topoSetSource::ADD || action == topoSetSource::NEW)
{
if (verbose_)
{
Info<< " Adding points within sphere,"
<< " origin = " << origin_ << ", radius = " << radius_;
if (innerRadius_ > 0)
{
Info<< ", innerRadius = " << innerRadius_;
}
Info<< endl;
}
combine(set, true);
}
else if (action == topoSetSource::SUBTRACT)
{
if (verbose_)
{
Info<< " Removing points within sphere,"
<< " origin = " << origin_ << ", radius = " << radius_;
if (innerRadius_ > 0)
{
Info<< ", innerRadius = " << innerRadius_;
}
Info<< endl;
}
combine(set, false);
}
}
// ************************************************************************* //