Flow123d  release_3.0.0-973-g92f55e826
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 "mesh/long_idx.hh"
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 public:
46  typedef std::shared_ptr< std::vector<T> > ComponentDataPtr;
48 
49  /// Default constructor
51 
52  /**
53  * \brief Constructor of input ElementDataCache (allow read data from GMSH or VTK file)
54  *
55  * Allows set variable size of cache.
56  *
57  * @param field_name Field name thas is read
58  * @param time Actual time of data
59  * @param size_of_cache Count of columns of data cache
60  * @param row_vec_size Count of rows of data cache
61  */
62  ElementDataCache(std::string field_name, double time, unsigned int size_of_cache, unsigned int row_vec_size);
63 
64  /**
65  * \brief Constructor of output ElementDataCache (allow write data)
66  *
67  * Has fix size of cache.
68  *
69  * @param field_name Field name is written as parameter to output stream
70  * @param n_comp Given from shape of field
71  * @param size Count of rows of data cache
72  */
73  ElementDataCache(std::string field_name, unsigned int n_comp, unsigned int size);
74 
75  /**
76  * \brief Destructor of ElementDataCache
77  */
78  virtual ~ElementDataCache() override;
79 
80  /// Return vector of element data for get component.
81  ComponentDataPtr get_component_data(unsigned int component_idx);
82 
83  /**
84  * Create data cache with given count of columns (\p size_of_cache) and rows (\p row_vec_size).
85  */
86  static CacheData create_data_cache(unsigned int size_of_cache, unsigned int row_vec_size);
87 
88  /// Implements @p ElementDataCacheBase::read_ascii_data.
89  void read_ascii_data(Tokenizer &tok, unsigned int n_components, unsigned int i_row) override;
90 
91  /// Implements @p ElementDataCacheBase::read_binary_data.
92  void read_binary_data(std::istream &data_stream, unsigned int n_components, unsigned int i_row) override;
93 
94  /**
95  * Output data element on given index @p idx. Method for writing data
96  * to output stream.
97  *
98  * \note This method is used only by MSH file format.
99  */
100  void print_ascii(ostream &out_stream, unsigned int idx) override;
101 
102  /**
103  * \brief Print all data stored in output data ro ascii format
104  *
105  * TODO: indicate if the tensor data are output in column-first or raw-first order
106  * and possibly implement transposition. Set such property for individual file formats.
107  * Class OutputData stores always in raw-first order.
108  */
109  void print_ascii_all(ostream &out_stream) override;
110 
111  /**
112  * \brief Print all data stored in output data to appended binary format
113  */
114  void print_binary_all(ostream &out_stream, bool print_data_size = true) override;
115 
116  void print_yaml_subarray(ostream &out_stream, unsigned int precision, unsigned int begin, unsigned int end) override;
117 
118  /**
119  * Store data element of given data value under given index.
120  */
121  void store_value(unsigned int idx, const T * value);
122 
123  /**
124  * Add value to given index
125  */
126  void add(unsigned int idx, const T * value);
127 
128  /**
129  * Reset values at given index
130  */
131  void zero(unsigned int idx);
132 
133  /**
134  * Normalize values at given index
135  */
136  void normalize(unsigned int idx, unsigned int divisor);
137 
138  /**
139  * Find minimal and maximal range of stored data
140  */
141  void get_min_max_range(double &min, double &max) override;
142 
143  /**
144  * Make full check of data stored in cache.
145  *
146  * Method iterates through data and
147  * - checks NaN data values, default_val replaces NaN
148  * - if default_val==NaN and some value(s) is not replaced with valid value return CheckResult::nan
149  * - if some value(s) is out of limits )lower_bound, upper_bound) return CheckResult::out_of_limits
150  * - in other cases return CheckResult::ok
151  *
152  * Method is executed only once.
153  */
154  CheckResult check_values(double default_val, double lower_bound, double upper_bound);
155 
156  /**
157  * Scale data vector of given 'component_idx' with scale 'coef'.
158  *
159  * Method is executed only once and should be called after check_values method.
160  * Method can be used e. g. for convert between units.
161  */
162  void scale_data(double coef);
163 
164  /// Implements ElementDataCacheBase::gather.
165  std::shared_ptr< ElementDataCacheBase > gather(Distribution *distr, LongIdx *local_to_global) override;
166 
167  /// Implements ElementDataCacheBase::element_node_cache_fixed_size.
168  std::shared_ptr< ElementDataCacheBase > element_node_cache_fixed_size(std::vector<unsigned int> &offset_vec) override;
169 
170  /// Implements ElementDataCacheBase::element_node_cache_optimize_size.
171  std::shared_ptr< ElementDataCacheBase > element_node_cache_optimize_size(std::vector<unsigned int> &offset_vec) override;
172 
173  /// Implements ElementDataCacheBase::compute_node_data.
174  std::shared_ptr< ElementDataCacheBase > compute_node_data(std::vector<unsigned int> &conn_vec, unsigned int data_size) override;
175 
176  /// Access i-th element in the data vector of 0th component.
177  T& operator[](unsigned int i);
178 
179 protected:
180  /// Allow to hold sign, if data in cache is checked and scale (both can be executed only once)
182  none, ///< Data is neither checked nor scaled.
183  check, ///< Data is only checked.
184  scale ///< Data is scaled.
185  };
186 
187 
188  /// Return MPI data type corresponding with template parameter of cache. Needs template specialization.
190 
191  /// Sign, if data in cache is checked and scale.
193 
194  /**
195  * Table of element data.
196  *
197  * For every components contains vector of element data.
198  */
200 
201 };
202 
203 
204 #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:88
ElementDataCache::print_ascii_all
void print_ascii_all(ostream &out_stream) override
Print all data stored in output data ro ascii format.
Definition: element_data_cache.cc:137
ElementDataCache
Definition: element_data_cache.hh:44
ElementDataCache::get_component_data
ComponentDataPtr get_component_data(unsigned int component_idx)
Return vector of element data for get component.
Definition: element_data_cache.cc:68
element_data_cache_base.hh
LongIdx
int LongIdx
Define type that represents indices of large arrays (elements, nodes, dofs etc.)
Definition: long_idx.hh:22
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:166
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:305
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< ComponentDataPtr >
ElementDataCache::scale
@ scale
Data is scaled.
Definition: element_data_cache.hh:184
ElementDataCache::scale_data
void scale_data(double coef)
Definition: element_data_cache.cc:289
ElementDataCache::check
@ check
Data is only checked.
Definition: element_data_cache.hh:183
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:181
ElementDataCache::print_binary_all
void print_binary_all(ostream &out_stream, bool print_data_size=true) override
Print all data stored in output data to appended binary format.
Definition: element_data_cache.cc:149
Distribution
Definition: distribution.hh:50
ElementDataCache::print_ascii
void print_ascii(ostream &out_stream, unsigned int idx) override
Definition: element_data_cache.cc:121
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:406
ElementDataCache::check_scale_data_
CheckScaleData check_scale_data_
Sign, if data in cache is checked and scale.
Definition: element_data_cache.hh:192
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:358
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:383
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
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:102
MPI_Datatype
#define MPI_Datatype
Definition: mpi.h:154
ElementDataCache::add
void add(unsigned int idx, const T *value)
Definition: element_data_cache.cc:231
ElementDataCache::ComponentDataPtr
std::shared_ptr< std::vector< T > > ComponentDataPtr
Definition: element_data_cache.hh:46
ElementDataCache::data_
CacheData data_
Definition: element_data_cache.hh:199
ElementDataCache::~ElementDataCache
virtual ~ElementDataCache() override
Destructor of ElementDataCache.
Definition: element_data_cache.cc:64
ElementDataCache::none
@ none
Data is neither checked nor scaled.
Definition: element_data_cache.hh:182
ElementDataCache::get_min_max_range
void get_min_max_range(double &min, double &max) override
Definition: element_data_cache.cc:200
out_of_limits
@ out_of_limits
Some value(s) is out of limits.
Definition: element_data_cache.hh:38
long_idx.hh
ElementDataCache::CacheData
std::vector< ComponentDataPtr > CacheData
Definition: element_data_cache.hh:47
ElementDataCache::create_data_cache
static CacheData create_data_cache(unsigned int size_of_cache, unsigned int row_vec_size)
Definition: element_data_cache.cc:75
ElementDataCache::zero
void zero(unsigned int idx)
Definition: element_data_cache.cc:244
ElementDataCache::check_values
CheckResult check_values(double default_val, double lower_bound, double upper_bound)
Definition: element_data_cache.cc:267
ElementDataCache::normalize
void normalize(unsigned int idx, unsigned int divisor)
Definition: element_data_cache.cc:257
ElementDataCache::store_value
void store_value(unsigned int idx, const T *value)
Definition: element_data_cache.cc:218
ElementDataCache::operator[]
T & operator[](unsigned int i)
Access i-th element in the data vector of 0th component.
Definition: element_data_cache.cc:450