A subset of mesh points. The labels of points in the zone can be obtained from the addressing() list. More...
#include <OpenFOAM/pointZone.H>
A subset of mesh points. The labels of points in the zone can be obtained from the addressing() list.
For quick check whether a point belongs to the zone use the lookup mechanism in pointZoneMesh, where all the zoned points are registered with their zone number.
Definition at line 67 of file pointZone.H.
Public Member Functions | |
TypeName ("pointZone") | |
Runtime type information.
| |
declareRunTimeSelectionTable (autoPtr, pointZone, dictionary,(const word &name, const dictionary &dict, const label index, const pointZoneMesh &zm),(name, dict, index, zm)) | |
pointZone (const word &name, const labelList &addr, const label index, const pointZoneMesh &) | |
Construct from components.
| |
pointZone (const word &name, const Xfer< labelList > &addr, const label index, const pointZoneMesh &) | |
Construct from components, transferring contents.
| |
pointZone (const word &name, const dictionary &, const label index, const pointZoneMesh &) | |
Construct from dictionary.
| |
pointZone (const pointZone &, const labelList &addr, const label index, const pointZoneMesh &) | |
Construct given the original zone and resetting the.
| |
pointZone (const pointZone &, const Xfer< labelList > &addr, const label index, const pointZoneMesh &) | |
Construct given the original zone, resetting the.
| |
virtual autoPtr< pointZone > | clone (const pointZoneMesh &zm) const |
Construct and return a clone, resetting the zone mesh.
| |
virtual autoPtr< pointZone > | clone (const pointZoneMesh &zm, const label index, const labelList &addr) const |
Construct and return a clone, resetting the point list.
| |
virtual | ~pointZone () |
Destructor.
| |
const word & | name () const |
Return name.
| |
label | whichPoint (const label globalPointID) const |
Map storing the local point index for every global point.
| |
label | index () const |
Return the index of this zone in zone list.
| |
const pointZoneMesh & | zoneMesh () const |
Return zoneMesh reference.
| |
void | clearAddressing () |
Clear addressing.
| |
bool | checkDefinition (const bool report=false) const |
Check zone definition. Return true if in error.
| |
virtual void | movePoints (const pointField &) |
Correct patch after moving points.
| |
virtual void | write (Ostream &) const |
Write.
| |
virtual void | writeDict (Ostream &) const |
Write dictionary.
| |
void | operator= (const pointZone &) |
Assign to zone clearing demand-driven data.
| |
void | operator= (const labelList &) |
Assign addressing clearing demand-driven data.
| |
Static Public Member Functions | |
static autoPtr< pointZone > | New (const word &name, const dictionary &, const label index, const pointZoneMesh &) |
Return a pointer to a new point zone.
| |
Friends | |
Ostream & | operator<< (Ostream &, const pointZone &) |
pointZone | ( | const word & | name, |
const labelList & | addr, | ||
const label | index, | ||
const pointZoneMesh & | zm | ||
) |
Construct from components.
Definition at line 99 of file pointZone.C.
pointZone | ( | const word & | name, |
const Xfer< labelList > & | addr, | ||
const label | index, | ||
const pointZoneMesh & | zm | ||
) |
Construct from components, transferring contents.
Definition at line 115 of file pointZone.C.
pointZone | ( | const word & | name, |
const dictionary & | dict, | ||
const label | index, | ||
const pointZoneMesh & | zm | ||
) |
Construct from dictionary.
Definition at line 132 of file pointZone.C.
pointZone | ( | const pointZone & | pz, |
const labelList & | addr, | ||
const label | index, | ||
const pointZoneMesh & | zm | ||
) |
Construct given the original zone and resetting the.
point list and zone mesh information
Definition at line 150 of file pointZone.C.
pointZone | ( | const pointZone & | pz, |
const Xfer< labelList > & | addr, | ||
const label | index, | ||
const pointZoneMesh & | zm | ||
) |
Construct given the original zone, resetting the.
face list and zone mesh information
Definition at line 166 of file pointZone.C.
~pointZone | ( | ) | [virtual]
|
Destructor.
Definition at line 183 of file pointZone.C.
TypeName | ( | "pointZone" | ) |
Runtime type information.
declareRunTimeSelectionTable | ( | autoPtr | , |
pointZone | , | ||
dictionary | , | ||
(const word &name, const dictionary &dict, const label index, const pointZoneMesh &zm) | , | ||
(name, dict, index, zm) | |||
) |
virtual autoPtr<pointZone> clone | ( | const pointZoneMesh & | zm ) | const [inline, virtual]
|
Construct and return a clone, resetting the zone mesh.
Definition at line 174 of file pointZone.H.
References pointZone::index().
virtual autoPtr<pointZone> clone | ( | const pointZoneMesh & | zm, |
const label | index, | ||
const labelList & | addr | ||
) | const [inline, virtual]
|
Construct and return a clone, resetting the point list.
and zone mesh
Definition at line 185 of file pointZone.H.
Foam::autoPtr< Foam::pointZone > New | ( | const word & | name, |
const dictionary & | dict, | ||
const label | index, | ||
const pointZoneMesh & | zm | ||
) | [static]
|
Return a pointer to a new point zone.
created on freestore from dictionary
Definition at line 36 of file newPointZone.C.
References Foam::endl(), Foam::exit(), Foam::FatalIOError, FatalIOErrorIn, Foam::Info, dictionary::lookup(), and name().
const word& name | ( | ) | const [inline]
|
Return name.
Definition at line 219 of file pointZone.H.
Referenced by fvMeshDistribute::printMeshInfo().
Foam::label whichPoint | ( | const label | globalPointID ) | const |
Map storing the local point index for every global point.
index. Used to find out the index of point in the zone from the known global point index. If the point is not in the zone, returns -1
Definition at line 191 of file pointZone.C.
References HashTable< T, Key, Hash >::end(), and HashTable< T, Key, Hash >::find().
label index | ( | ) | const [inline]
|
Return the index of this zone in zone list.
Definition at line 231 of file pointZone.H.
Referenced by pointZone::clone().
const Foam::pointZoneMesh & zoneMesh | ( | ) | const |
Return zoneMesh reference.
Definition at line 208 of file pointZone.C.
void clearAddressing | ( | ) |
Clear addressing.
Definition at line 214 of file pointZone.C.
References Foam::deleteDemandDrivenData().
bool checkDefinition | ( | const bool | report = false
) |
const |
Check zone definition. Return true if in error.
Definition at line 220 of file pointZone.C.
References Foam::endl(), forAll, Foam::name(), Foam::nl, SeriousErrorIn, and List< T >::size().
virtual void movePoints | ( | const pointField & | ) | [inline, virtual]
|
Correct patch after moving points.
Definition at line 246 of file pointZone.H.
void write | ( | Ostream & | os ) | const [virtual]
|
Write.
Definition at line 249 of file pointZone.C.
References Foam::name(), and Foam::nl.
Referenced by Foam::operator<<().
void writeDict | ( | Ostream & | os ) | const [virtual]
|
Write dictionary.
Definition at line 256 of file pointZone.C.
References token::BEGIN_BLOCK, token::END_BLOCK, token::END_STATEMENT, Foam::endl(), Foam::name(), Foam::nl, and Foam::type().
void operator= | ( | const pointZone & | cz ) |
Assign to zone clearing demand-driven data.
Definition at line 269 of file pointZone.C.
References List< label >::operator=().
void operator= | ( | const labelList & | addr ) |
Assign addressing clearing demand-driven data.
Definition at line 276 of file pointZone.C.
References List< label >::operator=().