mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
175 lines
4.5 KiB
C++
175 lines
4.5 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
|
|
\\/ M anipulation | Copyright (C) 2016 OpenCFD Ltd.
|
|
-------------------------------------------------------------------------------
|
|
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::cellSet
|
|
|
|
Description
|
|
A collection of cell labels.
|
|
|
|
SourceFiles
|
|
cellSet.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef cellSet_H
|
|
#define cellSet_H
|
|
|
|
#include "topoSet.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class cellSet Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class cellSet
|
|
:
|
|
public topoSet
|
|
{
|
|
// Private Member Functions
|
|
|
|
//- Disallow default bitwise copy construct
|
|
cellSet(const cellSet&);
|
|
|
|
|
|
public:
|
|
|
|
//- Runtime type information
|
|
TypeName("cellSet");
|
|
|
|
|
|
// Constructors
|
|
|
|
//- Construct from IOobject. No checking.
|
|
cellSet(const IOobject& obj);
|
|
|
|
//- Construct from polyMesh and name. Checks for valid cell ids.
|
|
cellSet
|
|
(
|
|
const polyMesh& mesh,
|
|
const word& name,
|
|
readOption r=MUST_READ,
|
|
writeOption w=NO_WRITE
|
|
);
|
|
|
|
//- Construct empty from size of labelHashSet
|
|
cellSet
|
|
(
|
|
const polyMesh& mesh,
|
|
const word& name,
|
|
const label sizes,
|
|
writeOption w=NO_WRITE
|
|
);
|
|
|
|
//- Construct from existing set
|
|
cellSet
|
|
(
|
|
const polyMesh& mesh,
|
|
const word& name,
|
|
const topoSet&,
|
|
writeOption w=NO_WRITE
|
|
);
|
|
|
|
//- Construct from labelHashSet
|
|
cellSet
|
|
(
|
|
const polyMesh& mesh,
|
|
const word& name,
|
|
const labelHashSet&,
|
|
writeOption w=NO_WRITE
|
|
);
|
|
|
|
|
|
// Used for tetMesh cellSet only.
|
|
|
|
//- Construct from objectRegistry and name.
|
|
cellSet
|
|
(
|
|
const Time&,
|
|
const word& name,
|
|
readOption r=MUST_READ,
|
|
writeOption w=NO_WRITE
|
|
);
|
|
|
|
//- Construct empty from objectRegistry.
|
|
cellSet
|
|
(
|
|
const Time&,
|
|
const word& name,
|
|
const label size,
|
|
writeOption w=NO_WRITE
|
|
);
|
|
|
|
//- Construct from labelHashSet
|
|
cellSet
|
|
(
|
|
const Time&,
|
|
const word& name,
|
|
const labelHashSet&,
|
|
writeOption w=NO_WRITE
|
|
);
|
|
|
|
|
|
//- Destructor
|
|
virtual ~cellSet();
|
|
|
|
|
|
// Member functions
|
|
|
|
//- Sync cellSet across coupled patches.
|
|
virtual void sync(const polyMesh& mesh)
|
|
{}
|
|
|
|
//- Return max index+1.
|
|
virtual label maxSize(const polyMesh& mesh) const;
|
|
|
|
//- Update any stored data for new labels.
|
|
virtual void updateMesh(const mapPolyMesh& morphMap);
|
|
|
|
//- Update any stored data for mesh redistribution.
|
|
virtual void distribute(const mapDistributePolyMesh&);
|
|
|
|
//- Write maxLen items with label and coordinates.
|
|
virtual void writeDebug
|
|
(
|
|
Ostream& os,
|
|
const primitiveMesh&,
|
|
const label maxLen
|
|
) const;
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|