hexCell Class Reference

A hexahedral cell primitive. More...

Inheritance diagram for hexCell:
Collaboration diagram for hexCell:

Public Member Functions

void front ()=delete
 The front() accessor (from FixedList) has no purpose. More...
 
void back ()=delete
 The back() accessor (from FixedList) has no purpose. More...
 
 hexCell ()
 Default construct, with invalid point labels (-1) More...
 
 hexCell (std::initializer_list< label > list)
 Construct from an initializer list of eight point labels. More...
 
 hexCell (const FixedList< label, 8 > &list)
 Construct from FixedList of eight point labels. More...
 
 hexCell (const labelUList &list, const FixedList< label, 8 > &indices)
 Copy construct from a subset of point labels. More...
 
template<unsigned AnyNum>
 hexCell (const FixedList< label, AnyNum > &list, const FixedList< label, 8 > &indices)
 Copy construct from a subset of point labels. More...
 
 hexCell (Istream &is)
 Construct from Istream. More...
 
Foam::face face (const label facei) const
 Return i-th face. More...
 
Foam::edge edge (const label edgei) const
 Return i-th edge. More...
 
Foam::edge reverseEdge (const label edgei) const
 Return i-th edge reversed. More...
 
Foam::faceList faces () const
 Return list of cell faces [6]. More...
 
Foam::edgeList edges () const
 Return list of cell edges [12]. More...
 
point centre (const UList< point > &meshPoints) const
 Cell centre - uses simple average of points. More...
 
pointField points (const UList< point > &meshPoints) const
 The points corresponding to this shape. More...
 
cellShape shape (const bool doCollapse=false) const
 Return HEX shape cell. More...
 
- Public Member Functions inherited from FixedList< label, 8 >
void writeEntry (const word &keyword, Ostream &os) const
 Write the list as a dictionary entry with keyword. More...
 
 FixedList ()=default
 Default construct. More...
 
 FixedList (const label &val)
 Construct and initialize all entries to given value. More...
 
 FixedList (const Foam::zero)
 Construct and initialize all entries to zero. More...
 
 FixedList (const FixedList< label, N > &list)
 Copy construct. More...
 
 FixedList (FixedList< label, N > &&list)
 Move construct by using move assignment for the individual list elements. More...
 
 FixedList (std::initializer_list< label > list)
 Construct from an initializer list. Runtime size check. More...
 
 FixedList (const UList< label > &list)
 Construct from UList. Runtime size check. More...
 
 FixedList (const FixedList< label, AnyNum > &list, const FixedList< label, N > &indices)
 Copy construct from a subset of the input. No size check. More...
 
 FixedList (const UList< label > &list, const FixedList< label, N > &indices)
 Copy construct from a subset of the input. No size check. More...
 
 FixedList (Istream &is)
 Construct from Istream. More...
 
 FixedList (const label list[N])
 Deprecated: copy construct from C-array. More...
 
autoPtr< FixedList< label, N > > clone () const
 Clone. More...
 
const label * cdata () const noexcept
 Return pointer to the underlying array serving as data storage. More...
 
label * data () noexcept
 Return pointer to the underlying array serving as data storage. More...
 
const char * cdata_bytes () const noexcept
 Return pointer to the underlying array serving as data storage,. More...
 
char * data_bytes () noexcept
 Return pointer to the underlying array serving as data storage,. More...
 
label & get () noexcept
 Element access using compile-time indexing. More...
 
const label & get () const noexcept
 Element access using compile-time indexing. More...
 
label & front () noexcept
 Access first element of the list, position [0]. More...
 
const label & front () const noexcept
 Access first element of the list, position [0]. More...
 
label & back () noexcept
 Access last element of the list, position [N-1]. More...
 
const label & back () const noexcept
 Access last element of the list, position [N-1]. More...
 
label fcIndex (const label i) const noexcept
 Return the forward circular index, i.e. next index which returns to the first at the end of the list. More...
 
const label & fcValue (const label i) const
 Return forward circular value (ie, next value in the list) More...
 
label & fcValue (const label i)
 Return forward circular value (ie, next value in the list) More...
 
