Flow123d
master-f44eb46
|
#include <fe_values_views.hh>
Public Member Functions | |
Vector (const FEValues< spacedim > &fe_values, unsigned int component) | |
arma::vec::fixed< spacedim > | value (unsigned int function_no, unsigned int point_no) const |
Return value of vector-valued shape function. More... | |
arma::mat::fixed< spacedim, spacedim > | grad (unsigned int function_no, unsigned int point_no) const |
Return gradient of vector-valued shape function. More... | |
arma::mat::fixed< spacedim, spacedim > | sym_grad (unsigned int function_no, unsigned int point_no) const |
Return symmetric gradient of vector-valued shape function. More... | |
double | divergence (unsigned int function_no, unsigned int point_no) const |
Return divergence of vector-valued shape function. More... | |
const FEValues< spacedim > & | base () const |
Returns the FEValues class. More... | |
Private Attributes | |
const FEValues< spacedim > & | fe_values_ |
Base FEValues class for access to the FE. More... | |
unsigned int | first_vector_component_ |
Index of the first component of the vector. More... | |
Definition at line 75 of file fe_values_views.hh.
|
inline |
Definition at line 79 of file fe_values_views.hh.
const FEValues< spacedim > & FEValuesViews::Vector< spacedim >::base |
Returns the FEValues class.
Definition at line 93 of file fe_values_views.cc.
double FEValuesViews::Vector< spacedim >::divergence | ( | unsigned int | function_no, |
unsigned int | point_no | ||
) | const |
Return divergence of vector-valued shape function.
function_no | Index of shape function within the FE. |
point_no | Index of quadrature point. |
Definition at line 82 of file fe_values_views.cc.
arma::mat::fixed< spacedim, spacedim > FEValuesViews::Vector< spacedim >::grad | ( | unsigned int | function_no, |
unsigned int | point_no | ||
) | const |
Return gradient of vector-valued shape function.
function_no | Index of shape function within the FE. |
point_no | Index of quadrature point. |
Definition at line 62 of file fe_values_views.cc.
arma::mat::fixed< spacedim, spacedim > FEValuesViews::Vector< spacedim >::sym_grad | ( | unsigned int | function_no, |
unsigned int | point_no | ||
) | const |
Return symmetric gradient of vector-valued shape function.
function_no | Index of shape function within the FE. |
point_no | Index of quadrature point. |
Definition at line 73 of file fe_values_views.cc.
arma::vec::fixed< spacedim > FEValuesViews::Vector< spacedim >::value | ( | unsigned int | function_no, |
unsigned int | point_no | ||
) | const |
Return value of vector-valued shape function.
function_no | Index of shape function within the FE. |
point_no | Index of quadrature point. |
Definition at line 51 of file fe_values_views.cc.
|
private |
Base FEValues class for access to the FE.
Definition at line 118 of file fe_values_views.hh.
|
private |
Index of the first component of the vector.
Definition at line 121 of file fe_values_views.hh.