Reference documentation for deal.II version GIT relicensing-233-g802318d791 2024-03-28 20:20:02+00:00
\(\newcommand{\dealvcentcolon}{\mathrel{\mathop{:}}}\) \(\newcommand{\dealcoloneq}{\dealvcentcolon\mathrel{\mkern-1.2mu}=}\) \(\newcommand{\jump}[1]{\left[\!\left[ #1 \right]\!\right]}\) \(\newcommand{\average}[1]{\left\{\!\left\{ #1 \right\}\!\right\}}\)
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | List of all members
internal::DoFHandlerImplementation::DoFLevel< dim > Class Template Reference

#include <deal.II/dofs/dof_levels.h>

Public Member Functions

const types::global_dof_indexget_cell_cache_start (const unsigned int obj_index, const unsigned int dofs_per_cell) const
 
std::size_t memory_consumption () const
 
template<class Archive >
void serialize (Archive &ar, const unsigned int version)
 

Public Attributes

std::vector< types::global_dof_indexcell_dof_indices_cache
 
DoFObjects< dim > dof_object
 

Detailed Description

template<int dim>
class internal::DoFHandlerImplementation::DoFLevel< dim >

Structure for storing degree of freedom information for cells, organized by levels.

Note that vertices use a storage scheme that is entirely separate from the one used for the cells. The indices of degrees of freedom located on vertices are therefore not stored here, but rather in member variables of the DoFHandler class.

The indices of degrees of freedom located on lower dimensional objects, i.e. on lines for 2d and on quads and lines for 3d are treated similarly than that on cells. However, these geometrical objects, which are called faces as a generalization, are not organised in a hierarchical structure of levels. Therefore, the degrees of freedom located on these objects are stored in separate classes, namely the DoFFaces classes.

Access to this object is usually through the DoFAccessor::set_dof_index() and DoFAccessor::dof_index() functions or similar functions of derived classes that in turn access the member variables using the DoFHandler::get_dof_index() and corresponding setter functions. Knowledge of the actual data format is therefore encapsulated to the present hierarchy of classes as well as the DoFHandler class.

Definition at line 62 of file dof_levels.h.

Member Function Documentation

◆ get_cell_cache_start()

template<int dim>
const types::global_dof_index * internal::DoFHandlerImplementation::DoFLevel< dim >::get_cell_cache_start ( const unsigned int  obj_index,
const unsigned int  dofs_per_cell 
) const
inline

Return a pointer to the beginning of the DoF indices cache for a given cell.

Parameters
obj_indexThe number of the cell we are looking at.
dofs_per_cellThe number of DoFs per cell for this cell.
Returns
A pointer to the first DoF index for the current cell. The next dofs_per_cell indices are for the current cell.

Definition at line 110 of file dof_levels.h.

◆ memory_consumption()

template<int dim>
std::size_t internal::DoFHandlerImplementation::DoFLevel< dim >::memory_consumption ( ) const
inline

Determine an estimate for the memory consumption (in bytes) of this object.

Definition at line 124 of file dof_levels.h.

◆ serialize()

template<int dim>
template<class Archive >
void internal::DoFHandlerImplementation::DoFLevel< dim >::serialize ( Archive &  ar,
const unsigned int  version 
)
inline

Read or write the data of this object to or from a stream for the purpose of serialization using the BOOST serialization library.

Definition at line 134 of file dof_levels.h.

Member Data Documentation

◆ cell_dof_indices_cache

template<int dim>
std::vector<types::global_dof_index> internal::DoFHandlerImplementation::DoFLevel< dim >::cell_dof_indices_cache

Cache for the DoF indices on cells. The size of this array equals the number of cells on a given level times selected_fe.n_dofs_per_cell().

Definition at line 69 of file dof_levels.h.

◆ dof_object

template<int dim>
DoFObjects<dim> internal::DoFHandlerImplementation::DoFLevel< dim >::dof_object

The object containing dof-indices and related access-functions

Definition at line 74 of file dof_levels.h.


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