|
Panzer Version of the Day
|
Generates a SubcellConnectivity associated with faces and cells given a partition of the local mesh. More...
#include <Panzer_SubcellConnectivity.hpp>

Public Member Functions | |
| FaceConnectivity ()=default | |
| Default constructor. | |
| ~FaceConnectivity ()=default | |
| Default destructor. | |
| void | setup (const panzer::LocalMeshPartition &partition) |
| Setup the face connectivity from a partition of the local mesh. | |
Public Member Functions inherited from panzer::SubcellConnectivity | |
| SubcellConnectivity ()=default | |
| Default constructor. | |
| ~SubcellConnectivity ()=default | |
| Default destructor. | |
| KOKKOS_INLINE_FUNCTION int | numSubcells () const |
| Gives number of subcells (e.g. faces) in connectivity. | |
| KOKKOS_INLINE_FUNCTION int | numCells () const |
| Gives number of cells in connectivity. | |
| KOKKOS_INLINE_FUNCTION int | numSubcellsOnCell (const int cell) const |
| gives number of subcells (e.g. faces) found on a given cell | |
| int | numSubcellsOnCellHost (const int cell) const |
| KOKKOS_INLINE_FUNCTION int | numCellsOnSubcell (const int subcell) const |
| Returns the number of cells attached to a given subcell. | |
| int | numCellsOnSubcellHost (const int subcell) const |
| KOKKOS_INLINE_FUNCTION int | subcellForCell (const int cell, const int local_subcell_index) const |
| Get the subcell index for a given cell and local subcell index. | |
| int | subcellForCellHost (const int cell, const int local_subcell_index) const |
| KOKKOS_INLINE_FUNCTION int | cellForSubcell (const int subcell, const int local_cell_index) const |
| Get the cell for a given subcell and a local_cell_index. | |
| int | cellForSubcellHost (const int subcell, const int local_cell_index) const |
| KOKKOS_INLINE_FUNCTION int | localSubcellForSubcell (const int subcell, const int local_cell_index) const |
| Get the local subcell index given a subcell and a local cell index. | |
| int | localSubcellForSubcellHost (const int subcell, const int local_cell_index) const |
Additional Inherited Members | |
Protected Attributes inherited from panzer::SubcellConnectivity | |
| PHX::View< int * > | _subcell_to_cells_adj |
| Adjacency array for indexing into subcell_to_cells array. | |
| PHX::View< int * >::host_mirror_type | _subcell_to_cells_adj_host |
| PHX::View< int * > | _subcell_to_cells |
| Mapping from subcells to cells. | |
| PHX::View< int * >::host_mirror_type | _subcell_to_cells_host |
| PHX::View< int * > | _subcell_to_local_subcells |
| Mapping from subcell indexes to local subcell indexes. | |
| PHX::View< int * >::host_mirror_type | _subcell_to_local_subcells_host |
| PHX::View< int * > | _cell_to_subcells_adj |
| Adjacency array for indexing into cell_to_subcells array. | |
| PHX::View< int * >::host_mirror_type | _cell_to_subcells_adj_host |
| PHX::View< int * > | _cell_to_subcells |
| Mapping from cells to subcells. | |
| PHX::View< int * >::host_mirror_type | _cell_to_subcells_host |
Generates a SubcellConnectivity associated with faces and cells given a partition of the local mesh.
Definition at line 160 of file Panzer_SubcellConnectivity.hpp.
|
default |
Default constructor.
|
default |
Default destructor.
| void panzer::FaceConnectivity::setup | ( | const panzer::LocalMeshPartition & | partition | ) |
Setup the face connectivity from a partition of the local mesh.
| [in] | partition | Partition of mesh |
Definition at line 18 of file Panzer_SubcellConnectivity.cpp.