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