label rcIndex (const label i) const noexcept
 Return the reverse circular index, i.e. previous index which returns to the last at the beginning of the list. More...
 
const label & rcValue (const label i) const
 Return reverse circular value (ie, previous value in the list) More...
 
label & rcValue (const label i)
 Return reverse circular value (ie, previous value in the list) More...
 
void checkStart (const label start) const
 Check start is within valid range [0,size) More...
 
void checkSize (const label size) const
 Check size is identical to template parameter N. More...
 
void checkIndex (const label i) const
 Check index is within valid range [0,N) More...
 
bool uniform () const
 True if all entries have identical values, and list is non-empty. More...
 
bool contains (const label &val) const
 True if the value is contained in the list. More...
 
bool contains (const label &val, label pos, label len=-1) const
 Is the value contained in the list? More...
 
label find (const label &val) const
 Find index of the first occurrence of the value. More...
 
label find (const label &val, label pos, label len=-1) const
 Find index of the first occurrence of the value. More...
 
label rfind (const label &val, label pos=-1) const
 Find index of the last occurrence of the value. More...
 
void resize (const label n)
 Dummy function, to make FixedList consistent with List Any resizing is ignored (Fatal with bad sizing in full debug). More...
 
void resize_fill (const label n, const label &val)
 Set val for all elements. Any resizing is ignored (Fatal with bad sizing in full debug). More...
 
void resize_nocopy (const label n)
 Dummy function, to make FixedList consistent with List Any resizing is ignored (Fatal with bad sizing in full debug). More...
 
void setSize (const label n)
 Dummy function, to make FixedList consistent with List. More...
 
void fill (const label &val)
 Assign all entries to the given value. More...
 
void fill (const Foam::zero)
 Assign all entries to zero. More...
 
void moveFirst (const label i)
 Move element to the first position. More...
 
void moveLast (const label i)
 Move element to the last position. More...
 
void swapFirst (const label i)
 Swap element with the first element. More...
 
void swapLast (const label i)
 Swap element with the last element. More...
 
void transfer (FixedList< label, N > &list)
 Transfer by swapping using a move assignment for the content of the individual list elements. More...
 
label & operator[] (const label i)
 Return element of FixedList. More...
 
const label & operator[] (const label i) const
 Return element of constant FixedList. More...
 
void operator= (const UList< label > &list)
 Assignment to UList operator. Takes linear time. More...
 
void operator= (std::initializer_list< label > list)
 Assignment to an initializer list. Takes linear time. More...
 
void operator= (const label &val)
 Assign all entries to the given value. fill() More...
 
void operator= (const Foam::zero)
 Assign all entries to zero. fill() More...
 
void operator= (const FixedList< label, N > &list)
 Copy assignment. More...
 
void operator= (FixedList< label, N > &&list)
 Move assignment. More...
 
void operator= (const label list[N])
 Deprecated: assignment from C-array. More...
 
iterator begin () noexcept
 Return an iterator to begin traversing the FixedList. More...
 
const_iterator begin () const noexcept
 Return const_iterator to begin traversing the constant FixedList. More...
 
iterator end () noexcept
 Return an iterator to end traversing the FixedList. More...
 
const_iterator end () const noexcept
 Return const_iterator to end traversing the constant FixedList. More...
 
const_iterator cbegin () const noexcept
 Return const_iterator to begin traversing the constant FixedList. More...
 
const_iterator cend () const noexcept
 Return const_iterator to end traversing the constant FixedList. More...
 
reverse_iterator rbegin ()
 Return reverse_iterator to begin reverse traversing the FixedList. More...
 
const_reverse_iterator rbegin () const
 Return const_reverse_iterator to begin reverse traversing FixedList. More...
 
reverse_iterator rend ()
 Return reverse_iterator to end reverse traversing the FixedList. More...
 
const_reverse_iterator rend () const
 Return const_reverse_iterator to end reverse traversing FixedList. More...
 
const_reverse_iterator crbegin () const
 Return const_reverse_iterator to begin reverse traversing FixedList. More...
 
const_reverse_iterator crend () const
 Return const_reverse_iterator to end reverse traversing FixedList. More...
 
void swap (FixedList< label, N > &other)
 Swap lists by swapping the content of the individual list elements. More...
 
