initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / meshTools / sets / cellSources / boxToCell / boxToCell.C
blobc53a881e82c2509af95df89b459037f4ebd48128
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 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 the
13     Free Software Foundation; either version 2 of the License, or (at your
14     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, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 Description
27 \*---------------------------------------------------------------------------*/
29 #include "boxToCell.H"
30 #include "polyMesh.H"
32 #include "addToRunTimeSelectionTable.H"
34 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
36 namespace Foam
39 defineTypeNameAndDebug(boxToCell, 0);
41 addToRunTimeSelectionTable(topoSetSource, boxToCell, word);
43 addToRunTimeSelectionTable(topoSetSource, boxToCell, istream);
48 Foam::topoSetSource::addToUsageTable Foam::boxToCell::usage_
50     boxToCell::typeName,
51     "\n    Usage: boxToCell (minx miny minz) (maxx maxy maxz)\n\n"
52     "    Select all cells with cellCentre within bounding box\n\n"
56 // * * * * * * * * * * * * * Private Member Functions  * * * * * * * * * * * //
58 void Foam::boxToCell::combine(topoSet& set, const bool add) const
60     const pointField& ctrs = mesh_.cellCentres();
62     forAll(ctrs, cellI)
63     {
64         if (bb_.contains(ctrs[cellI]))
65         {
66             addOrDelete(set, cellI, add);
67         }
68     }
72 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
74 // Construct from components
75 Foam::boxToCell::boxToCell
77     const polyMesh& mesh,
78     const treeBoundBox& bb
81     topoSetSource(mesh),
82     bb_(bb)
86 // Construct from dictionary
87 Foam::boxToCell::boxToCell
89     const polyMesh& mesh,
90     const dictionary& dict
93     topoSetSource(mesh),
94     bb_(dict.lookup("box"))
98 // Construct from Istream
99 Foam::boxToCell::boxToCell
101     const polyMesh& mesh,
102     Istream& is
105     topoSetSource(mesh),
106     bb_(checkIs(is))
109 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
111 Foam::boxToCell::~boxToCell()
115 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
117 void Foam::boxToCell::applyToSet
119     const topoSetSource::setAction action,
120     topoSet& set
121 ) const
123     if ((action == topoSetSource::NEW) || (action == topoSetSource::ADD))
124     {
125         Info<< "    Adding cells with center within box " << bb_ << endl;
127         combine(set, true);
128     }
129     else if (action == topoSetSource::DELETE)
130     {
131         Info<< "    Removing cells with center within box " << bb_ << endl;
133         combine(set, false);
134     }
138 // ************************************************************************* //