Flow123d
master-f44eb46
|
#include <fe_values_views.hh>
Public Member Functions | |
Scalar (const FEValues< spacedim > &fe_values, unsigned int component) | |
double | value (unsigned int function_no, unsigned int point_no) const |
Return value of scalar shape function. More... | |
arma::vec::fixed< spacedim > | grad (unsigned int function_no, unsigned int point_no) const |
Return gradient of scalar 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 | component_ |
Index of the scalar component. More... | |
Definition at line 38 of file fe_values_views.hh.
|
inline |
Definition at line 42 of file fe_values_views.hh.
const FEValues< spacedim > & FEValuesViews::Scalar< spacedim >::base |
Returns the FEValues class.
Definition at line 44 of file fe_values_views.cc.
arma::vec::fixed< spacedim > FEValuesViews::Scalar< spacedim >::grad | ( | unsigned int | function_no, |
unsigned int | point_no | ||
) | const |
Return gradient of scalar shape function.
function_no | Index of shape function within the FE. |
point_no | Index of quadrature point. |
Definition at line 36 of file fe_values_views.cc.
double FEValuesViews::Scalar< spacedim >::value | ( | unsigned int | function_no, |
unsigned int | point_no | ||
) | const |
Return value of scalar shape function.
function_no | Index of shape function within the FE. |
point_no | Index of quadrature point. |
Definition at line 28 of file fe_values_views.cc.
|
private |
Index of the scalar component.
Definition at line 70 of file fe_values_views.hh.
|
private |
Base FEValues class for access to the FE.
Definition at line 67 of file fe_values_views.hh.