44 #ifndef PANZER_SUBCELL_CONNECTIVITY_HPP 45 #define PANZER_SUBCELL_CONNECTIVITY_HPP 47 #include "PanzerCore_config.hpp" 48 #include "Kokkos_View.hpp" 49 #include "Phalanx_KokkosDeviceTypes.hpp" 53 template <
typename LO,
typename GO>
54 class LocalMeshPartition;
118 int subcellForCell(
const int cell,
const int local_subcell_index)
const;
134 int cellForSubcell(
const int subcell,
const int local_cell_index)
const;
Kokkos::View< int *, PHX::Device > _subcell_to_cells
Mapping from subcells to cells.
int cellForSubcell(const int subcell, const int local_cell_index) const
Get the cell for a given subcell and a local_cell_index.
int numSubcellsOnCell(const int cell) const
gives number of subcells (e.g. faces) found on a given cell
int _num_subcells
Number of subcells for a given number of cells.
Kokkos::View< int *, PHX::Device > _cell_to_subcells_adj
Adjacency array for indexing into cell_to_subcells array.
~SubcellConnectivity()=default
Default destructor.
FaceConnectivity()=default
Default constructor.
int numCells() const
Gives number of cells in connectivity.
Generates a SubcellConnectivity associated with faces and cells given a partition of the local mesh...
Kokkos::View< int *, PHX::Device > _cell_to_subcells
Mapping from cells to subcells.
int numCellsOnSubcell(const int subcell) const
Returns the number of cells attached to a given subcell.
int _num_cells
Number of cells.
void setup(const panzer::LocalMeshPartition< int, panzer::Ordinal64 > &partition)
Setup the face connectivity from a partition of the local mesh.
int subcellForCell(const int cell, const int local_subcell_index) const
Get the subcell index for a given cell and local subcell index.
Kokkos::View< int *, PHX::Device > _subcell_to_local_subcells
Mapping from subcell indexes to local subcell indexes.
~FaceConnectivity()=default
Default destructor.
Kokkos::View< int *, PHX::Device > _subcell_to_cells_adj
Adjacency array for indexing into subcell_to_cells array.
int numSubcells() const
Gives number of subcells (e.g. faces) in connectivity.
SubcellConnectivity()
Default constructor.
int localSubcellForSubcell(const int subcell, const int local_cell_index) const
Get the local subcell index given a subcell and a local cell index.