Added zone handling to sets.
[OpenFOAM-1.6.x.git] / src / meshTools / sets / faceSources / faceToFace / faceToFace.C
blob69ee32b780384ec1781202947cca16861ee81c0d
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 \*---------------------------------------------------------------------------*/
27 #include "faceToFace.H"
28 #include "polyMesh.H"
29 #include "faceSet.H"
31 #include "addToRunTimeSelectionTable.H"
33 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
35 namespace Foam
38 defineTypeNameAndDebug(faceToFace, 0);
40 addToRunTimeSelectionTable(topoSetSource, faceToFace, word);
42 addToRunTimeSelectionTable(topoSetSource, faceToFace, istream);
47 Foam::topoSetSource::addToUsageTable Foam::faceToFace::usage_
49     faceToFace::typeName,
50     "\n    Usage: faceToFace <faceSet>\n\n"
51     "    Select all faces in the faceSet\n\n"
55 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
57 // Construct from components
58 Foam::faceToFace::faceToFace
60     const polyMesh& mesh,
61     const word& setName
64     topoSetSource(mesh),
65     setName_(setName)
69 // Construct from dictionary
70 Foam::faceToFace::faceToFace
72     const polyMesh& mesh,
73     const dictionary& dict
76     topoSetSource(mesh),
77     setName_(dict.lookup("set"))
81 // Construct from Istream
82 Foam::faceToFace::faceToFace
84     const polyMesh& mesh,
85     Istream& is
88     topoSetSource(mesh),
89     setName_(checkIs(is))
93 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
95 Foam::faceToFace::~faceToFace()
99 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
101 void Foam::faceToFace::applyToSet
103     const topoSetSource::setAction action,
104     topoSet& set
105 ) const
107     if ((action == topoSetSource::NEW) || (action == topoSetSource::ADD))
108     {
109         Info<< "    Adding all faces from faceSet " << setName_ << " ..."
110             << endl;
112         // Load the set
113         faceSet loadedSet(mesh_, setName_);
115         set.addSet(loadedSet);
116     }
117     else if (action == topoSetSource::DELETE)
118     {
119         Info<< "    Removing all faces from faceSet " << setName_ << " ..."
120             << endl;
122         // Load the set
123         faceSet loadedSet(mesh_, setName_);
125         set.deleteSet(loadedSet);
126     }
130 // ************************************************************************* //