Flow123d
release_3.0.0-506-g34af125
|
#include <fe_value_handler.hh>
Public Types | |
typedef Space< spacedim >::Point | Point |
Public Member Functions | |
FEValueHandler () | |
Constructor. More... | |
void | initialize (FEValueInitData init_data) |
Initialize data members. More... | |
Value::return_type const & | value (const Point &p, const ElementAccessor< spacedim > &elm) |
Returns one value in one given point. More... | |
void | value_list (const std::vector< Point > &point_list, const ElementAccessor< spacedim > &elm, std::vector< typename Value::return_type > &value_list) |
Returns std::vector of scalar values in several points at once. More... | |
~FEValueHandler () | |
Destructor. More... | |
Private Attributes | |
std::shared_ptr< DOFHandlerMultiDim > | dh_ |
DOF handler object. More... | |
VectorSeqDouble * | data_vec_ |
Store data of Field. More... | |
std::vector< LongIdx > | dof_indices |
Array of indexes to data_vec_, used for get/set values. More... | |
Value | value_ |
Last value, prevents passing large values (vectors) by value. More... | |
Value::return_type | r_value_ |
Specialization for elements with dim==0.
Definition at line 90 of file fe_value_handler.hh.
typedef Space<spacedim>::Point FEValueHandler< 0, spacedim, Value >::Point |
Definition at line 93 of file fe_value_handler.hh.
|
inline |
Constructor.
Definition at line 96 of file fe_value_handler.hh.
|
inline |
Destructor.
Definition at line 117 of file fe_value_handler.hh.
void FEValueHandler< 0, spacedim, Value >::initialize | ( | FEValueInitData | init_data | ) |
Initialize data members.
Definition at line 151 of file fe_value_handler.cc.
|
inline |
Returns one value in one given point.
Definition at line 102 of file fe_value_handler.hh.
void FEValueHandler< 0, spacedim, Value >::value_list | ( | const std::vector< Point > & | point_list, |
const ElementAccessor< spacedim > & | elm, | ||
std::vector< typename Value::return_type > & | value_list | ||
) |
Returns std::vector of scalar values in several points at once.
Definition at line 164 of file fe_value_handler.cc.
|
private |
Store data of Field.
Definition at line 122 of file fe_value_handler.hh.
|
private |
DOF handler object.
Definition at line 120 of file fe_value_handler.hh.
|
private |
Array of indexes to data_vec_, used for get/set values.
Definition at line 124 of file fe_value_handler.hh.
|
private |
Definition at line 127 of file fe_value_handler.hh.
|
private |
Last value, prevents passing large values (vectors) by value.
Definition at line 126 of file fe_value_handler.hh.