Flow123d  JS_before_hm-1001-gfa0c761
element_data_cache.hh
Go to the documentation of this file.
1 /*!
2  *
3  * Copyright (C) 2015 Technical University of Liberec. All rights reserved.
4  *
5  * This program is free software; you can redistribute it and/or modify it under
6  * the terms of the GNU General Public License version 3 as published by the
7  * Free Software Foundation. (http://www.gnu.org/licenses/gpl-3.0.en.html)
8  *
9  * This program is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12  *
13  *
14  * @file element_data_cache.hh
15  * @brief
16  */
17 
18 #ifndef ELEMENT_DATA_CACHE_HH_
19 #define ELEMENT_DATA_CACHE_HH_
20 
21 
22 #include <memory> // for shared_ptr
23 #include <sstream> // for basic_ostream::write
24 #include <string> // for string, operator<<
25 #include <vector> // for vector
26 #include <armadillo>
27 #include "io/element_data_cache_base.hh" // for ElementDataCacheBase
28 #include "system/exceptions.hh" // for ExcStream, operator<<
29 #include "system/index_types.hh" // for LongIdx
30 class Tokenizer;
31 class Distribution;
32 struct MeshDataHeader;
33 
34 
35 /// Return type of method that checked data stored in ElementDataCache (NaN values, limits)
36 typedef enum {
37  ok, ///< All values are not NaN and are in limits.
38  out_of_limits, ///< Some value(s) is out of limits
39  not_a_number ///< Some value(s) is set to NaN
40 } CheckResult;
41 
42 
43 template <typename T>
45 /**
46  * Container of the field data on elements used as a common data storage for
47  * output of various fields using various output formats and to cache data of several fields when reading the input file.
48  * This container also perform serialization for the serial output.
49  * Read of values from tokenizer and output of values to stream is implemented as it depends on the value type T.
50  */
51 public:
52  typedef std::shared_ptr< std::vector<T> > ComponentDataPtr;
54 
55  /// Default constructor
57 
58  /**
59  * \brief Constructor of input ElementDataCache (allow read data from GMSH or VTK file)
60  *
61  * Allows set variable size of cache.
62  *
63  * @param field_name Field name thas is read
64  * @param time Actual time of data
65  * @param size_of_cache Count of columns of data cache
66  * @param row_vec_size Count of rows of data cache
67  */
68  ElementDataCache(std::string field_name, double time, unsigned int size_of_cache, unsigned int row_vec_size);
69 
70  /**
71  * \brief Constructor of output ElementDataCache (allow write data)
72  *
73  * Has fix size of cache.
74  *
75  * @param field_name Field name is written as parameter to output stream
76  * @param n_comp Given from shape of field
77  * @param size Count of rows of data cache
78  */
79  ElementDataCache(std::string field_name, unsigned int n_comp, unsigned int size);
80 
81  /**
82  * \brief Destructor of ElementDataCache
83  */
84  virtual ~ElementDataCache() override;
85 
86  /// Return vector of element data for get component.
87  ComponentDataPtr get_component_data(unsigned int component_idx);
88 
89  /**
90  * Create data cache with given count of columns (\p size_of_cache) and rows (\p row_vec_size).
91  */
92  static CacheData create_data_cache(unsigned int size_of_cache, unsigned int row_vec_size);
93 
94  /// Implements @p ElementDataCacheBase::read_ascii_data.
95  void read_ascii_data(Tokenizer &tok, unsigned int n_components, unsigned int i_row) override;
96 
97  /// Implements @p ElementDataCacheBase::read_binary_data.
98  void read_binary_data(std::istream &data_stream, unsigned int n_components, unsigned int i_row) override;
99 
100  /**
101  * Output data element on given index @p idx. Method for writing data
102  * to output stream.
103  *
104  * \note This method is used only by MSH file format.
105  */
106  void print_ascii(ostream &out_stream, unsigned int idx) override;
107 
108  /**
109  * \brief Print all data stored in output data ro ascii format
110  *
111  * TODO: indicate if the tensor data are output in column-first or raw-first order
112  * and possibly implement transposition. Set such property for individual file formats.
113  * Class OutputData stores always in raw-first order.
114  */
115  void print_ascii_all(ostream &out_stream) override;
116 
117  /**
118  * \brief Print all data stored in output data to appended binary format
119  */
120  void print_binary_all(ostream &out_stream, bool print_data_size = true) override;
121 
122  void print_yaml_subarray(ostream &out_stream, unsigned int precision, unsigned int begin, unsigned int end) override;
123 
124  /**
125  * Store data element of given data value under given index.
126  */
127  void store_value(unsigned int idx, const T * value);
128 
129  /**
130  * Add value to given index
131  */
132  void add(unsigned int idx, const T * value);
133 
134  /**
135  * Reset values at given index
136  */
137  void zero(unsigned int idx);
138 
139  /**
140  * Normalize values at given index
141  */
142  void normalize(unsigned int idx, unsigned int divisor);
143 
144  /**
145  * Find minimal and maximal range of stored data
146  */
147  void get_min_max_range(double &min, double &max) override;
148 
149  /**
150  * Make full check of data stored in cache.
151  *
152  * Method iterates through data and
153  * - checks NaN data values, default_val replaces NaN
154  * - if default_val==NaN and some value(s) is not replaced with valid value return CheckResult::nan
155  * - if some value(s) is out of limits )lower_bound, upper_bound) return CheckResult::out_of_limits
156  * - in other cases return CheckResult::ok
157  *
158  * Method is executed only once.
159  */
160  CheckResult check_values(double default_val, double lower_bound, double upper_bound);
161 
162  /**
163  * Scale data vector of given 'component_idx' with scale 'coef'.
164  *
165  * Method is executed only once and should be called after check_values method.
166  * Method can be used e. g. for convert between units.
167  */
168  void scale_data(double coef);
169 
170  /// Implements ElementDataCacheBase::gather.
171  std::shared_ptr< ElementDataCacheBase > gather(Distribution *distr, LongIdx *local_to_global) override;
172 
173  /// Implements ElementDataCacheBase::element_node_cache_fixed_size.
174  std::shared_ptr< ElementDataCacheBase > element_node_cache_fixed_size(std::vector<unsigned int> &offset_vec) override;
175 
176  /// Implements ElementDataCacheBase::element_node_cache_optimize_size.
177  std::shared_ptr< ElementDataCacheBase > element_node_cache_optimize_size(std::vector<unsigned int> &offset_vec) override;
178 
179  /// Implements ElementDataCacheBase::compute_node_data.
180  std::shared_ptr< ElementDataCacheBase > compute_node_data(std::vector<unsigned int> &conn_vec, unsigned int data_size) override;
181 
182  /// Access i-th element in the data vector of 0th component.
183  T& operator[](unsigned int i);
184 
185 protected:
186  /// Allow to hold sign, if data in cache is checked and scale (both can be executed only once)
188  none, ///< Data is neither checked nor scaled.
189  check, ///< Data is only checked.
190  scale ///< Data is scaled.
191  };
192 
193 
194  /// Return MPI data type corresponding with template parameter of cache. Needs template specialization.
196 
197  /// Sign, if data in cache is checked and scale.
199 
200  /**
201  * Table of element data.
202  *
203  * For every components contains vector of element data.
204  */
205  CacheData data_;
206 
207 };
208 
209 
210 #endif /* ELEMENT_DATA_CACHE_HH_ */
void read_binary_data(std::istream &data_stream, unsigned int n_components, unsigned int i_row) override
Implements ElementDataCacheBase::read_binary_data.
Data is only checked.
std::shared_ptr< std::vector< T > > ComponentDataPtr
CheckScaleData
Allow to hold sign, if data in cache is checked and scale (both can be executed only once) ...
#define MPI_Datatype
Definition: mpi.h:154
void print_ascii(ostream &out_stream, unsigned int idx) override
CheckScaleData check_scale_data_
Sign, if data in cache is checked and scale.
Some value(s) is set to NaN.
std::shared_ptr< ElementDataCacheBase > compute_node_data(std::vector< unsigned int > &conn_vec, unsigned int data_size) override
Implements ElementDataCacheBase::compute_node_data.
std::vector< ComponentDataPtr > CacheData
void store_value(unsigned int idx, const T *value)
T & operator[](unsigned int i)
Access i-th element in the data vector of 0th component.
MPI_Datatype mpi_data_type()
Return MPI data type corresponding with template parameter of cache. Needs template specialization...
void read_ascii_data(Tokenizer &tok, unsigned int n_components, unsigned int i_row) override
Implements ElementDataCacheBase::read_ascii_data.
Some value(s) is out of limits.
static constexpr bool value
Definition: json.hpp:87
ElementDataCache()
Default constructor.
void get_min_max_range(double &min, double &max) override
void add(unsigned int idx, const T *value)
void print_yaml_subarray(ostream &out_stream, unsigned int precision, unsigned int begin, unsigned int end) override
std::shared_ptr< ElementDataCacheBase > gather(Distribution *distr, LongIdx *local_to_global) override
Implements ElementDataCacheBase::gather.
virtual ~ElementDataCache() override
Destructor of ElementDataCache.
static CacheData create_data_cache(unsigned int size_of_cache, unsigned int row_vec_size)
void zero(unsigned int idx)
void scale_data(double coef)
Data is neither checked nor scaled.
CheckResult
Return type of method that checked data stored in ElementDataCache (NaN values, limits) ...
CheckResult check_values(double default_val, double lower_bound, double upper_bound)
void normalize(unsigned int idx, unsigned int divisor)
int LongIdx
Define type that represents indices of large arrays (elements, nodes, dofs etc.)
Definition: index_types.hh:24
void print_binary_all(ostream &out_stream, bool print_data_size=true) override
Print all data stored in output data to appended binary format.
std::shared_ptr< ElementDataCacheBase > element_node_cache_fixed_size(std::vector< unsigned int > &offset_vec) override
Implements ElementDataCacheBase::element_node_cache_fixed_size.
std::shared_ptr< ElementDataCacheBase > element_node_cache_optimize_size(std::vector< unsigned int > &offset_vec) override
Implements ElementDataCacheBase::element_node_cache_optimize_size.
ComponentDataPtr get_component_data(unsigned int component_idx)
Return vector of element data for get component.
void print_ascii_all(ostream &out_stream) override
Print all data stored in output data ro ascii format.
All values are not NaN and are in limits.
unsigned int n_comp() const