Flow123d  JS_before_hm-1576-g4d0b70e
msh_pvdreader.cc
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 msh_pvdreader.cc
15  * @brief
16  * @author dalibor
17  */
18 
19 
20 #include <iostream>
21 #include <vector>
22 #include <pugixml.hpp>
23 
24 #include "msh_pvdreader.hh"
25 #include "msh_vtkreader.hh"
26 
27 
28 
30 : BaseMeshReader(file_name)
31 {
32  data_section_name_ = "DataArray";
33  has_compatible_mesh_ = false;
34  pvd_path_dir_ = file_name.parent_path();
36 }
37 
38 
40 {
41  for (auto file_data : file_list_) {
42  if (file_data.reader != nullptr) delete file_data.reader;
43  }
44 }
45 
46 
48  // will be implemented later
49  // ASSERT(0).error("Not implemented!");
50 }
51 
52 
54  file_list_[0].reader = new VtkMeshReader(file_list_[0].file_name, this->element_data_values_, file_list_[0].time);
55  file_list_[0].reader->read_nodes(mesh);
56 }
57 
58 
60  file_list_[0].reader->read_elements(mesh);
61 }
62 
63 
64 void PvdMeshReader::read_element_data(ElementDataCacheBase &data_cache, MeshDataHeader actual_header, unsigned int n_components,
65  bool boundary_domain) {
66 
67  ASSERT(!boundary_domain).error("Reading PVD data of boundary elements is not supported yet!\n");
68  list_it_->reader->read_element_data(data_cache, actual_header, n_components, boundary_domain);
69 }
70 
71 
73  pugi::xml_document doc;;
74  doc.load_file( tok_.f_name().c_str() );
75  pugi::xml_node node = doc.child("VTKFile").child("Collection");
76 
77  double last_time = -numeric_limits<double>::infinity(); // check ascending order of times
78  std::vector<std::string> sub_paths; //allow construct paths of VTK files
79  sub_paths.resize(2);
80  sub_paths[0] = pvd_path_dir_;
81 
82  // read PVD data
83  for (pugi::xml_node subnode = node.child("DataSet"); subnode; subnode = subnode.next_sibling("DataSet")) {
84  double time = subnode.attribute("timestep").as_double();
85  if (time <= last_time) {
86  WarningOut().fmt("Wrong time order in PVD file '{}', time '{}'. Skipping this time step.\n", tok_.f_name(), time );
87  } else {
88  sub_paths[1] = subnode.attribute("file").as_string();
89  FilePath vtk_path(sub_paths, FilePath::input_file);
90  last_time = time;
91  file_list_.push_back( VtkFileData(time, vtk_path) );
92  }
93  }
94 }
95 
96 
98  auto comp = [](double t, const VtkFileData &a) {
99  return t * (1.0 + 2.0*numeric_limits<double>::epsilon()) < a.time;
100  };
101 
102  // find iterator to data of VTK file
103  list_it_ = std::upper_bound(file_list_.begin(),
104  file_list_.end(),
105  header_query.time,
106  comp);
107  --list_it_;
108 
109  // check if VTK reader exists and eventually creates its
110  if (!list_it_->reader) {
111  list_it_->reader = new VtkMeshReader(list_it_->file_name, this->element_data_values_, list_it_->time);
112  list_it_->reader->bulk_elements_id_ = this->bulk_elements_id_;
113  list_it_->reader->boundary_elements_id_ = this->boundary_elements_id_;
114  list_it_->reader->has_compatible_mesh_ = true;
115  }
116 
117  actual_header_ = list_it_->reader->find_header(header_query);
118  return actual_header_;
119 }
120 
void read_elements(Mesh *mesh) override
std::string pvd_path_dir_
Path to PVD file allows construct FilePath objects of VTK files.
PvdMeshReader(const FilePath &file_name)
std::shared_ptr< ElementDataFieldMap > element_data_values_
Cache with last read element data.
Represents data of one VTK file defined in PVD file.
Definition: mesh.h:77
std::string data_section_name_
Store name of field data section specify for type of mesh file.
#define ASSERT(expr)
Allow use shorter versions of macro names if these names is not used with external library...
Definition: asserts.hh:347
void make_header_table() override
std::vector< VtkFileData > file_list_
Store list of VTK files and time steps declared in PVD file.
string parent_path() const
Definition: file_path.cc:183
void read_physical_names(Mesh *mesh) override
Dedicated class for storing path to input and output files.
Definition: file_path.hh:54
~PvdMeshReader()
Destructor.
double time
Time of field data (used only for GMSH reader)
std::vector< VtkFileData >::iterator list_it_
Iterator to items of file_list_.
void read_element_data(ElementDataCacheBase &data_cache, MeshDataHeader actual_header, unsigned int n_components, bool boundary_domain) override
double time
Time of field data (used only for GMSH and PVD reader)
MeshDataHeader actual_header_
Header of actual loaded data.
#define WarningOut()
Macro defining &#39;warning&#39; record of log.
Definition: logger.hh:270
Tokenizer tok_
Tokenizer used for reading ASCII file format.
MeshDataHeader & find_header(HeaderQuery &header_query) override
void read_nodes(Mesh *mesh) override
vector< LongIdx > boundary_elements_id_
vector< LongIdx > bulk_elements_id_