BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / applications / utilities / mesh / manipulation / insideCells / insideCells.C
blobd2199ac74e681715fa1eb18213288c2dca5d07e8
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
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 Description
25     Picks up cells with cell centre 'inside' of surface.
26     Requires surface to be closed and singly connected.
28 \*---------------------------------------------------------------------------*/
30 #include "argList.H"
31 #include "Time.H"
32 #include "polyMesh.H"
33 #include "triSurface.H"
34 #include "triSurfaceSearch.H"
35 #include "cellSet.H"
37 using namespace Foam;
39 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
41 // Main program:
43 int main(int argc, char *argv[])
45     argList::addNote
46     (
47         "Create a cellSet for cells with their centres inside the defined "
48         "surface.\n"
49         "Surface must be closed and singly connected."
50     );
52     argList::noParallel();
53     argList::validArgs.append("surfaceFile");
54     argList::validArgs.append("cellSet");
56 #   include "setRootCase.H"
57 #   include "createTime.H"
58 #   include "createPolyMesh.H"
60     const fileName surfName = args[1];
61     const fileName setName  = args[2];
63     // Read surface
64     Info<< "Reading surface from " << surfName << endl;
65     triSurface surf(surfName);
67     // Destination cellSet.
68     cellSet insideCells(mesh, setName, IOobject::NO_READ);
71     // Construct search engine on surface
72     triSurfaceSearch querySurf(surf);
74     boolList inside(querySurf.calcInside(mesh.cellCentres()));
76     forAll(inside, cellI)
77     {
78         if (inside[cellI])
79         {
80             insideCells.insert(cellI);
81         }
82     }
85     Info<< "Selected " << insideCells.size() << " of " << mesh.nCells()
86         << " cells" << nl << nl
87         << "Writing selected cells to cellSet " << insideCells.name()
88         << nl << nl
89         << "Use this cellSet e.g. with subsetMesh : " << nl << nl
90         << "    subsetMesh " << insideCells.name()
91         << nl << endl;
93     insideCells.write();
95     Info<< "End\n" << endl;
97     return 0;
101 // ************************************************************************* //