139 lines
3.4 KiB
C++
139 lines
3.4 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Copyright (C) 2011-2023 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::polyModifyCell
|
|
|
|
Description
|
|
Class describing modification of a cell.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef polyModifyCell_H
|
|
#define polyModifyCell_H
|
|
|
|
#include "label.H"
|
|
#include "topoAction.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class polyModifyCell Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class polyModifyCell
|
|
:
|
|
public topoAction
|
|
{
|
|
// Private Data
|
|
|
|
//- Cell ID
|
|
label cellID_;
|
|
|
|
//- Remove from current zone
|
|
bool removeFromZone_;
|
|
|
|
//- New zone ID
|
|
label zoneID_;
|
|
|
|
|
|
public:
|
|
|
|
// Static Data Members
|
|
|
|
//- Runtime type information
|
|
TypeName("modifyCell");
|
|
|
|
|
|
// Constructors
|
|
|
|
//- Construct null. Used only for list construction
|
|
polyModifyCell()
|
|
:
|
|
cellID_(-1),
|
|
removeFromZone_(false),
|
|
zoneID_(-1)
|
|
{}
|
|
|
|
//- Construct from components
|
|
polyModifyCell
|
|
(
|
|
const label cellID,
|
|
const bool removeFromZone,
|
|
const label newZoneID
|
|
)
|
|
:
|
|
cellID_(cellID),
|
|
removeFromZone_(removeFromZone),
|
|
zoneID_(newZoneID)
|
|
{}
|
|
|
|
//- Construct and return a clone
|
|
virtual autoPtr<topoAction> clone() const
|
|
{
|
|
return autoPtr<topoAction>(new polyModifyCell(*this));
|
|
}
|
|
|
|
|
|
// Default Destructor
|
|
|
|
// Member Functions
|
|
|
|
//- Cell ID
|
|
label cellID() const
|
|
{
|
|
return cellID_;
|
|
}
|
|
|
|
//- Does the cell belong to a zone?
|
|
bool isInZone() const
|
|
{
|
|
return zoneID_ >= 0;
|
|
}
|
|
|
|
bool removeFromZone() const
|
|
{
|
|
return removeFromZone_;
|
|
}
|
|
|
|
//- Cell zone ID
|
|
label zoneID() const
|
|
{
|
|
return zoneID_;
|
|
}
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|