Loading [MathJax]/extensions/MathZoom.js
OGS
PVTU2VTU.cpp
Go to the documentation of this file.
1
12#include <tclap/CmdLine.h>
13
14#include <algorithm>
15#include <boost/property_tree/ptree.hpp>
16#include <boost/property_tree/xml_parser.hpp>
17#include <filesystem>
18#include <fstream>
19#include <memory>
20#include <numeric>
21#include <range/v3/algorithm/copy.hpp>
22#include <range/v3/algorithm/transform.hpp>
23#include <string>
24#include <unordered_set>
25#include <vector>
26
27#include "BaseLib/FileTools.h"
28#include "BaseLib/MPI.h"
29#include "BaseLib/RunTime.h"
30#include "GeoLib/AABB.h"
31#include "GeoLib/OctTree.h"
32#include "InfoLib/GitInfo.h"
33#include "MathLib/Point3d.h"
36#include "MeshLib/Mesh.h"
37#include "MeshLib/Node.h"
38#include "MeshLib/Properties.h"
42
44{
45 std::size_t partition_id;
46 std::size_t original_id;
47};
48
49template <typename T>
51 MeshLib::Mesh& merged_mesh,
52 std::vector<std::unique_ptr<MeshLib::Mesh>> const& partitioned_meshes,
53 MeshLib::PropertyVector<T> const* const pv,
54 MeshLib::Properties const& properties,
55 std::vector<MeshEntityMapInfo> const& merged_node_map,
56 std::vector<MeshEntityMapInfo> const& merged_element_map)
57{
58 if (pv == nullptr)
59 {
60 return false;
61 }
62
63 if (pv->getPropertyName() == "vtkGhostType")
64 {
65 // Do nothing
66 return true;
67 }
68
69 auto const item_type = pv->getMeshItemType();
70
71 auto const pv_name = pv->getPropertyName();
72
73 auto const pv_num_components = pv->getNumberOfGlobalComponents();
74
75 if (pv_name == "OGS_VERSION" || pv_name == "IntegrationPointMetaData")
76 {
78 merged_mesh, pv_name, item_type, pv_num_components);
79 new_pv->resize(pv->size());
80
81 std::copy(pv->begin(), pv->end(), new_pv->begin());
82
83 return true;
84 }
85
86 std::vector<MeshLib::PropertyVector<T>*> partition_property_vectors;
87 partition_property_vectors.reserve(partitioned_meshes.size());
88 for (auto const& mesh : partitioned_meshes)
89 {
90 partition_property_vectors.emplace_back(
91 mesh->getProperties().getPropertyVector<T>(pv_name, item_type,
92 pv_num_components));
93 }
94
95 auto createNewCellOrNodePropertyVector =
96 [&](std::vector<MeshEntityMapInfo> const& mesh_entity_map)
97 {
99 merged_mesh, pv_name, item_type, pv_num_components);
100 std::size_t counter = 0;
101 for (auto const& entity_info : mesh_entity_map)
102 {
103 auto const& partition_pv =
104 partition_property_vectors[entity_info.partition_id];
105 for (int i_com = 0; i_com < pv_num_components; i_com++)
106 {
107 (*new_pv)[counter * pv_num_components + i_com] =
108 (*partition_pv)[entity_info.original_id *
109 pv_num_components +
110 i_com];
111 }
112 counter++;
113 }
114 };
115
116 if (item_type == MeshLib::MeshItemType::Node)
117 {
118 createNewCellOrNodePropertyVector(merged_node_map);
119 return true;
120 }
121
122 if (item_type == MeshLib::MeshItemType::Cell)
123 {
124 createNewCellOrNodePropertyVector(merged_element_map);
125 return true;
126 }
127
129 {
130 std::vector<std::vector<std::size_t>> partition_element_offsets;
131 partition_element_offsets.reserve(partitioned_meshes.size());
132 for (auto const& mesh : partitioned_meshes)
133 {
134 partition_element_offsets.emplace_back(
136 mesh->getElements(), *pv, properties));
137 }
138
140 merged_mesh, pv_name, item_type, pv_num_components);
141
142 // Count the integration points
143 std::size_t counter = 0;
144 auto const ip_meta_data =
145 MeshLib::getIntegrationPointMetaData(properties, pv_name);
146
147 for (auto const element : merged_mesh.getElements())
148 {
149 int const number_of_integration_points =
151 *element);
152 counter += number_of_integration_points;
153 }
154 new_pv->resize(counter * pv_num_components);
155
156 auto const global_ip_offsets =
158 merged_mesh.getElements(), *pv, properties);
159
160 std::size_t element_counter = 0;
161 for (auto const& element_info : merged_element_map)
162 {
163 MeshLib::PropertyVector<T> const& partition_pv =
164 *(partition_property_vectors[element_info.partition_id]);
165
166 auto const& offsets =
167 partition_element_offsets[element_info.partition_id];
168
169 int const begin_pos = offsets[element_info.original_id];
170 int const end_pos = offsets[element_info.original_id + 1];
171
172 std::copy(partition_pv.begin() + begin_pos,
173 partition_pv.begin() + end_pos,
174 new_pv->begin() + global_ip_offsets[element_counter]);
175
176 element_counter++;
177 }
178 }
179
180 return true;
181}
182
183std::vector<std::string> readVtuFileNames(std::string const& pvtu_file_name)
184{
185 std::ifstream ins(pvtu_file_name);
186
187 if (!ins)
188 {
189 OGS_FATAL("Could not open pvtu file {:s}.", pvtu_file_name);
190 }
191
192 using boost::property_tree::ptree;
193 ptree pt;
194 read_xml(ins, pt);
195
196 auto root = pt.get_child("VTKFile");
197
198 std::vector<std::string> vtu_file_names;
199
200 std::string file_path = BaseLib::extractPath(pvtu_file_name);
201
202 for (ptree::value_type const& v : root.get_child("PUnstructuredGrid"))
203 {
204 if (v.first == "Piece")
205 {
206 vtu_file_names.push_back(BaseLib::joinPaths(
207 file_path,
208 // only gets the vtu file name:
209 std::filesystem::path(v.second.get("<xmlattr>.Source", ""))
210 .filename()
211 .string()));
212 }
213 }
214
215 if (vtu_file_names.empty())
216 {
217 OGS_FATAL("PVTU file {:s} does not contain any vtu piece",
218 pvtu_file_name);
219 }
220
221 return vtu_file_names;
222}
223
224// all nodes (also 'ghost' nodes) of all meshes sorted by partition
225std::tuple<std::vector<MeshLib::Node*>, std::vector<std::size_t>>
226getMergedNodesVector(std::vector<std::unique_ptr<MeshLib::Mesh>> const& meshes)
227{
228 std::vector<std::size_t> number_of_nodes_per_partition;
229 ranges::transform(meshes, std::back_inserter(number_of_nodes_per_partition),
230 [](auto const& mesh)
231 { return mesh->getNumberOfNodes(); });
232 std::vector<std::size_t> const offsets =
233 BaseLib::sizesToOffsets(number_of_nodes_per_partition);
234
235 std::vector<MeshLib::Node*> all_nodes;
236 all_nodes.reserve(offsets.back());
237 for (auto const& mesh : meshes)
238 {
239 ranges::copy(mesh->getNodes(), std::back_inserter(all_nodes));
240 }
241 return {all_nodes, offsets};
242}
243
244std::tuple<std::vector<MeshLib::Element*>, std::vector<MeshEntityMapInfo>>
245getRegularElements(std::vector<std::unique_ptr<MeshLib::Mesh>> const& meshes)
246{
247 std::vector<MeshLib::Element*> regular_elements;
248
249 std::size_t partition_counter = 0;
250 std::vector<MeshEntityMapInfo> merged_element_map;
251 for (auto const& mesh : meshes)
252 {
253 MeshLib::Properties const& properties = mesh->getProperties();
254
255 std::vector<unsigned char> const& ghost_id_vector =
256 *(properties.getPropertyVector<unsigned char>("vtkGhostType"));
257
258 auto const& mesh_elements = mesh->getElements();
259
260 auto const last_element_id_of_previous_partition =
261 regular_elements.size();
262
263 std::copy_if(mesh_elements.begin(), mesh_elements.end(),
264 std::back_inserter(regular_elements),
265 [&ghost_id_vector](auto const element)
266 { return ghost_id_vector[element->getID()] == 0; });
267
268 for (auto element_id = last_element_id_of_previous_partition;
269 element_id < regular_elements.size();
270 element_id++)
271 {
272 merged_element_map.push_back(
273 {partition_counter, regular_elements[element_id]->getID()});
274 }
275
276 partition_counter++;
277 }
278
279 return {regular_elements, merged_element_map};
280}
281
283 GeoLib::OctTree<MeshLib::Node, 16>& oct_tree, Eigen::Vector3d const& extent,
284 MeshLib::Node const& node, std::size_t const element_id)
285{
286 std::vector<MeshLib::Node*> query_nodes;
287 auto const eps =
288 std::numeric_limits<double>::epsilon() * extent.squaredNorm();
289 Eigen::Vector3d const min = node.asEigenVector3d().array() - eps;
290 Eigen::Vector3d const max = node.asEigenVector3d().array() + eps;
291 oct_tree.getPointsInRange(min, max, query_nodes);
292
293 if (query_nodes.empty())
294 {
295 OGS_FATAL(
296 "query_nodes for node [{}], ({}, {}, {}) of element "
297 "[{}] are empty, eps is {}",
298 node.getID(), node[0], node[1], node[2], element_id, eps);
299 }
300 auto const it =
301 std::find_if(query_nodes.begin(), query_nodes.end(),
302 [&node, eps](auto const* p)
303 {
304 return (p->asEigenVector3d() - node.asEigenVector3d())
305 .squaredNorm() < eps;
306 });
307 if (it == query_nodes.end())
308 {
309 OGS_FATAL(
310 "did not find node: [{}] ({}, {}, {}) of element [{}] in "
311 "query_nodes",
312 node.getID(), node[0], node[1], node[2], element_id);
313 }
314 return *it;
315}
316
318 std::vector<MeshLib::Element*> const& regular_elements,
320 Eigen::Vector3d const& extent)
321{
322 for (auto& e : regular_elements)
323 {
324 for (unsigned i = 0; i < e->getNumberOfNodes(); i++)
325 {
326 auto* const node = e->getNode(i);
327 MeshLib::Node* node_ptr = nullptr;
328 if (!oct_tree.addPoint(node, node_ptr))
329 {
330 auto const node_ptr = getExistingNodeFromOctTree(
331 oct_tree, extent, *node, e->getID());
332 e->setNode(i, node_ptr);
333 }
334 }
335 }
336}
337
338std::pair<std::vector<MeshLib::Node*>, std::vector<MeshEntityMapInfo>>
339makeNodesUnique(std::vector<MeshLib::Node*> const& all_merged_nodes_tmp,
340 std::vector<std::size_t> const& partition_offsets,
342{
343 std::vector<MeshLib::Node*> unique_merged_nodes;
344 unique_merged_nodes.reserve(all_merged_nodes_tmp.size());
345
346 std::vector<MeshEntityMapInfo> merged_node_map;
347 merged_node_map.reserve(all_merged_nodes_tmp.size());
348
349 for (std::size_t i = 0; i < partition_offsets.size() - 1; ++i)
350 {
351 for (std::size_t pos = partition_offsets[i];
352 pos < partition_offsets[i + 1];
353 ++pos)
354 {
355 auto* node = all_merged_nodes_tmp[pos];
356 MeshLib::Node* node_ptr = nullptr;
357 if (oct_tree.addPoint(node, node_ptr))
358 {
359 unique_merged_nodes.push_back(node);
360 merged_node_map.push_back({i, pos - partition_offsets[i]});
361 }
362 }
363 }
364 return {unique_merged_nodes, merged_node_map};
365}
366
367int main(int argc, char* argv[])
368{
369 TCLAP::CmdLine cmd(
370 "This tool merges VTU files of PVTU into one single VTU file. Apart "
371 "from the mesh data, all property data are merged as well"
372 "\n\nOpenGeoSys-6 software, version " +
374 ".\n"
375 "Copyright (c) 2012-2025, OpenGeoSys Community "
376 "(http://www.opengeosys.org)",
378
379 TCLAP::ValueArg<std::string> output_arg(
380 "o", "output", "the output mesh (*.vtu)", true, "", "output.vtu");
381 cmd.add(output_arg);
382
383 TCLAP::ValueArg<std::string> input_arg(
384 "i", "input", "the partitioned input mesh (*.pvtu)", true, "",
385 "input.pvtu");
386 cmd.add(input_arg);
387 cmd.parse(argc, argv);
388
389 BaseLib::MPI::Setup mpi_setup(argc, argv);
390
391 if (BaseLib::getFileExtension(input_arg.getValue()) != ".pvtu")
392 {
393 OGS_FATAL("The extension of input file name {:s} is not \"pvtu\"",
394 input_arg.getValue());
395 }
396 if (BaseLib::getFileExtension(output_arg.getValue()) != ".vtu")
397 {
398 OGS_FATAL("The extension of output file name {:s} is not \"vtu\"",
399 output_arg.getValue());
400 }
401
402 auto const vtu_file_names = readVtuFileNames(input_arg.getValue());
403
404 std::vector<std::unique_ptr<MeshLib::Mesh>> meshes;
405 meshes.reserve(vtu_file_names.size());
406
407 BaseLib::RunTime io_timer;
408 io_timer.start();
409 for (auto const& file_name : vtu_file_names)
410 {
411 auto mesh = std::unique_ptr<MeshLib::Mesh>(
413
414 MeshLib::Properties const& properties = mesh->getProperties();
415
416 if (!properties.existsPropertyVector<unsigned char>("vtkGhostType"))
417 {
418 OGS_FATAL(
419 "Property vector vtkGhostType does not exist in mesh {:s}.",
420 file_name);
421 }
422
423 meshes.emplace_back(std::move(mesh));
424 }
425 INFO("Reading meshes took {} s", io_timer.elapsed());
426
427 BaseLib::RunTime merged_element_timer;
428 merged_element_timer.start();
429 // If structured binding is used for the returned tuple, Mac compiler gives
430 // an error in reference to local binding in calling applyToPropertyVectors.
431 auto [regular_elements, merged_element_map] = getRegularElements(meshes);
432 INFO(
433 "Collection of {} regular elements and computing element map took {} s",
434 regular_elements.size(), merged_element_timer.elapsed());
435
436 // alternative implementation of getNodesOfRegularElements
437 BaseLib::RunTime collect_nodes_timer;
438 collect_nodes_timer.start();
439 auto [all_merged_nodes_tmp, partition_offsets] =
440 getMergedNodesVector(meshes);
441 INFO("Collection of {} nodes and computing offsets took {} s",
442 all_merged_nodes_tmp.size(), collect_nodes_timer.elapsed());
443
444 BaseLib::RunTime merged_nodes_timer;
445 merged_nodes_timer.start();
446 GeoLib::AABB aabb(all_merged_nodes_tmp.begin(), all_merged_nodes_tmp.end());
447 auto oct_tree = std::unique_ptr<GeoLib::OctTree<MeshLib::Node, 16>>(
449 aabb.getMinPoint(), aabb.getMaxPoint(), 1e-16));
450
451 auto [unique_merged_nodes, merged_node_map] =
452 makeNodesUnique(all_merged_nodes_tmp, partition_offsets, *oct_tree);
453 INFO("Make nodes unique ({} unique nodes) / computing map took {} s",
454 unique_merged_nodes.size(), merged_nodes_timer.elapsed());
455
456 BaseLib::RunTime reset_nodes_in_elements_timer;
457 reset_nodes_in_elements_timer.start();
458 auto const extent = aabb.getMaxPoint() - aabb.getMinPoint();
459 resetNodesInRegularElements(regular_elements, *oct_tree, extent);
460 INFO("Reset nodes in regular elements took {} s",
461 reset_nodes_in_elements_timer.elapsed());
462
463 BaseLib::RunTime mesh_creation_timer;
464 mesh_creation_timer.start();
465 // The Node pointers of 'merged_nodes' and Element pointers of
466 // 'regular_elements' are shared with 'meshes', the partitioned meshes.
467 MeshLib::Mesh merged_mesh =
468 MeshLib::Mesh("pvtu_merged_mesh", unique_merged_nodes, regular_elements,
469 false /* compute_element_neighbors */);
470 INFO("creation of merged mesh took {} s", mesh_creation_timer.elapsed());
471
472 auto const& properties = meshes[0]->getProperties();
473
474 BaseLib::RunTime property_timer;
475 property_timer.start();
477 properties,
478 [&, &merged_node_map = merged_node_map,
479 &merged_element_map = merged_element_map](auto type,
480 auto const& property)
481 {
483 merged_mesh, meshes,
484 dynamic_cast<MeshLib::PropertyVector<decltype(type)> const*>(
485 property),
486 properties, merged_node_map, merged_element_map);
487 });
488 INFO("merge properties into merged mesh took {} s",
489 property_timer.elapsed());
490
491 MeshLib::IO::VtuInterface writer(&merged_mesh);
492
493 BaseLib::RunTime writing_timer;
494 writing_timer.start();
495 auto const result = writer.writeToFile(output_arg.getValue());
496 if (!result)
497 {
498 ERR("Could not write mesh to '{:s}'.", output_arg.getValue());
499 return EXIT_FAILURE;
500 }
501 INFO("writing mesh took {} s", writing_timer.elapsed());
502
503 // Since the Node pointers of 'merged_nodes' and Element pointers of
504 // 'regular_elements' are held by 'meshes', the partitioned meshes, the
505 // memory by these pointers are released by 'meshes' automatically.
506 // Therefore, only node vector and element vector of merged_mesh should be
507 // cleaned.
508 merged_mesh.shallowClean();
509
510 return EXIT_SUCCESS;
511}
Definition of the AABB class.
Definition of the Element class.
#define OGS_FATAL(...)
Definition Error.h:26
Filename manipulation routines.
Git information.
void INFO(fmt::format_string< Args... > fmt, Args &&... args)
Definition Logging.h:35
void ERR(fmt::format_string< Args... > fmt, Args &&... args)
Definition Logging.h:45
Definition of the class Properties that implements a container of properties.
Definition of the Mesh class.
Definition of the Node class.
Implementation of the OctTree class.
int main(int argc, char *argv[])
Definition PVTU2VTU.cpp:367
std::pair< std::vector< MeshLib::Node * >, std::vector< MeshEntityMapInfo > > makeNodesUnique(std::vector< MeshLib::Node * > const &all_merged_nodes_tmp, std::vector< std::size_t > const &partition_offsets, GeoLib::OctTree< MeshLib::Node, 16 > &oct_tree)
Definition PVTU2VTU.cpp:339
MeshLib::Node * getExistingNodeFromOctTree(GeoLib::OctTree< MeshLib::Node, 16 > &oct_tree, Eigen::Vector3d const &extent, MeshLib::Node const &node, std::size_t const element_id)
Definition PVTU2VTU.cpp:282
void resetNodesInRegularElements(std::vector< MeshLib::Element * > const &regular_elements, GeoLib::OctTree< MeshLib::Node, 16 > &oct_tree, Eigen::Vector3d const &extent)
Definition PVTU2VTU.cpp:317
std::tuple< std::vector< MeshLib::Element * >, std::vector< MeshEntityMapInfo > > getRegularElements(std::vector< std::unique_ptr< MeshLib::Mesh > > const &meshes)
Definition PVTU2VTU.cpp:245
std::vector< std::string > readVtuFileNames(std::string const &pvtu_file_name)
Definition PVTU2VTU.cpp:183
bool createPropertyVector(MeshLib::Mesh &merged_mesh, std::vector< std::unique_ptr< MeshLib::Mesh > > const &partitioned_meshes, MeshLib::PropertyVector< T > const *const pv, MeshLib::Properties const &properties, std::vector< MeshEntityMapInfo > const &merged_node_map, std::vector< MeshEntityMapInfo > const &merged_element_map)
Definition PVTU2VTU.cpp:50
std::tuple< std::vector< MeshLib::Node * >, std::vector< std::size_t > > getMergedNodesVector(std::vector< std::unique_ptr< MeshLib::Mesh > > const &meshes)
Definition PVTU2VTU.cpp:226
Definition of the Point3d class.
void applyToPropertyVectors(Properties const &properties, Function f)
Definition of the RunTime class.
Implementation of the VtuInterface class.
Count the running time.
Definition RunTime.h:29
double elapsed() const
Get the elapsed time in seconds.
Definition RunTime.h:42
void start()
Start the timer.
Definition RunTime.h:32
Class AABB is an axis aligned bounding box around a given set of geometric points of (template) type ...
Definition AABB.h:56
Eigen::Vector3d const & getMaxPoint() const
Definition AABB.h:187
Eigen::Vector3d const & getMinPoint() const
Definition AABB.h:180
bool addPoint(POINT *pnt, POINT *&ret_pnt)
void getPointsInRange(T const &min, T const &max, std::vector< POINT * > &pnts) const
static OctTree< POINT, MAX_POINTS > * createOctTree(Eigen::Vector3d ll, Eigen::Vector3d ur, double eps=std::numeric_limits< double >::epsilon())
std::size_t getID() const
Eigen::Vector3d const & asEigenVector3d() const
Definition Point3d.h:64
Reads and writes VtkXMLUnstructuredGrid-files (vtu) to and from OGS data structures....
static MeshLib::Mesh * readVTUFile(std::string const &file_name, bool const compute_element_neighbors=false)
bool writeToFile(std::filesystem::path const &file_path)
std::vector< Element * > const & getElements() const
Get the element-vector for the mesh.
Definition Mesh.h:111
void shallowClean()
Definition Mesh.cpp:133
Property manager on mesh items. Class Properties manages scalar, vector or matrix properties....
Definition Properties.h:33
bool existsPropertyVector(std::string_view name) const
Definition Properties.h:74
PropertyVector< T > const * getPropertyVector(std::string_view name) const
MeshItemType getMeshItemType() const
int getNumberOfGlobalComponents() const
std::string const & getPropertyName() const
std::size_t size() const
std::string getFileExtension(const std::string &path)
std::string extractPath(std::string const &pathname)
std::string joinPaths(std::string const &pathA, std::string const &pathB)
std::vector< ranges::range_value_t< R > > sizesToOffsets(R const &sizes)
Definition Algorithm.h:283
GITINFOLIB_EXPORT const std::string ogs_version
PropertyVector< T > * getOrCreateMeshProperty(Mesh &mesh, std::string const &property_name, MeshItemType const item_type, int const number_of_components)
IntegrationPointMetaData getIntegrationPointMetaData(MeshLib::Properties const &properties, std::string const &name)
std::vector< std::size_t > getIntegrationPointDataOffsetsOfMeshElements(std::vector< MeshLib::Element * > const &mesh_elements, MeshLib::PropertyVectorBase const &pv, MeshLib::Properties const &properties)
int getNumberOfElementIntegrationPoints(MeshLib::IntegrationPointMetaData const &ip_meta_data, MeshLib::Element const &e)
std::size_t partition_id
Definition PVTU2VTU.cpp:45
std::size_t original_id
Definition PVTU2VTU.cpp:46