initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / meshTools / sets / faceSources / boxToFace / boxToFace.C
blobba30ce0266d15a3a4b87d25cd643bd4cfb9db83d
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 "boxToFace.H"
30 #include "polyMesh.H"
32 #include "addToRunTimeSelectionTable.H"
34 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
36 namespace Foam
39 defineTypeNameAndDebug(boxToFace, 0);
41 addToRunTimeSelectionTable(topoSetSource, boxToFace, word);
43 addToRunTimeSelectionTable(topoSetSource, boxToFace, istream);
48 Foam::topoSetSource::addToUsageTable Foam::boxToFace::usage_
50     boxToFace::typeName,
51     "\n    Usage: boxToFace ((minx miny minz) (maxx maxy maxz))\n\n"
52     "    Select all face with faceCentre within bounding box\n\n"
56 // * * * * * * * * * * * * * Private Member Functions  * * * * * * * * * * * //
58 void Foam::boxToFace::combine(topoSet& set, const bool add) const
60     const pointField& ctrs = mesh_.faceCentres();
62     forAll(ctrs, faceI)
63     {
64         if (bb_.contains(ctrs[faceI]))
65         {
66             addOrDelete(set, faceI, add);
67         }
68     }
72 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
74 // Construct from components
75 Foam::boxToFace::boxToFace
77     const polyMesh& mesh,
78     const treeBoundBox& bb
81     topoSetSource(mesh),
82     bb_(bb)
86 // Construct from dictionary
87 Foam::boxToFace::boxToFace
89     const polyMesh& mesh,
90     const dictionary& dict
93     topoSetSource(mesh),
94     bb_(dict.lookup("box"))
98 // Construct from Istream
99 Foam::boxToFace::boxToFace
101     const polyMesh& mesh,
102     Istream& is
105     topoSetSource(mesh),
106     bb_(checkIs(is))
110 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
112 Foam::boxToFace::~boxToFace()
116 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
118 void Foam::boxToFace::applyToSet
120     const topoSetSource::setAction action,
121     topoSet& set
122 ) const
124     if ((action == topoSetSource::NEW) || (action == topoSetSource::ADD))
125     {
126         Info<< "    Adding faces with centre within box " << bb_ << endl;
128         combine(set, true);
129     }
130     else if (action == topoSetSource::DELETE)
131     {
132         Info<< "    Removing faces with centre within box " << bb_ << endl;
134         combine(set, false);
135     }
139 // ************************************************************************* //