#include <variable_coefficients.h>
Public Member Functions | |
template<int dim, typename Number> | |
void | initialize (dealii::MatrixFree< dim, Number > const &matrix_free, unsigned int const quad_index, bool const store_face_data_in, bool const store_cell_based_face_data_in) |
void | set_coefficients (coefficient_type const &constant_coefficient) |
coefficient_type | get_coefficient_cell (unsigned int const cell, unsigned int const q) const |
void | set_coefficient_cell (unsigned int const cell, unsigned int const q, coefficient_type const &coefficient) |
coefficient_type | get_coefficient_face (unsigned int const face, unsigned int const q) const |
void | set_coefficient_face (unsigned int const face, unsigned int const q, coefficient_type const &coefficient) |
coefficient_type | get_coefficient_face_neighbor (unsigned int const face, unsigned int const q) const |
void | set_coefficient_face_neighbor (unsigned int const face, unsigned int const q, coefficient_type const &coefficient) |
coefficient_type | get_coefficient_face_cell_based (unsigned int const cell_based_face, unsigned int const q) const |
void | set_coefficient_face_cell_based (unsigned int const cell_based_face, unsigned int const q, coefficient_type const &coefficient) |
This class serves as a manager of several table objects, which hold quadrature-point-level coefficient information for the different matrix-free loop types and access methods.
The class provides data structures for cell loops, separate face loops, and cell-based face loops. It is responsible solely for the storage of coefficients. No generic way of computing the coefficients is provided here. This task is left to the owner of a VariableCoefficients
object.
coefficient_type | Type of coefficient stored in the tables. In most cases, this is a dealii::Tensor or a similar object. |
|
inline |
Returns the coefficient in the entry (cell
, q
) in the cell coefficient table.
|
inline |
Returns the coefficient in the entry (face
, q
) in the face coefficient table.
|
inline |
Returns the coefficient in the entry (cell_based_face
, q
) in the cell-based face coefficient table.
|
inline |
Returns the coefficient in the entry (face
, q
) in the neighbor face coefficient table.
|
inline |
Initializes the variable coefficients object based on matrix_free
and quad_index
according to the desired properties use_faces_in
, and use_cell_based_face_loops_in
, i.e. resizes the desired tables to the required number of cells, faces, and quadrature points.
matrix_free | Underlying matrix-free description |
quad_index | Quadrature index in the matrix-free description to create the coefficient tables according to the quadrature points |
store_face_data_in | Boolean switch to use a coefficient table for faces (and neighbors) |
store_cell_based_face_data_in | Boolean switch to use a coefficient table for cell-based face access. This is an additional and optional way of accessing the face coefficients and should be false if store_face_data_in is false . |
|
inline |
Sets the specific entry (cell
, q
) in the cell coefficient table to coefficient
.
|
inline |
Sets the specific entry (face
, q
) in the face coefficient table to coefficient
.
|
inline |
Sets the specific entry (cell_based_face
, q
) in the cell-based face coefficient table to coefficient
.
|
inline |
Sets the specific entry (face
, q
) in the neighbor face coefficient table to coefficient
.
|
inline |
Sets the coefficient constant_coefficient
everywhere.