initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / meshTools / sets / cellSources / cellToCell / cellToCell.C
blob760d3541bc905e440e3c6d94bd0c0294bb87ff6d
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 "cellToCell.H"
30 #include "polyMesh.H"
31 #include "cellSet.H"
33 #include "addToRunTimeSelectionTable.H"
35 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
37 namespace Foam
40 defineTypeNameAndDebug(cellToCell, 0);
42 addToRunTimeSelectionTable(topoSetSource, cellToCell, word);
44 addToRunTimeSelectionTable(topoSetSource, cellToCell, istream);
49 Foam::topoSetSource::addToUsageTable Foam::cellToCell::usage_
51     cellToCell::typeName,
52     "\n    Usage: cellToCell <cellSet>\n\n"
53     "    Select all cells in the cellSet\n\n"
57 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
59 // Construct from components
60 Foam::cellToCell::cellToCell
62     const polyMesh& mesh,
63     const word& setName
66     topoSetSource(mesh),
67     setName_(setName)
71 // Construct from dictionary
72 Foam::cellToCell::cellToCell
74     const polyMesh& mesh,
75     const dictionary& dict          
78     topoSetSource(mesh),
79     setName_(dict.lookup("set"))
83 // Construct from Istream
84 Foam::cellToCell::cellToCell
86     const polyMesh& mesh,
87     Istream& is
90     topoSetSource(mesh),
91     setName_(checkIs(is))
95 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
97 Foam::cellToCell::~cellToCell()
101 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
103 void Foam::cellToCell::applyToSet
105     const topoSetSource::setAction action,
106     topoSet& set
107 ) const
109     if ((action == topoSetSource::ADD) || (action == topoSetSource::NEW))
110     {
111         Pout<< "    Adding all elements of cellSet " << setName_ << " ..."
112             << endl;
114         // Load the set
115         cellSet loadedSet(mesh_, setName_);
117         set.addSet(loadedSet);
118     }
119     else if (action == topoSetSource::DELETE)
120     {
121         Pout<< "    Removing all elements of cellSet " << setName_ << " ..."
122             << endl;
124         // Load the set
125         cellSet loadedSet(mesh_, setName_);
127         set.deleteSet(loadedSet);
128     }
132 // ************************************************************************* //