mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
212 lines
6.2 KiB
C
212 lines
6.2 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2012-2013 OpenFOAM Foundation
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
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 <http://www.gnu.org/licenses/>.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "searchableSurfaceToFaceZone.H"
|
|
#include "polyMesh.H"
|
|
#include "faceZoneSet.H"
|
|
#include "searchableSurface.H"
|
|
#include "syncTools.H"
|
|
|
|
#include "addToRunTimeSelectionTable.H"
|
|
|
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
defineTypeNameAndDebug(searchableSurfaceToFaceZone, 0);
|
|
addToRunTimeSelectionTable
|
|
(
|
|
topoSetSource,
|
|
searchableSurfaceToFaceZone,
|
|
word
|
|
);
|
|
}
|
|
|
|
|
|
Foam::topoSetSource::addToUsageTable Foam::searchableSurfaceToFaceZone::usage_
|
|
(
|
|
searchableSurfaceToFaceZone::typeName,
|
|
"\n Usage: searchableSurfaceToFaceZone surface\n\n"
|
|
" Select all faces whose cell-cell centre vector intersects the surface "
|
|
"\n"
|
|
);
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
// Construct from dictionary
|
|
Foam::searchableSurfaceToFaceZone::searchableSurfaceToFaceZone
|
|
(
|
|
const polyMesh& mesh,
|
|
const dictionary& dict
|
|
)
|
|
:
|
|
topoSetSource(mesh),
|
|
surfacePtr_
|
|
(
|
|
searchableSurface::New
|
|
(
|
|
word(dict.lookup("surface")),
|
|
mesh.objectRegistry::db(),
|
|
dict
|
|
)
|
|
)
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
|
|
|
Foam::searchableSurfaceToFaceZone::~searchableSurfaceToFaceZone()
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
void Foam::searchableSurfaceToFaceZone::applyToSet
|
|
(
|
|
const topoSetSource::setAction action,
|
|
topoSet& set
|
|
) const
|
|
{
|
|
if (!isA<faceZoneSet>(set))
|
|
{
|
|
WarningIn
|
|
(
|
|
"searchableSurfaceToFaceZone::applyToSet"
|
|
"(const topoSetSource::setAction"
|
|
", topoSet"
|
|
) << "Operation only allowed on a faceZoneSet." << endl;
|
|
}
|
|
else
|
|
{
|
|
faceZoneSet& fzSet = refCast<faceZoneSet>(set);
|
|
|
|
// Get cell-cell centre vectors
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
pointField start(mesh_.nFaces());
|
|
pointField end(mesh_.nFaces());
|
|
|
|
const pointField& cc = mesh_.cellCentres();
|
|
|
|
// Internal faces
|
|
for (label faceI = 0; faceI < mesh_.nInternalFaces(); faceI++)
|
|
{
|
|
start[faceI] = cc[mesh_.faceOwner()[faceI]];
|
|
end[faceI] = cc[mesh_.faceNeighbour()[faceI]];
|
|
}
|
|
|
|
// Boundary faces
|
|
vectorField nbrCellCentres;
|
|
syncTools::swapBoundaryCellPositions(mesh_, cc, nbrCellCentres);
|
|
|
|
const polyBoundaryMesh& pbm = mesh_.boundaryMesh();
|
|
|
|
forAll(pbm, patchI)
|
|
{
|
|
const polyPatch& pp = pbm[patchI];
|
|
|
|
if (pp.coupled())
|
|
{
|
|
forAll(pp, i)
|
|
{
|
|
label faceI = pp.start()+i;
|
|
start[faceI] = cc[mesh_.faceOwner()[faceI]];
|
|
end[faceI] = nbrCellCentres[faceI-mesh_.nInternalFaces()];
|
|
}
|
|
}
|
|
else
|
|
{
|
|
forAll(pp, i)
|
|
{
|
|
label faceI = pp.start()+i;
|
|
start[faceI] = cc[mesh_.faceOwner()[faceI]];
|
|
end[faceI] = mesh_.faceCentres()[faceI];
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// Do all intersection tests
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
List<pointIndexHit> hits;
|
|
surfacePtr_().findLine(start, end, hits);
|
|
pointField normals;
|
|
surfacePtr_().getNormal(hits, normals);
|
|
|
|
|
|
// Select intersected faces
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
if ((action == topoSetSource::NEW) || (action == topoSetSource::ADD))
|
|
{
|
|
Info<< " Adding all faces from surface "
|
|
<< surfacePtr_().name() << " ..." << endl;
|
|
|
|
DynamicList<label> newAddressing(fzSet.addressing());
|
|
DynamicList<bool> newFlipMap(fzSet.flipMap());
|
|
|
|
forAll(hits, faceI)
|
|
{
|
|
if (hits[faceI].hit() && !fzSet.found(faceI))
|
|
{
|
|
newAddressing.append(faceI);
|
|
vector d = end[faceI]-start[faceI];
|
|
newFlipMap.append((normals[faceI] & d) < 0);
|
|
}
|
|
}
|
|
|
|
fzSet.addressing().transfer(newAddressing);
|
|
fzSet.flipMap().transfer(newFlipMap);
|
|
fzSet.updateSet();
|
|
}
|
|
else if (action == topoSetSource::DELETE)
|
|
{
|
|
Info<< " Removing all faces from surface "
|
|
<< surfacePtr_().name() << " ..." << endl;
|
|
|
|
// Start off empty
|
|
DynamicList<label> newAddressing(fzSet.addressing().size());
|
|
DynamicList<bool> newFlipMap(fzSet.flipMap().size());
|
|
|
|
forAll(fzSet.addressing(), i)
|
|
{
|
|
if (!hits[fzSet.addressing()[i]].hit())
|
|
{
|
|
newAddressing.append(fzSet.addressing()[i]);
|
|
newFlipMap.append(fzSet.flipMap()[i]);
|
|
}
|
|
}
|
|
fzSet.addressing().transfer(newAddressing);
|
|
fzSet.flipMap().transfer(newFlipMap);
|
|
fzSet.updateSet();
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|