bool operator== (const FixedList< label, N > &list) const
 Equality operation on FixedLists of the same type. More...
 
bool operator!= (const FixedList< label, N > &list) const
 The opposite of the equality operation. Takes linear time. More...
 
bool operator< (const FixedList< label, N > &list) const
 Compare two FixedLists lexicographically. Takes linear time. More...
 
bool operator> (const FixedList< label, N > &list) const
 Compare two FixedLists lexicographically. Takes linear time. More...
 
bool operator<= (const FixedList< label, N > &list) const
 Return true if !(a > b). Takes linear time. More...
 
bool operator>= (const FixedList< label, N > &list) const
 Return true if !(a < b). Takes linear time. More...
 
IstreamreadList (Istream &is)
 Read from Istream, discarding contents of existing List. More...
 
OstreamwriteList (Ostream &os, const label shortLen=0) const
 Write List, with line-breaks in ASCII when length exceeds shortLen. More...
 
label & first () noexcept
 Access first element of the list, position [0] - front() More...
 
const label & first () const noexcept
 Access first element of the list, position [0] - front() More...
 
label & last () noexcept
 Access last element of the list, position [N-1] - back() More...
 
const label & last () const noexcept
 Access last element of the list, position [N-1] - back() More...
 
bool found (const label &val, label pos=0) const
 Same as contains() More...
 

Static Public Member Functions

static constexpr label nPoints () noexcept
 Number of points for HEX. More...
 
static constexpr label nEdges () noexcept
 Number of edges for HEX. More...
 
static constexpr label nFaces () noexcept
 Number of faces for HEX. More...
 
static const Foam::faceListmodelFaces ()
 Return the model faces. More...
 
static const Foam::edgeListmodelEdges ()
 Return the model edges. More...
 
- Static Public Member Functions inherited from FixedList< label, 8 >
static const FixedList< label, N > & null ()
 Return a null FixedList. More...
 
static std::streamsize size_bytes () noexcept
 Number of contiguous bytes for the list data,. More...
 
static std::streamsize byteSize ()
 Number of contiguous bytes for the list data, runtime FatalError if type is not contiguous. More...
 
static constexpr bool empty () noexcept
 Always false since zero-sized FixedList is compile-time disabled. More...
 
static constexpr label size () noexcept
 Return the number of elements in the FixedList. More...
 
static constexpr unsigned max_size () noexcept
 The dimensioned size (template parameter N) of the FixedList. More...
 

Additional Inherited Members

- Public Types inherited from FixedList< label, 8 >
typedef label value_type
 The value type the FixedList contains. More...
 
typedef label * pointer
 The pointer type for non-const access to value_type items. More...
 
typedef const label * const_pointer
 The pointer type for const access to value_type items. More...
 
typedef label & reference
 The type used for storing into value_type objects. More...
 
typedef const label & const_reference
 The type used for reading from constant value_type objects. More...
 
typedef label * iterator
 Random access iterator for traversing FixedList. More...
 
typedef const label * const_iterator
 Random access iterator for traversing FixedList. More...
 
typedef label size_type
 The type to represent the size of a FixedList. More...
 
typedef label difference_type
 The difference between iterator objects. More...
 
typedef std::reverse_iterator< iteratorreverse_iterator
 Reverse iterator (non-const access) More...
 
typedef std::reverse_iterator< const_iteratorconst_reverse_iterator
 Reverse iterator (const access) More...
 
- Protected Member Functions inherited from FixedList< label, 8 >
void writeEntry (Ostream &os) const
 Write the FixedList with its compound type. More...
 

Detailed Description

A hexahedral cell primitive.

It is important that the face/edge ordering is identical for a hexahedral cell shape model and a hexCell

Source files

Definition at line 56 of file hexCell.H.

Constructor & Destructor Documentation

◆ hexCell() [1/6]

hexCell ( )
inline

Default construct, with invalid point labels (-1)

Definition at line 34 of file hexCellI.H.

◆ hexCell() [2/6]

hexCell ( std::initializer_list< label >  list)
inlineexplicit

Construct from an initializer list of eight point labels.

