Flow123d
DF_patch_fe_data_tables-92632e6
|
Struct for pre-computing number of elements, sides, bulk points and side points on each dimension. More...
#include <patch_fe_values.hh>
Public Member Functions | |
TableSizes () | |
Constructor. More... | |
void | reset () |
Set all values to zero. More... | |
void | copy (const TableSizes &other) |
Copy values of other TableSizes instance. More... | |
Public Attributes | |
std::vector< std::vector< uint > > | elem_sizes_ |
std::vector< std::vector< uint > > | point_sizes_ |
Struct for pre-computing number of elements, sides, bulk points and side points on each dimension.
Definition at line 595 of file patch_fe_values.hh.
|
inline |
Constructor.
Definition at line 598 of file patch_fe_values.hh.
|
inline |
Copy values of other TableSizes instance.
Definition at line 612 of file patch_fe_values.hh.
|
inline |
Set all values to zero.
Definition at line 604 of file patch_fe_values.hh.
std::vector<std::vector<uint> > PatchFEValues< spacedim >::TableSizes::elem_sizes_ |
Holds number of elements and sides on each dimension Format: { {n_elements_1D, n_elements_2D, n_elements_3D }, {n_sides_1D, n_sides_2D, n_sides_3D } }
Definition at line 625 of file patch_fe_values.hh.
std::vector<std::vector<uint> > PatchFEValues< spacedim >::TableSizes::point_sizes_ |
Holds number of bulk and side points on each dimension Format: { {n_bulk_points_1D, n_bulk_points_2D, n_bulk_points_3D }, {n_side_points_1D, n_side_points_2D, n_side_points_3D } }
Definition at line 633 of file patch_fe_values.hh.