Flow123d  release_3.0.0-1264-g45bfb2a
observe.cc
Go to the documentation of this file.
1 /*
2  * observe.cc
3  *
4  * Created on: Jun 28, 2016
5  * Author: jb
6  */
7 
8 #include <string>
9 #include <numeric>
10 #include <cmath>
11 #include <algorithm>
12 #include <unordered_set>
13 #include <queue>
14 
15 #include "system/global_defs.h"
16 #include "input/accessors.hh"
17 #include "input/input_type.hh"
19 
20 #include "mesh/mesh.h"
21 #include "mesh/bih_tree.hh"
22 #include "mesh/region.hh"
23 #include "mesh/accessors.hh"
24 #include "io/observe.hh"
25 #include "io/element_data_cache.hh"
26 #include "fem/mapping_p1.hh"
27 #include "tools/unit_si.hh"
28 
29 
30 namespace IT = Input::Type;
31 
32 
33 /**
34  * Helper class allows to work with ObservePoint above elements with different dimensions
35  *
36  * Allows:
37  * - calculate projection of points by dimension
38  * - snap to subelement
39  */
40 template<unsigned int dim>
42 public:
43  /// Constructor
45 
46  ObservePointData projection(arma::vec3 input_point, unsigned int i_elm, ElementAccessor<3> elm) {
47  arma::mat::fixed<3, dim+1> elm_map = mapping_.element_map(elm);
48  arma::vec::fixed<dim+1> projection = mapping_.project_real_to_unit(input_point, elm_map);
49  projection = mapping_.clip_to_element(projection);
50 
51  ObservePointData data;
52  data.element_idx_ = i_elm;
53  data.local_coords_ = projection.rows(1, elm.dim());
54  data.global_coords_ = elm_map*projection;
55  data.distance_ = arma::norm(data.global_coords_ - input_point, 2);
56  data.proc_ = elm.proc();
57 
58  return data;
59  }
60 
61  /**
62  * Snap local coords to the subelement. Called by the ObservePoint::snap method.
63  */
64  void snap_to_subelement(ObservePointData & observe_data, ElementAccessor<3> elm, unsigned int snap_dim)
65  {
66  if (snap_dim <= dim) {
67  double min_dist = 2.0; // on the ref element the max distance should be about 1.0, smaler then 2.0
68  arma::vec min_center;
69  for(auto &center : RefElement<dim>::centers_of_subelements(snap_dim))
70  {
71  double dist = arma::norm(center - observe_data.local_coords_, 2);
72  if ( dist < min_dist) {
73  min_dist = dist;
74  min_center = center;
75  }
76  }
77  observe_data.local_coords_ = min_center;
78  }
79 
80  arma::mat::fixed<3, dim+1> elm_map = mapping_.element_map(elm);
81  observe_data.global_coords_ = elm_map * RefElement<dim>::local_to_bary(observe_data.local_coords_);
82  }
83 
84 private:
85  /// Mapping object.
87 };
88 
89 template class ProjectionHandler<1>;
90 template class ProjectionHandler<2>;
91 template class ProjectionHandler<3>;
92 
93 
94 /**
95  * Helper struct, used as comparator of priority queue in ObservePoint::find_observe_point.
96  */
98 {
99  bool operator()(const ObservePointData& lhs, const ObservePointData& rhs) const
100  {
101  return lhs.distance_ > rhs.distance_;
102  }
103 };
104 
105 
106 /*******************************************************************
107  * implementation of ObservePoint
108  */
109 
111  return IT::Record("ObservePoint", "Specification of the observation point.\n"
112  "The actual observation element and the observation point on it is determined as follows:\n\n"
113  "1. Find an initial element containing the initial point. If no such element exists, we report an error.\n"
114  "2. Use BFS (Breadth-first search) starting from the inital element to find the 'observe element'. The observe element is the closest element.\n"
115  "3. Find the closest projection of the inital point on the observe element and snap this projection according to the ``snap_dim``.\n")
116  .allow_auto_conversion("point")
117  .declare_key("name", IT::String(),
119  "Default name have the form 'obs_<id>', where 'id' "
120  "is the rank of the point on the input."),
121  "Optional point name, which has to be unique.\n"
122  "Any string that is a valid YAML key in record without any quoting can be used, however, "
123  "using just alpha-numerical characters, and underscore instead of the space, is recommended."
124  )
126  "Initial point for the observe point search.")
127  .declare_key("snap_dim", IT::Integer(0, 4), IT::Default("4"),
128  "The dimension of the sub-element to which center we snap. For value 4 no snapping is done. "
129  "For values 0 up to 3 the element containing the initial point is found and then the observe"
130  "point is snapped to the nearest center of the sub-element of the given dimension. "
131  "E.g. for dimension 2 we snap to the nearest center of the face of the initial element."
132  )
133  .declare_key("snap_region", IT::String(), IT::Default("\"ALL\""),
134  "The region of the initial element for snapping. Without snapping we make a projection to the initial element.")
135  .declare_key("search_radius", IT::Double(0.0),
136  IT::Default::read_time("Maximal distance of the observe point from the mesh relative to the mesh diameter. "),
137  "Global value is defined in mesh record by the key global_snap_radius.")
138  .close();
139 }
140 
142 {}
143 
144 
145 ObservePoint::ObservePoint(Input::Record in_rec, Mesh &mesh, unsigned int point_idx)
146 {
147  in_rec_ = in_rec;
148 
149  string default_label = string("obs_") + std::to_string(point_idx);
150  name_ = in_rec.val<string>("name", default_label );
151 
152  vector<double> tmp_coords;
153  in_rec.val<Input::Array>("point").copy_to(tmp_coords);
154  input_point_= arma::vec(tmp_coords);
155 
156  snap_dim_ = in_rec.val<unsigned int>("snap_dim");
157 
158  snap_region_name_ = in_rec.val<string>("snap_region");
159 
160  const BoundingBox &main_box = mesh.get_bih_tree().tree_box();
161  double max_mesh_size = arma::max(main_box.max() - main_box.min());
162  max_search_radius_ = in_rec_.val<double>("search_radius", mesh.global_snap_radius()) * max_mesh_size;
163 }
164 
165 
166 
168  return observe_data_.distance_ < numeric_limits<double>::infinity();
169 }
170 
171 
172 
174 {
175  ElementAccessor<3> elm = mesh.element_accessor(observe_data_.element_idx_);
176  switch (elm.dim()) {
177  case 1:
178  {
180  ph.snap_to_subelement(observe_data_, elm, snap_dim_);
181  break;
182  }
183  case 2:
184  {
186  ph.snap_to_subelement(observe_data_, elm, snap_dim_);
187  break;
188  }
189  case 3:
190  {
192  ph.snap_to_subelement(observe_data_, elm, snap_dim_);
193  break;
194  }
195  default: ASSERT(false).error("Clipping supported only for dim=1,2,3.");
196  }
197 }
198 
199 
200 
202  RegionSet region_set = mesh.region_db().get_region_set(snap_region_name_);
203  if (region_set.size() == 0)
204  THROW( RegionDB::ExcUnknownSet() << RegionDB::EI_Label(snap_region_name_) << in_rec_.ei_address() );
205 
206 
207  const BIHTree &bih_tree=mesh.get_bih_tree();
208  vector<unsigned int> candidate_list;
209  std::unordered_set<unsigned int> closed_elements(1023);
210  std::priority_queue< ObservePointData, std::vector<ObservePointData>, CompareByDist > candidate_queue;
211 
212  // search for the initial element
213  auto projected_point = bih_tree.tree_box().project_point(input_point_);
214  bih_tree.find_point(projected_point, candidate_list, true);
215 
216  // closest element
217  ObservePointData min_observe_point_data;
218 
219  for (unsigned int i_candidate=0; i_candidate<candidate_list.size(); ++i_candidate) {
220  unsigned int i_elm=candidate_list[i_candidate];
221  ElementAccessor<3> elm = mesh.element_accessor(i_elm);
222 
223  // project point, add candidate to queue
224  auto observe_data = point_projection( i_elm, elm );
225 
226  // save the closest element for later diagnostic
227  if(observe_data.distance_ < min_observe_point_data.distance_)
228  min_observe_point_data = observe_data;
229 
230  // queue only the elements in the maximal search radius
231  if (observe_data.distance_ <= max_search_radius_)
232  candidate_queue.push(observe_data);
233  closed_elements.insert(i_elm);
234  }
235 
236  // no candidates found -> exception
237  if (candidate_queue.empty()) {
238  THROW(ExcNoObserveElementCandidates()
239  << EI_PointName(name_)
240  << EI_Point(input_point_)
241  << EI_ClosestEle(min_observe_point_data));
242  }
243 
244  while (!candidate_queue.empty())
245  {
246  auto candidate_data = candidate_queue.top();
247  candidate_queue.pop();
248 
249  unsigned int i_elm=candidate_data.element_idx_;
250  ElementAccessor<3> elm = mesh.element_accessor(i_elm);
251 
252  // test if candidate is in region and update projection
253  if (elm.region().is_in_region_set(region_set)) {
254  ASSERT_LE(candidate_data.distance_, observe_data_.distance_).error();
255 
256  observe_data_.distance_ = candidate_data.distance_;
257  observe_data_.element_idx_ = candidate_data.element_idx_;
258  observe_data_.local_coords_ = candidate_data.local_coords_;
259  observe_data_.global_coords_ = candidate_data.global_coords_;
260  observe_data_.proc_ = candidate_data.proc_;
261  break;
262  }
263 
264  // add candidates to queue
265  for (unsigned int n=0; n < elm->n_nodes(); n++)
266  for(unsigned int i_node_ele : mesh.node_elements()[elm.node_accessor(n).idx()]) {
267  if (closed_elements.find(i_node_ele) == closed_elements.end()) {
268  ElementAccessor<3> neighbor_elm = mesh.element_accessor(i_node_ele);
269  auto observe_data = point_projection( i_node_ele, neighbor_elm );
270  if (observe_data.distance_ <= max_search_radius_)
271  candidate_queue.push(observe_data);
272  closed_elements.insert(i_node_ele);
273  }
274  }
275  }
276 
277  if (! have_observe_element()) {
278  THROW(ExcNoObserveElement()
279  << EI_RegionName(snap_region_name_)
280  << EI_PointName(name_)
281  << EI_Point(input_point_)
282  << EI_ClosestEle(min_observe_point_data));
283  }
284  snap( mesh );
285  ElementAccessor<3> elm = mesh.element_accessor(observe_data_.element_idx_);
286  double dist = arma::norm(elm.centre() - input_point_, 2);
287  double elm_norm = arma::norm(elm.bounding_box().max() - elm.bounding_box().min(), 2);
288  if (dist > 2*elm_norm)
289  WarningOut().fmt("Observe point ({}) is too distant from the mesh.\n", name_);
290 }
291 
292 
293 
294 
295 void ObservePoint::output(ostream &out, unsigned int indent_spaces, unsigned int precision)
296 {
297  out << setw(indent_spaces) << "" << "- name: " << name_ << endl;
298  out << setw(indent_spaces) << "" << " init_point: " << field_value_to_yaml(input_point_, precision) << endl;
299  out << setw(indent_spaces) << "" << " snap_dim: " << snap_dim_ << endl;
300  out << setw(indent_spaces) << "" << " snap_region: " << snap_region_name_ << endl;
301  out << setw(indent_spaces) << "" << " observe_point: " << field_value_to_yaml(observe_data_.global_coords_, precision) << endl;
302 }
303 
304 
305 
307  switch (elm.dim()) {
308  case 1:
309  {
311  return ph.projection(input_point_, i_elm, elm);
312  break;
313  }
314  case 2:
315  {
317  return ph.projection(input_point_, i_elm, elm);
318  break;
319  }
320  case 3:
321  {
323  return ph.projection(input_point_, i_elm, elm);
324  break;
325  }
326  default:
327  ASSERT(false).error("Invalid element dimension!");
328  }
329 
330  return ObservePointData(); // Should not happen.
331 }
332 
333 
334 
335 
336 /*******************************************************************
337  * implementation of Observe
338  */
339 
340 const unsigned int Observe::max_observe_value_time = 1000;
341 
342 
343 Observe::Observe(string observe_name, Mesh &mesh, Input::Array in_array, unsigned int precision, std::string unit_str)
344 : observe_name_(observe_name),
345  precision_(precision),
346  point_ds_(nullptr),
347  observe_time_idx_(0)
348 {
350  observe_values_time_.push_back(numeric_limits<double>::signaling_NaN());
351 
352  unsigned int global_point_idx=0, local_point_idx=0;
353 
354  // in_rec is Output input record.
355  for(auto it = in_array.begin<Input::Record>(); it != in_array.end(); ++it) {
356  ObservePoint point(*it, mesh, points_.size());
357  point.find_observe_point(mesh);
358  point.observe_data_.global_idx_ = global_point_idx++;
359  if (point.observe_data_.proc_ == mesh.get_el_ds()->myp()) {
360  point.observe_data_.local_idx_ = local_point_idx++;
361  point_4_loc_.push_back(point.observe_data_.global_idx_);
362  }
363  else
364  point.observe_data_.local_idx_ = -1;
365  points_.push_back( point );
366  observed_element_indices_.push_back(point.observe_data_.element_idx_);
367  }
368  // make local to global map, distribution
369  point_ds_ = new Distribution(Observe::max_observe_value_time * point_4_loc_.size(), PETSC_COMM_WORLD);
370 
371  // make indices unique
372  std::sort(observed_element_indices_.begin(), observed_element_indices_.end());
373  auto last = std::unique(observed_element_indices_.begin(), observed_element_indices_.end());
375 
376  time_unit_str_ = unit_str;
378 
379  if (points_.size() == 0) return;
381  if (rank_==0) {
382  FilePath observe_file_path(observe_name_ + "_observe.yaml", FilePath::output_file);
383  try {
384  observe_file_path.open_stream(observe_file_);
385  //observe_file_.setf(std::ios::scientific);
386  observe_file_.precision(this->precision_);
387 
388  } INPUT_CATCH(FilePath::ExcFileOpen, FilePath::EI_Address_String, in_array)
389  output_header();
390  }
391 }
392 
394  observe_file_.close();
395  if (point_ds_!=nullptr) delete point_ds_;
396 }
397 
398 
399 template <typename T>
400 ElementDataCache<T> & Observe::prepare_compute_data(std::string field_name, double field_time, unsigned int n_rows,
401  unsigned int n_cols)
402 {
405  else
406  ASSERT(fabs(field_time / time_unit_seconds_ - observe_values_time_[observe_time_idx_]) < 2*numeric_limits<double>::epsilon())
407  (field_time)(observe_values_time_[observe_time_idx_]);
408 
409  OutputDataFieldMap::iterator it=observe_field_values_.find(field_name);
410  if (it == observe_field_values_.end()) {
411  observe_field_values_[field_name]
412  = std::make_shared< ElementDataCache<T> >(field_name, n_rows * n_cols, point_ds_->lsize());
413  it=observe_field_values_.find(field_name);
414  }
415  return dynamic_cast<ElementDataCache<T> &>(*(it->second));
416 }
417 
418 // explicit instantiation of template method
419 #define OBSERVE_PREPARE_COMPUTE_DATA(TYPE) \
420 template ElementDataCache<TYPE> & Observe::prepare_compute_data<TYPE>(std::string field_name, double field_time, \
421  unsigned int n_rows, unsigned int n_cols)
422 
424 OBSERVE_PREPARE_COMPUTE_DATA(unsigned int);
426 
427 
429  unsigned int indent = 2;
430  observe_file_ << "# Observation file: " << observe_name_ << endl;
431  observe_file_ << "time_unit: " << time_unit_str_ << endl;
432  observe_file_ << "time_unit_in_seconds: " << time_unit_seconds_ << endl;
433  observe_file_ << "points:" << endl;
434  for(auto &point : points_)
435  point.output(observe_file_, indent, precision_);
436  observe_file_ << "data:" << endl;
437 
438 }
439 
440 void Observe::output_time_frame(bool flush) {
441  if (points_.size() == 0) return;
442 
443  if ( ! no_fields_warning ) {
444  no_fields_warning=true;
445  // check that observe fields are set
447  // first call and no fields
448  ASSERT(observe_field_values_.size() == 0);
449  WarningOut() << "No observe fields for the observation stream: " << observe_name_ << endl;
450  }
451  }
452 
454  ASSERT(observe_field_values_.size() == 0);
455  return;
456  }
457 
458  observe_time_idx_++;
459  if ( (observe_time_idx_==Observe::max_observe_value_time) || flush ) {
461  for (unsigned int i=0; i<Observe::max_observe_value_time; ++i)
462  for (unsigned int j=0; j<point_4_loc_.size(); ++j) local_to_global[i*point_4_loc_.size()+j] = i*points_.size()+point_4_loc_[j];
463 
464  for(auto &field_data : observe_field_values_) {
465  auto serial_data = field_data.second->gather(point_ds_, &(local_to_global[0]));
466  if (rank_==0) field_data.second = serial_data;
467  }
468 
469  if (rank_ == 0) {
470  unsigned int indent = 2;
471  for (unsigned int i_time=0; i_time<observe_time_idx_; ++i_time) {
472  observe_file_ << setw(indent) << "" << "- time: " << observe_values_time_[i_time] << endl;
473  for(auto &field_data : observe_field_values_) {
474  observe_file_ << setw(indent) << "" << " " << field_data.second->field_input_name() << ": ";
475  field_data.second->print_yaml_subarray(observe_file_, precision_, i_time*points_.size(), (i_time+1)*points_.size());
476  observe_file_ << endl;
477  }
478  }
479  }
480 
481  observe_values_time_.clear();
483  observe_values_time_.push_back(numeric_limits<double>::signaling_NaN());
484  observe_time_idx_ = 0;
485  } else {
486  observe_values_time_.push_back( numeric_limits<double>::signaling_NaN() );
487  }
488 
489 }
490 
492  auto bgn_it = make_iter<ObservePointAccessor>( ObservePointAccessor(this, 0) );
493  auto end_it = make_iter<ObservePointAccessor>( ObservePointAccessor(this, point_4_loc_.size()) );
494  return Range<ObservePointAccessor>(bgn_it, end_it);
495 }
496 
ObservePointData point_projection(unsigned int i_elm, ElementAccessor< 3 > elm)
Project point to given element by dimension of this element.
Definition: observe.cc:306
std::vector< ObservePoint > points_
Full information about observe points.
Definition: observe.hh:275
Class MappingP1 implements the affine transformation of the unit cell onto the actual cell...
Iterator< ValueType > begin() const
Bounding box in 3d ambient space.
Definition: bounding_box.hh:54
#define OBSERVE_PREPARE_COMPUTE_DATA(TYPE)
Definition: observe.cc:419
OutputDataFieldMap observe_field_values_
Stored field values.
Definition: observe.hh:280
unsigned int n_nodes() const
Definition: elements.h:128
Observe(string observe_name, Mesh &mesh, Input::Array in_array, unsigned int precision, std::string unit_str)
Definition: observe.cc:343
vector< vector< unsigned int > > const & node_elements()
Definition: mesh.cc:1011
std::ofstream observe_file_
Output file stream.
Definition: observe.hh:290
RegionSet get_region_set(const std::string &set_name) const
Definition: region.cc:329
Accessor to input data conforming to declared Array.
Definition: accessors.hh:567
string field_value_to_yaml(const T &mat, unsigned int prec)
NodeAccessor< 3 > node_accessor(unsigned int ni) const
Definition: accessors.hh:202
unsigned int proc_
Actual process of the observe point.
Definition: observe.hh:59
BaryPoint project_real_to_unit(const RealPoint &point, const ElementMap &map) const
Definition: mapping_p1.cc:278
std::vector< LongIdx > point_4_loc_
Index set assigning to local point index its global index.
Definition: observe.hh:303
Class Input::Type::Default specifies default value of keys of a Input::Type::Record.
Definition: type_record.hh:61
ProjectionHandler()
Constructor.
Definition: observe.cc:44
double convert_unit_from(std::string actual_unit) const
Convert and check user-defined unit.
Definition: unit_si.cc:217
static const Input::Type::Record & get_input_type()
Definition: observe.cc:110
#define INPUT_CATCH(ExceptionType, AddressEITag, input_accessor)
Definition: accessors.hh:64
void output_time_frame(bool flush)
Definition: observe.cc:440
bool have_observe_element()
Definition: observe.cc:167
static Default obligatory()
The factory function to make an empty default value which is obligatory.
Definition: type_record.hh:110
double global_snap_radius() const
Maximal distance of observe point from Mesh relative to its size.
Definition: mesh.cc:953
Definition: mesh.h:76
void output(ostream &out, unsigned int indent_spaces, unsigned int precision)
Definition: observe.cc:295
static const unsigned int max_observe_value_time
Maximal size of observe values times vector.
Definition: observe.hh:269
#define ASSERT_LE(a, b)
Definition of comparative assert macro (Less or Equal)
Definition: asserts.hh:304
Mat< double, N, 1 > vec
Definition: armor.hh:211
unsigned int element_idx_
Final element of the observe point. The index in the mesh.
Definition: observe.hh:43
std::string time_unit_str_
String representation of the time unit.
Definition: observe.hh:293
int rank_
Definition: observe.hh:272
const RegionDB & region_db() const
Definition: mesh.h:141
#define ASSERT(expr)
Allow use shorter versions of macro names if these names is not used with external library...
Definition: asserts.hh:347
std::string to_string(const T &value)
Definition: string.h:29
std::string observe_name_
Definition: observe.hh:287
Class for declaration of the integral input data.
Definition: type_base.hh:490
arma::vec local_coords_
Local (barycentric) coordinates on the element.
Definition: observe.hh:52
unsigned int proc() const
Definition: accessors.hh:194
Record & close() const
Close the Record for further declarations of keys.
Definition: type_record.cc:304
Class for declaration of inputs sequences.
Definition: type_base.hh:346
virtual ElementAccessor< 3 > element_accessor(unsigned int idx) const
Create and return ElementAccessor to element of given idx.
Definition: mesh.cc:739
IteratorBase end() const
arma::vec::fixed< spacedim > centre() const
Computes the barycenter.
void open_stream(Stream &stream) const
Definition: file_path.cc:211
Global macros to enhance readability and debugging, general constants.
virtual Record & allow_auto_conversion(const string &from_key)
Allows shorter input of the Record providing only value of the from_key given as the parameter...
Definition: type_record.cc:133
Class for declaration of the input data that are floating point numbers.
Definition: type_base.hh:541
arma::vec3 global_coords_
Global coordinates of the observation point.
Definition: observe.hh:49
unsigned int precision_
Precision of float output.
Definition: observe.hh:297
void find_observe_point(Mesh &mesh)
Definition: observe.cc:201
DummyInt isnan(...)
Definition: format.h:306
Range helper class.
bool operator()(const ObservePointData &lhs, const ObservePointData &rhs) const
Definition: observe.cc:99
const BoundingBox & tree_box() const
Definition: bih_tree.cc:229
Accessor to the data with type Type::Record.
Definition: accessors.hh:292
const Ret val(const string &key) const
UnitSI & s(int exp=1)
Definition: unit_si.cc:76
void output_header()
Definition: observe.cc:428
std::vector< unsigned int > observed_element_indices_
Elements of the o_points.
Definition: observe.hh:277
const Point & max() const
double distance_
Definition: observe.hh:56
Class for O(log N) lookup for intersections with a set of bounding boxes.
Definition: bih_tree.hh:38
BoundingBox bounding_box() const
Definition: accessors.hh:210
Record & declare_key(const string &key, std::shared_ptr< TypeBase > type, const Default &default_value, const string &description, TypeBase::attribute_map key_attributes=TypeBase::attribute_map())
Declares a new key of the Record.
Definition: type_record.cc:503
void snap_to_subelement(ObservePointData &observe_data, ElementAccessor< 3 > elm, unsigned int snap_dim)
Definition: observe.cc:64
Range< ObservePointAccessor > local_range() const
Returns local range of observe points.
Definition: observe.cc:491
ElementDataCache< T > & prepare_compute_data(std::string field_name, double field_time, unsigned int n_rows, unsigned int n_cols)
Definition: observe.cc:400
Distribution * get_el_ds() const
Definition: mesh.h:162
Region region() const
Definition: accessors.hh:164
ObservePointData projection(arma::vec3 input_point, unsigned int i_elm, ElementAccessor< 3 > elm)
Definition: observe.cc:46
const BIHTree & get_bih_tree()
Getter for BIH. Creates and compute BIH at first call.
Definition: mesh.cc:944
#define MPI_Comm_rank
Definition: mpi.h:236
Dedicated class for storing path to input and output files.
Definition: file_path.hh:54
unsigned int myp() const
get my processor
static Default read_time(const std::string &description)
The factory function to make an default value that will be specified at the time when a key will be r...
Definition: type_record.hh:97
friend class ObservePointAccessor
Definition: observe.hh:311
void find_point(const Space< 3 >::Point &point, std::vector< unsigned int > &result_list, bool full_list=false) const
Definition: bih_tree.cc:287
double time_unit_seconds_
Time unit in seconds.
Definition: observe.hh:295
std::vector< double > observe_values_time_
Common evaluation time of the fields for single time frame.
Definition: observe.hh:284
bool is_in_region_set(const RegionSet &set) const
Definition: region.cc:46
MappingP1< dim, 3 > mapping_
Mapping object.
Definition: observe.cc:86
Point project_point(const Point &point) const
#define WarningOut()
Macro defining &#39;warning&#39; record of log.
Definition: logger.hh:246
#define MPI_COMM_WORLD
Definition: mpi.h:123
static BaryPoint local_to_bary(const LocalPoint &lp)
Converts from local to barycentric coordinates.
Definition: ref_element.cc:305
unsigned int observe_time_idx_
Index of actual (last) time in observe_values_time_ vector.
Definition: observe.hh:309
const Point & min() const
Record type proxy class.
Definition: type_record.hh:182
Distribution * point_ds_
Parallel distribution of observe points.
Definition: observe.hh:306
unsigned int dim() const
Definition: accessors.hh:156
Class for representation SI units of Fields.
Definition: unit_si.hh:40
BaryPoint clip_to_element(BaryPoint &barycentric)
Definition: mapping_p1.cc:300
ElementMap element_map(ElementAccessor< 3 > elm) const
Definition: mapping_p1.cc:268
void snap(Mesh &mesh)
Definition: observe.cc:173
bool no_fields_warning
Definition: observe.hh:300
Class for declaration of the input data that are in string format.
Definition: type_base.hh:589
#define THROW(whole_exception_expr)
Wrapper for throw. Saves the throwing point.
Definition: exceptions.hh:53
~Observe()
Destructor, must close the file.
Definition: observe.cc:393
unsigned int lsize(int proc) const
get local size