Flow123d
release_2.2.0-23-g01927c6
|
Public Member Functions | |
DummyOutputData (std::string field_name_in, ElementDataCacheBase::NumCompValueType n_elem_in) | |
virtual | ~DummyOutputData () override |
void | print_ascii (ostream &out_stream, unsigned int idx) override |
void | print_ascii_all (ostream &out_stream) override |
void | print_binary_all (ostream &out_stream, bool print_data_size=true) override |
void | print_all_yaml (ostream &out_stream, unsigned int precision) override |
void | get_min_max_range (double &min, double &max) override |
void | read_ascii_data (Tokenizer &tok, unsigned int n_components, unsigned int i_row) override |
void | read_binary_data (std::istream &data_stream, unsigned int n_components, unsigned int i_row) override |
Public Member Functions inherited from ElementDataCacheBase | |
ElementDataCacheBase () | |
Constructor. More... | |
virtual | ~ElementDataCacheBase () |
Destructor. More... | |
double | get_time () |
Getter for time of cache. More... | |
std::string | field_input_name () |
Getter for quantity name of cache. More... | |
bool | is_actual (double time, std::string field_name) |
Check if cache stored actual data. More... | |
void | set_field_units (std::string unit_string) |
void | set_n_values (unsigned int n_values) |
std::string | field_units () |
unsigned int | n_values () |
NumCompValueType | n_elem () |
VTKValueType | vtk_type () |
Get type of stored data. More... | |
Additional Inherited Members | |
Public Types inherited from ElementDataCacheBase | |
enum | NumCompValueType { N_SCALAR = 1, N_VECTOR = 3, N_TENSOR = 9 } |
enum | VTKValueType { VTK_INT8, VTK_UINT8, VTK_INT16, VTK_UINT16, VTK_INT32, VTK_UINT32, VTK_FLOAT32, VTK_FLOAT64 } |
Types of VTK value. More... | |
Protected Member Functions inherited from ElementDataCacheBase | |
template<class T > | |
void | set_vtk_type () |
Protected Attributes inherited from ElementDataCacheBase | |
double | time_ |
time step stored in cache More... | |
std::string | field_input_name_ |
name of field stored in cache More... | |
std::string | field_name_ |
std::string | field_units_ |
unsigned int | n_values_ |
NumCompValueType | n_elem_ |
VTKValueType | vtk_type_ |
Type of stored data. More... | |
Auxiliary implementation of ElementDataCacheBase that performs output of single zero data for the fields that are off for current time frame.
Definition at line 34 of file output_msh.cc.
|
inline |
Definition at line 37 of file output_msh.cc.
|
inlineoverridevirtual |
Definition at line 44 of file output_msh.cc.
|
inlineoverridevirtual |
Find minimal and maximal range of stored data
Implements ElementDataCacheBase.
Definition at line 65 of file output_msh.cc.
|
inlineoverridevirtual |
Print stored values in the YAML format (using JSON like arrays). Used for output of observe values.
Implements ElementDataCacheBase.
Definition at line 62 of file output_msh.cc.
|
inlineoverridevirtual |
Print one value at given index in ascii format
Implements ElementDataCacheBase.
Definition at line 47 of file output_msh.cc.
|
inlineoverridevirtual |
Print all data in ascii format at once stored in database
Implements ElementDataCacheBase.
Definition at line 52 of file output_msh.cc.
|
inlineoverridevirtual |
Print all data in binary format at once stored in database
Implements ElementDataCacheBase.
Definition at line 57 of file output_msh.cc.
|
inlineoverridevirtual |
Read ascii data of given i_row
from tokenizer
Implements ElementDataCacheBase.
Definition at line 68 of file output_msh.cc.
|
inlineoverridevirtual |
Read binary data of given i_row
from data stream
Implements ElementDataCacheBase.
Definition at line 71 of file output_msh.cc.