|
Flow123d
intersections_paper-476-gbe68821
|
#include <observe.hh>

Public Member Functions | |
| Observe (string observe_name, Mesh &mesh, Input::Array in_array, unsigned int precision) | |
| ~Observe () | |
| Destructor, must close the file. More... | |
| template<int spacedim, class Value > | |
| void | compute_field_values (Field< spacedim, Value > &field) |
| const std::vector< unsigned int > & | observed_elements () const |
| void | output_header () |
| void | output_time_frame (double time) |
Protected Types | |
| typedef std::shared_ptr< OutputDataBase > | OutputDataPtr |
| typedef std::map< string, OutputDataPtr > | OutputDataFieldMap |
Protected Attributes | |
| int | rank_ |
| Mesh * | mesh_ |
| std::vector< ObservePoint > | points_ |
| Full information about observe points. More... | |
| std::vector< unsigned int > | observed_element_indices_ |
| Elements of the o_points. More... | |
| OutputDataFieldMap | observe_field_values_ |
| Stored field values. More... | |
| double | observe_values_time_ |
| Common evaluation time of the fields for single time frame. More... | |
| std::string | observe_name_ |
| std::ofstream | observe_file_ |
| Output file stream. More... | |
| std::string | time_unit_str_ |
| String representation of the time unit. More... | |
| double | time_unit_seconds_ |
| Time unit in seconds. More... | |
| unsigned int | precision_ |
| Precision of float output. More... | |
| bool | no_fields_warning =false |
This class takes care about the observe points in the output stream, storing observe values of the fields and their output in the YAML format.
Definition at line 149 of file observe.hh.
|
protected |
Definition at line 204 of file observe.hh.
|
protected |
Definition at line 203 of file observe.hh.
| Observe::Observe | ( | string | observe_name, |
| Mesh & | mesh, | ||
| Input::Array | in_array, | ||
| unsigned int | precision | ||
| ) |
Construct the observation object.
observe_name - base name of the output file, the equation name. mesh - the mesh used for search for the observe points in_array - the array of observe points
Definition at line 307 of file observe.cc.
| Observe::~Observe | ( | ) |
Destructor, must close the file.
Definition at line 340 of file observe.cc.
| void Observe::compute_field_values | ( | Field< spacedim, Value > & | field | ) |
Evaluates and store values of the given field in the observe points.
Definition at line 346 of file observe.cc.
|
inline |
Provides a vector of element indices on which the observation values are evaluated. This can be used to evaluate derived fields only on these elements in the times not selected to full output.
Definition at line 176 of file observe.hh.
| void Observe::output_header | ( | ) |
Output file header.
Definition at line 391 of file observe.cc.

| void Observe::output_time_frame | ( | double | time | ) |
Write field values to the output file. Using the YAML format.
Definition at line 403 of file observe.cc.
|
protected |
Definition at line 196 of file observe.hh.
|
protected |
Definition at line 227 of file observe.hh.
|
protected |
Stored field values.
Definition at line 207 of file observe.hh.
|
protected |
Output file stream.
Definition at line 217 of file observe.hh.
|
protected |
Definition at line 214 of file observe.hh.
|
protected |
Common evaluation time of the fields for single time frame.
Definition at line 211 of file observe.hh.
|
protected |
Elements of the o_points.
Definition at line 201 of file observe.hh.
|
protected |
Full information about observe points.
Definition at line 199 of file observe.hh.
|
protected |
Precision of float output.
Definition at line 224 of file observe.hh.
|
protected |
Definition at line 193 of file observe.hh.
|
protected |
Time unit in seconds.
Definition at line 222 of file observe.hh.
|
protected |
String representation of the time unit.
Definition at line 220 of file observe.hh.
1.8.11