mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
The use of the term 'source' in the context of post-processing is confusing and does not properly describe the process of region selection. The new names 'surfaceRegion' and 'volRegion' better describe the purpose of the functionObjects which is to provide field processing functionality limited to a specified region of space, either a surface or volume. The keyword 'source' is renamed 'regionType' which better describes the purpose which is to specify the method by which the surface or volume region is selected. The keyword to select the name of the surface or volume region is renamed from 'sourceName' to 'name' consistent with the other name-changes above.
126 lines
3.0 KiB
C++
126 lines
3.0 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
License
|
|
This file is part of OpenFOAM.
|
|
|
|
OpenFOAM is free software: you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
Class
|
|
Foam::labelToFace
|
|
|
|
Description
|
|
A topoSetSource to select faces given explicitly provided face labels.
|
|
|
|
SourceFiles
|
|
labelToFace.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef labelToFace_H
|
|
#define labelToFace_H
|
|
|
|
#include "topoSetSource.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class labelToFace Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class labelToFace
|
|
:
|
|
public topoSetSource
|
|
{
|
|
|
|
// Private data
|
|
|
|
//- Add usage string
|
|
static addToUsageTable usage_;
|
|
|
|
//- Cell labels read from dictionary
|
|
labelList labels_;
|
|
|
|
|
|
// Private Member Functions
|
|
|
|
void combine(topoSet& set, const bool add) const;
|
|
|
|
|
|
public:
|
|
|
|
//- Runtime type information
|
|
TypeName("labelToFace");
|
|
|
|
// Constructors
|
|
|
|
//- Construct from components
|
|
labelToFace
|
|
(
|
|
const polyMesh& mesh,
|
|
const labelList& labels
|
|
);
|
|
|
|
//- Construct from dictionary
|
|
labelToFace
|
|
(
|
|
const polyMesh& mesh,
|
|
const dictionary& dict
|
|
);
|
|
|
|
//- Construct from Istream
|
|
labelToFace
|
|
(
|
|
const polyMesh& mesh,
|
|
Istream&
|
|
);
|
|
|
|
|
|
//- Destructor
|
|
virtual ~labelToFace();
|
|
|
|
|
|
// Member Functions
|
|
|
|
virtual sourceType setType() const
|
|
{
|
|
return FACESETSOURCE;
|
|
}
|
|
|
|
virtual void applyToSet
|
|
(
|
|
const topoSetSource::setAction action,
|
|
topoSet&
|
|
) const;
|
|
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|