Definition at line 40 of file hexCellI.H.

◆ hexCell() [3/6]

hexCell ( const FixedList< label, 8 > &  list)
inline

Construct from FixedList of eight point labels.

Definition at line 46 of file hexCellI.H.

◆ hexCell() [4/6]

hexCell ( const labelUList list,
const FixedList< label, 8 > &  indices 
)
inline

Copy construct from a subset of point labels.

Definition at line 53 of file hexCellI.H.

◆ hexCell() [5/6]

hexCell ( const FixedList< label, AnyNum > &  list,
const FixedList< label, 8 > &  indices 
)
inline

Copy construct from a subset of point labels.

Definition at line 64 of file hexCellI.H.

◆ hexCell() [6/6]

hexCell ( Istream is)
inlineexplicit

Construct from Istream.

Definition at line 73 of file hexCellI.H.

Member Function Documentation

◆ front()

void front ( )
delete

The front() accessor (from FixedList) has no purpose.

◆ back()

void back ( )
delete

The back() accessor (from FixedList) has no purpose.

◆ nPoints()

static constexpr label nPoints ( )
inlinestaticnoexcept

Number of points for HEX.

Definition at line 143 of file hexCell.H.

◆ nEdges()

static constexpr label nEdges ( )
inlinestaticnoexcept

Number of edges for HEX.

Definition at line 151 of file hexCell.H.

Referenced by hexCell::edge(), hexCell::edges(), and hexCell::modelEdges().

Here is the caller graph for this function:

◆ nFaces()

static constexpr label nFaces ( )
inlinestaticnoexcept

Number of faces for HEX.

Definition at line 159 of file hexCell.H.

Referenced by hexCell::face(), hexCell::faces(), and hexCell::modelFaces().

Here is the caller graph for this function:

◆ modelFaces()

const Foam::faceList & modelFaces ( )
static

Return the model faces.

Definition at line 64 of file hexCell.C.

References f(), and hexCell::nFaces().

Referenced by boundBox::hexFaces().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ modelEdges()

const Foam::edgeList & modelEdges ( )
static

Return the model edges.

Definition at line 87 of file hexCell.C.

References Foam::constant::electromagnetic::e, and hexCell::nEdges().

Referenced by blockDescriptor::edgePointsWeights(), and blockDescriptor::edgesPointsWeights().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ face()

Foam::face face ( const label  facei) const
inline

Return i-th face.

Definition at line 81 of file hexCellI.H.

References Foam::abort(), f(), Foam::FatalError, FatalErrorInFunction, and hexCell::nFaces().

Here is the call graph for this function:

◆ edge()

Foam::edge edge ( const label  edgei) const
inline

Return i-th edge.

Definition at line 99 of file hexCellI.H.

References Foam::abort(), Foam::FatalError, FatalErrorInFunction, and hexCell::nEdges().

Here is the call graph for this function:

◆ reverseEdge()

Foam::edge reverseEdge ( const label  edgei) const
inline

Return i-th edge reversed.

Definition at line 118 of file hexCellI.H.

References edge::reverseEdge().

Here is the call graph for this function:

◆ faces()

Foam::faceList faces ( ) const

Return list of cell faces [6].

Definition at line 110 of file hexCell.C.

References f(), and hexCell::nFaces().

Here is the call graph for this function:

◆ edges()

Foam::edgeList edges ( ) const

Return list of cell edges [12].

Definition at line 125 of file hexCell.C.

References Foam::constant::electromagnetic::e, and hexCell::nEdges().

Here is the call graph for this function:

◆ centre()

Foam::point centre ( const UList< point > &  meshPoints) const
inline

Cell centre - uses simple average of points.

Definition at line 126 of file hexCellI.H.

References Foam::Zero.

◆ points()

Foam::pointField points ( const UList< point > &  meshPoints) const
inline

The points corresponding to this shape.

Definition at line 147 of file hexCellI.H.

◆ shape()

Foam::cellShape shape ( const bool  doCollapse = false) const

Return HEX shape cell.

Definition at line 141 of file hexCell.C.

References cellModel::HEX, and cellModel::ptr().

Here is the call graph for this function:

The documentation for this class was generated from the following files: