Flow123d
release_3.0.0-966-gb002c76
|
Structure for storing the precomputed finite element data. More...
#include <fe_values.hh>
Public Member Functions | |
FEInternalData (unsigned int np, unsigned int nd) | |
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 47 of file fe_values.hh.
FEInternalData::FEInternalData | ( | unsigned int | np, |
unsigned int | nd | ||
) |
Definition at line 39 of file fe_values.cc.
unsigned int FEInternalData::n_dofs |
Number of dofs (shape functions).
Definition at line 75 of file fe_values.hh.
unsigned int FEInternalData::n_points |
Number of quadrature points.
Definition at line 72 of file fe_values.hh.
std::vector<std::vector<arma::mat> > 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 69 of file fe_values.hh.
std::vector<std::vector<arma::vec> > 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 60 of file fe_values.hh.