Flow123d  3.9.0-d39db4f
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> > CacheData;
53 
54  /// Default constructor
56 
57  /**
58  * \brief Constructor of input ElementDataCache (allow read data from GMSH or VTK file)
59  *
60  * Allows set variable size of cache.
61  *
62  * @param field_name Field name thas is read
63  * @param time Actual time of data
64  * @param row_vec_size Count of rows of data cache
65  */
66  ElementDataCache(std::string field_name, double time, unsigned int row_vec_size);
67 
68  /**
69  * \brief Constructor of output ElementDataCache (allow write data)
70  *
71  * Has fix size of cache.
72  *
73  * @param field_name Field name is written as parameter to output stream
74  * @param n_comp Given from shape of field
75  * @param size Count of rows of data cache
76  * @param fe_type FiniteElement type (used only for native data)
77  * @param n_dofs_per_element Number of DOFs per element (used only for native data)
78  */
79  ElementDataCache(std::string field_name, unsigned int n_comp, unsigned int size, std::string fe_type = "", unsigned int n_dofs_per_element = 1);
80 
81  /**
82  * \brief Destructor of ElementDataCache
83  */
84  virtual ~ElementDataCache() override;
85 
86  /// Return underlying vector of element data.
88 
89  /**
90  * Create data cache with given count rows (\p row_vec_size).
91  */
92  static CacheData create_data_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, unsigned int start=0) 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, unsigned int start = 0) 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  */
206 
207 };
208 
209 
210 #endif /* ELEMENT_DATA_CACHE_HH_ */
ElementDataCache::ElementDataCache
ElementDataCache()
Default constructor.
Definition: element_data_cache.cc:32
ElementDataCache::read_ascii_data
void read_ascii_data(Tokenizer &tok, unsigned int n_components, unsigned int i_row) override
Implements ElementDataCacheBase::read_ascii_data.
Definition: element_data_cache.cc:85
ElementDataCache
Definition: element_data_cache.hh:44
element_data_cache_base.hh
ElementDataCache::print_yaml_subarray
void print_yaml_subarray(ostream &out_stream, unsigned int precision, unsigned int begin, unsigned int end) override
Definition: element_data_cache.cc:158
ok
@ ok
All values are not NaN and are in limits.
Definition: element_data_cache.hh:37
ElementDataCache::gather
std::shared_ptr< ElementDataCacheBase > gather(Distribution *distr, LongIdx *local_to_global) override
Implements ElementDataCacheBase::gather.
Definition: element_data_cache.cc:293
value
static constexpr bool value
Definition: json.hpp:87
ElementDataCacheBase::n_comp
unsigned int n_comp() const
Definition: element_data_cache_base.hh:145
std::vector< unsigned int >
ElementDataCache::scale
@ scale
Data is scaled.
Definition: element_data_cache.hh:190
ElementDataCache::scale_data
void scale_data(double coef)
Definition: element_data_cache.cc:279
ElementDataCache::check
@ check
Data is only checked.
Definition: element_data_cache.hh:189
ElementDataCacheBase::n_dofs_per_element
unsigned int n_dofs_per_element() const
Definition: element_data_cache_base.hh:152
index_types.hh
exceptions.hh
ElementDataCache::CheckScaleData
CheckScaleData
Allow to hold sign, if data in cache is checked and scale (both can be executed only once)
Definition: element_data_cache.hh:187
Distribution
Definition: distribution.hh:50
ElementDataCache::create_data_cache
static CacheData create_data_cache(unsigned int row_vec_size)
Definition: element_data_cache.cc:77
ElementDataCache::print_ascii
void print_ascii(ostream &out_stream, unsigned int idx) override
Definition: element_data_cache.cc:113
ElementDataCache::compute_node_data
std::shared_ptr< ElementDataCacheBase > compute_node_data(std::vector< unsigned int > &conn_vec, unsigned int data_size) override
Implements ElementDataCacheBase::compute_node_data.
Definition: element_data_cache.cc:394
ElementDataCache::check_scale_data_
CheckScaleData check_scale_data_
Sign, if data in cache is checked and scale.
Definition: element_data_cache.hh:198
ElementDataCache::get_data
CacheData get_data()
Return underlying vector of element data.
Definition: element_data_cache.cc:71
ElementDataCache::element_node_cache_fixed_size
std::shared_ptr< ElementDataCacheBase > element_node_cache_fixed_size(std::vector< unsigned int > &offset_vec) override
Implements ElementDataCacheBase::element_node_cache_fixed_size.
Definition: element_data_cache.cc:346
CheckResult
CheckResult
Return type of method that checked data stored in ElementDataCache (NaN values, limits)
Definition: element_data_cache.hh:36
ElementDataCache::element_node_cache_optimize_size
std::shared_ptr< ElementDataCacheBase > element_node_cache_optimize_size(std::vector< unsigned int > &offset_vec) override
Implements ElementDataCacheBase::element_node_cache_optimize_size.
Definition: element_data_cache.cc:371
ElementDataCache::mpi_data_type
MPI_Datatype mpi_data_type()
Return MPI data type corresponding with template parameter of cache. Needs template specialization.
ElementDataCacheBase
Definition: element_data_cache_base.hh:33
ElementDataCache::print_binary_all
void print_binary_all(ostream &out_stream, bool print_data_size=true, unsigned int start=0) override
Print all data stored in output data to appended binary format.
Definition: element_data_cache.cc:141
not_a_number
@ not_a_number
Some value(s) is set to NaN.
Definition: element_data_cache.hh:39
ElementDataCache::read_binary_data
void read_binary_data(std::istream &data_stream, unsigned int n_components, unsigned int i_row) override
Implements ElementDataCacheBase::read_binary_data.
Definition: element_data_cache.cc:97
MPI_Datatype
#define MPI_Datatype
Definition: mpi.h:154
LongIdx
int LongIdx
Define type that represents indices of large arrays (elements, nodes, dofs etc.)
Definition: index_types.hh:24
ElementDataCache::add
void add(unsigned int idx, const T *value)
Definition: element_data_cache.cc:223
ElementDataCache::data_
CacheData data_
Definition: element_data_cache.hh:205
ElementDataCache::CacheData
std::shared_ptr< std::vector< T > > CacheData
Definition: element_data_cache.hh:52
ElementDataCache::~ElementDataCache
virtual ~ElementDataCache() override
Destructor of ElementDataCache.
Definition: element_data_cache.cc:67
ElementDataCache::none
@ none
Data is neither checked nor scaled.
Definition: element_data_cache.hh:188
ElementDataCache::get_min_max_range
void get_min_max_range(double &min, double &max) override
Definition: element_data_cache.cc:192
out_of_limits
@ out_of_limits
Some value(s) is out of limits.
Definition: element_data_cache.hh:38
ElementDataCache::zero
void zero(unsigned int idx)
Definition: element_data_cache.cc:236
ElementDataCache::check_values
CheckResult check_values(double default_val, double lower_bound, double upper_bound)
Definition: element_data_cache.cc:259
ElementDataCache::normalize
void normalize(unsigned int idx, unsigned int divisor)
Definition: element_data_cache.cc:249
ElementDataCache::print_ascii_all
void print_ascii_all(ostream &out_stream, unsigned int start=0) override
Print all data stored in output data ro ascii format.
Definition: element_data_cache.cc:129
ElementDataCache::store_value
void store_value(unsigned int idx, const T *value)
Definition: element_data_cache.cc:210
ElementDataCacheBase::fe_type
std::string fe_type() const
Definition: element_data_cache_base.hh:178
ElementDataCache::operator[]
T & operator[](unsigned int i)
Access i-th element in the data vector of 0th component.
Definition: element_data_cache.cc:438