Flow123d
release_3.0.0-1192-gc7b86c0
|
#include <field_interpolated_p0.hh>
Public Types | |
typedef FieldAlgorithmBase< spacedim, Value >::Point | Point |
typedef FieldAlgorithmBase< spacedim, Value > | FactoryBaseType |
Public Types inherited from FieldAlgorithmBase< spacedim, Value > | |
typedef Space< spacedim >::Point | Point |
Public Member Functions | |
FieldInterpolatedP0 (unsigned int n_comp=0) | |
virtual void | init_from_input (const Input::Record &rec, const struct FieldAlgoBaseInitData &init_data) |
bool | set_time (const TimeStep &time) override |
virtual Value::return_type const & | value (const Point &p, const ElementAccessor< spacedim > &elm) |
virtual void | value_list (const std::vector< Point > &point_list, const ElementAccessor< spacedim > &elm, std::vector< typename Value::return_type > &value_list) |
Public Member Functions inherited from FieldAlgorithmBase< spacedim, Value > | |
FieldAlgorithmBase (unsigned int n_comp=0) | |
virtual void | set_mesh (const Mesh *mesh, bool boundary_domain) |
void | set_component_idx (unsigned int idx) |
unsigned int | n_comp () const |
FieldResult | field_result () const |
virtual double | next_change_time () |
virtual void | set_native_dh (std::shared_ptr< DOFHandlerMultiDim > dh) |
bool | is_constant_in_space () const |
virtual | ~FieldAlgorithmBase () |
Static Public Member Functions | |
static const Input::Type::Record & | get_input_type () |
Static Public Member Functions inherited from FieldAlgorithmBase< spacedim, Value > | |
static std::string | template_name () |
static Input::Type::Abstract & | get_input_type () |
static const Input::Type::Instance & | get_input_type_instance (Input::Type::Selection value_selection=Input::Type::Selection()) |
static const Input::Type::Record & | get_field_algo_common_keys () |
static std::shared_ptr< FieldAlgorithmBase< spacedim, Value > > | function_factory (const Input::AbstractRecord &rec, const struct FieldAlgoBaseInitData &init_data) |
Protected Attributes | |
std::shared_ptr< Mesh > | source_mesh_ |
mesh, which is interpolated More... | |
FilePath | reader_file_ |
mesh reader file More... | |
std::shared_ptr< std::vector< typename Value::element_type > > | data_ |
Raw buffer of n_entities rows each containing Value::size() doubles. More... | |
std::vector< unsigned int > | searched_elements_ |
vector stored suspect elements in calculating the intersection More... | |
std::string | field_name_ |
field name read from input More... | |
BIHTree * | bih_tree_ |
tree of mesh elements More... | |
unsigned int | computed_elm_idx_ = numeric_limits<unsigned int>::max() |
stored index to last computed element More... | |
unsigned int | computed_elm_boundary_ |
stored flag if last computed element is boundary More... | |
double | default_value_ |
Default value of element if not set in mesh data file. More... | |
Input::Record | in_rec_ |
Accessor to Input::Record. More... | |
Protected Attributes inherited from FieldAlgorithmBase< spacedim, Value > | |
TimeStep | time_ |
Actual time level; initial value is -infinity. More... | |
Value | value_ |
Last value, prevents passing large values (vectors) by value. More... | |
Value::return_type | r_value_ |
FieldResult | field_result_ |
Indicator of particular values (zero, one) constant over space. More... | |
unsigned int | component_idx_ |
Specify if the field is part of a MultiField and which component it is. More... | |
double | unit_conversion_coefficient_ |
Coeficient of conversion of user-defined unit. More... | |
bool | is_constant_in_space_ |
Flag detects that field is only dependent on time. More... | |
Static Private Attributes | |
static const int | registrar |
Registrar of class to factory. More... | |
Additional Inherited Members | |
Static Public Attributes inherited from FieldAlgorithmBase< spacedim, Value > | |
static const unsigned int | spacedim_ =spacedim |
static constexpr bool | is_enum_valued = boost::is_same<typename Value::element_type, FieldEnum>::value |
Protected Member Functions inherited from FieldAlgorithmBase< spacedim, Value > | |
void | init_unit_conversion_coefficient (const Input::Record &rec, const struct FieldAlgoBaseInitData &init_data) |
Init value of unit_conversion_coefficient_ from input. More... | |
Definition at line 44 of file field_interpolated_p0.hh.
typedef FieldAlgorithmBase<spacedim, Value> FieldInterpolatedP0< spacedim, Value >::FactoryBaseType |
Definition at line 48 of file field_interpolated_p0.hh.
typedef FieldAlgorithmBase<spacedim, Value>::Point FieldInterpolatedP0< spacedim, Value >::Point |
Definition at line 47 of file field_interpolated_p0.hh.
FieldInterpolatedP0< spacedim, Value >::FieldInterpolatedP0 | ( | unsigned int | n_comp = 0 | ) |
Constructor
Definition at line 71 of file field_interpolated_p0.cc.
|
static |
Declare Input type.
Definition at line 41 of file field_interpolated_p0.cc.
|
virtual |
Initialization from the input interface.
Reimplemented from FieldAlgorithmBase< spacedim, Value >.
Definition at line 80 of file field_interpolated_p0.cc.
|
overridevirtual |
Update time and possibly update data from GMSH file.
Reimplemented from FieldAlgorithmBase< spacedim, Value >.
Definition at line 111 of file field_interpolated_p0.cc.
|
virtual |
Returns one value in one given point. ResultType can be used to avoid some costly calculation if the result is trivial.
Implements FieldAlgorithmBase< spacedim, Value >.
Definition at line 143 of file field_interpolated_p0.cc.
|
virtual |
Returns std::vector of scalar values in several points at once.
Implements FieldAlgorithmBase< spacedim, Value >.
Definition at line 255 of file field_interpolated_p0.cc.
|
protected |
tree of mesh elements
Definition at line 98 of file field_interpolated_p0.hh.
|
protected |
stored flag if last computed element is boundary
Definition at line 104 of file field_interpolated_p0.hh.
|
protected |
stored index to last computed element
Definition at line 101 of file field_interpolated_p0.hh.
|
protected |
Raw buffer of n_entities rows each containing Value::size() doubles.
Definition at line 89 of file field_interpolated_p0.hh.
|
protected |
Default value of element if not set in mesh data file.
Definition at line 108 of file field_interpolated_p0.hh.
|
protected |
field name read from input
Definition at line 95 of file field_interpolated_p0.hh.
|
protected |
Accessor to Input::Record.
Definition at line 111 of file field_interpolated_p0.hh.
|
protected |
mesh reader file
Definition at line 86 of file field_interpolated_p0.hh.
|
staticprivate |
Registrar of class to factory.
Definition at line 114 of file field_interpolated_p0.hh.
|
protected |
vector stored suspect elements in calculating the intersection
Definition at line 92 of file field_interpolated_p0.hh.
|
protected |
mesh, which is interpolated
Definition at line 83 of file field_interpolated_p0.hh.