18 #ifndef __HEXAHEDRON_CELL_H 19 #define __HEXAHEDRON_CELL_H 41 std::size_t
dim()
const;
55 const unsigned int* v)
const;
67 double normal(
const Cell& cell, std::size_t facet, std::size_t i)
const;
80 const std::vector<std::int64_t>& local_to_global_vertex_indices)
const;
93 {
return {0, 1, 3, 2, 4, 5, 7, 6}; }
void create_entities(boost::multi_array< unsigned int, 2 > &e, std::size_t dim, const unsigned int *v) const
Create entities e of given topological dimension from vertices v.
Definition: HexahedronCell.cpp:84
HexahedronCell()
Specify cell type and facet type.
Definition: HexahedronCell.h:34
std::size_t num_vertices() const
Return number of vertices for cell.
Definition: CellType.h:92
double circumradius(const MeshEntity &triangle) const
Compute diameter of triangle.
Definition: HexahedronCell.cpp:155
double facet_area(const Cell &cell, std::size_t facet) const
Compute the area/length of given facet with respect to the cell.
Definition: HexahedronCell.cpp:199
bool is_simplex() const
Check if cell is a simplex.
Definition: HexahedronCell.h:37
std::size_t num_entities(std::size_t dim) const
Return number of entities of given topological dimension.
Definition: HexahedronCell.cpp:36
This class implements functionality for hexahedral cell meshes.
Definition: HexahedronCell.h:29
void order(Cell &cell, const std::vector< std::int64_t > &local_to_global_vertex_indices) const
Order entities locally.
Definition: HexahedronCell.cpp:225
std::size_t dim() const
Return topological dimension of cell.
Definition: HexahedronCell.cpp:31
Type
Enum for different cell types.
Definition: CellType.h:51
A Cell is a MeshEntity of topological codimension 0.
Definition: Cell.h:42
double normal(const Cell &cell, std::size_t facet, std::size_t i) const
Compute component i of normal of given facet with respect to the cell.
Definition: HexahedronCell.cpp:180
std::size_t orientation(const Cell &cell) const
Return orientation of the cell.
Definition: HexahedronCell.cpp:78
Definition: CellType.h:46
Point cell_normal(const Cell &cell) const
Compute normal to given cell (viewed as embedded in 3D)
Definition: HexahedronCell.cpp:192
double squared_distance(const Cell &cell, const Point &point) const
Compute squared distance to given point (3D enabled)
Definition: HexahedronCell.cpp:173
bool collides(const Cell &cell, const Point &point) const
Check whether given point collides with cell.
Definition: HexahedronCell.cpp:236
std::vector< std::int8_t > vtk_mapping() const
Mapping of DOLFIN/UFC vertex ordering to VTK/XDMF ordering.
Definition: HexahedronCell.h:92
std::string description(bool plural) const
Return description of cell type.
Definition: HexahedronCell.cpp:248
Definition: MeshEntity.h:42
double volume(const MeshEntity &triangle) const
Compute (generalized) volume (area) of triangle.
Definition: HexahedronCell.cpp:127