ENH: patchCloud: return pTraits<Type>::max for unfound points
[OpenFOAM-1.7.x.git] / src / meshTools / sets / faceSources / boxToFace / boxToFace.C
blob39f79e3ef8d0e620b3d3d1591a348820266144ab
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2010 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by
13     the Free Software Foundation, either version 3 of the License, or
14     (at your option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 #include "boxToFace.H"
27 #include "polyMesh.H"
29 #include "addToRunTimeSelectionTable.H"
31 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
33 namespace Foam
36 defineTypeNameAndDebug(boxToFace, 0);
38 addToRunTimeSelectionTable(topoSetSource, boxToFace, word);
40 addToRunTimeSelectionTable(topoSetSource, boxToFace, istream);
45 Foam::topoSetSource::addToUsageTable Foam::boxToFace::usage_
47     boxToFace::typeName,
48     "\n    Usage: boxToFace ((minx miny minz) (maxx maxy maxz))\n\n"
49     "    Select all face with faceCentre within bounding box\n\n"
53 // * * * * * * * * * * * * * Private Member Functions  * * * * * * * * * * * //
55 void Foam::boxToFace::combine(topoSet& set, const bool add) const
57     const pointField& ctrs = mesh_.faceCentres();
59     forAll(ctrs, faceI)
60     {
61         if (bb_.contains(ctrs[faceI]))
62         {
63             addOrDelete(set, faceI, add);
64         }
65     }
69 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
71 // Construct from components
72 Foam::boxToFace::boxToFace
74     const polyMesh& mesh,
75     const treeBoundBox& bb
78     topoSetSource(mesh),
79     bb_(bb)
83 // Construct from dictionary
84 Foam::boxToFace::boxToFace
86     const polyMesh& mesh,
87     const dictionary& dict
90     topoSetSource(mesh),
91     bb_(dict.lookup("box"))
95 // Construct from Istream
96 Foam::boxToFace::boxToFace
98     const polyMesh& mesh,
99     Istream& is
102     topoSetSource(mesh),
103     bb_(checkIs(is))
107 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
109 Foam::boxToFace::~boxToFace()
113 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
115 void Foam::boxToFace::applyToSet
117     const topoSetSource::setAction action,
118     topoSet& set
119 ) const
121     if ((action == topoSetSource::NEW) || (action == topoSetSource::ADD))
122     {
123         Info<< "    Adding faces with centre within box " << bb_ << endl;
125         combine(set, true);
126     }
127     else if (action == topoSetSource::DELETE)
128     {
129         Info<< "    Removing faces with centre within box " << bb_ << endl;
131         combine(set, false);
132     }
136 // ************************************************************************* //