Flow123d
master-f44eb46
|
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 ncomponents=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 315 of file fe_values.hh.
FEValues< spacedim >::FEInternalData::FEInternalData | ( | unsigned int | np, |
unsigned int | nd | ||
) |
Definition at line 41 of file fe_values.cc.
FEValues< spacedim >::FEInternalData::FEInternalData | ( | const FEInternalData & | fe_system_data, |
const std::vector< unsigned int > & | dof_indices, | ||
unsigned int | first_component_idx, | ||
unsigned int | ncomponents = 1 |
||
) |
Create a new instance of FEInternalData for a FESystem component or subvector.
Definition at line 51 of file fe_values.cc.
unsigned int FEValues< spacedim >::FEInternalData::n_dofs |
Number of dofs (shape functions).
Definition at line 349 of file fe_values.hh.
unsigned int FEValues< spacedim >::FEInternalData::n_points |
Number of quadrature points.
Definition at line 346 of file fe_values.hh.
std::vector<std::vector<arma::mat> > FEValues< 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 343 of file fe_values.hh.
std::vector<std::vector<arma::vec> > FEValues< 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 334 of file fe_values.hh.