|
Flow123d
DF_patch_fe_data_tables-32b3de9
|
#include <fe_values_views.hh>
Public Member Functions | |
| Scalar (const FV &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 FV & | base () const |
| Returns the FEValues class. More... | |
Private Attributes | |
| const FV & | 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 FV & FEValuesViews::Scalar< FV, spacedim >::base |
Returns the FEValues class.
Definition at line 45 of file fe_values_views.cc.
| arma::vec::fixed< spacedim > FEValuesViews::Scalar< FV, 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 37 of file fe_values_views.cc.
| double FEValuesViews::Scalar< FV, 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 29 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.