Flow123d
DF_patch_fevalues-8016b85
|
Structure for storing the precomputed finite element data. More...
#include <fe_values.hh>
Public Member Functions | |
FEInternalData (unsigned int np, unsigned int nd) | |
FEInternalData (const FEInternalData &fe_system_data, const std::vector< unsigned int > &dof_indices, unsigned int first_component_idx, unsigned int ncomps=1) | |
Create a new instance of FEInternalData for a FESystem component or subvector. More... | |
Public Attributes | |
std::vector< std::vector< arma::vec > > | ref_shape_values |
Precomputed values of basis functions at the quadrature points. More... | |
std::vector< std::vector< arma::mat > > | ref_shape_grads |
Precomputed gradients of basis functions at the quadrature points. More... | |
unsigned int | n_points |
Number of quadrature points. More... | |
unsigned int | n_dofs |
Number of dofs (shape functions). More... | |
Structure for storing the precomputed finite element data.
Definition at line 153 of file fe_values.hh.
FEValuesBase< FV, spacedim >::FEInternalData::FEInternalData | ( | unsigned int | np, |
unsigned int | nd | ||
) |
Definition at line 49 of file fe_values.cc.
FEValuesBase< FV, spacedim >::FEInternalData::FEInternalData | ( | const FEInternalData & | fe_system_data, |
const std::vector< unsigned int > & | dof_indices, | ||
unsigned int | first_component_idx, | ||
unsigned int | ncomps = 1 |
||
) |
Create a new instance of FEInternalData for a FESystem component or subvector.
unsigned int FEValuesBase< FV, spacedim >::FEInternalData::n_dofs |
Number of dofs (shape functions).
Definition at line 187 of file fe_values.hh.
unsigned int FEValuesBase< FV, spacedim >::FEInternalData::n_points |
Number of quadrature points.
Definition at line 184 of file fe_values.hh.
std::vector<std::vector<arma::mat> > FEValuesBase< FV, spacedim >::FEInternalData::ref_shape_grads |
Precomputed gradients of basis functions at the quadrature points.
Dimensions: (no. of quadrature points) x (no. of dofs) x ((dim_ of. ref. cell)x(no. of components in ref. cell))
Definition at line 181 of file fe_values.hh.
std::vector<std::vector<arma::vec> > FEValuesBase< FV, spacedim >::FEInternalData::ref_shape_values |
Precomputed values of basis functions at the quadrature points.
Dimensions: (no. of quadrature points) x (no. of dofs) x (no. of components in ref. cell)
Definition at line 172 of file fe_values.hh.