10#include <tclap/CmdLine.h>
16#include <boost/property_tree/ptree.hpp>
17#include <boost/property_tree/xml_parser.hpp>
33void postVTU(std::string
const& int_vtu_filename,
34 std::string
const& out_vtu_filename)
37 std::unique_ptr<MeshLib::Mesh const> mesh(
39 if (mesh->hasNonlinearElement())
45 std::vector<MeshLib::Element*> vec_matrix_elements;
46 std::vector<int> vec_fracture_mat_IDs;
47 std::vector<std::vector<MeshLib::Element*>> vec_fracture_elements;
48 std::vector<std::vector<MeshLib::Element*>> vec_fracture_matrix_elements;
49 std::vector<std::vector<MeshLib::Node*>> vec_fracture_nodes;
50 std::vector<std::pair<std::size_t, std::vector<int>>>
51 vec_branch_nodeID_matIDs;
52 std::vector<std::pair<std::size_t, std::vector<int>>>
53 vec_junction_nodeID_matIDs;
55 *mesh, vec_matrix_elements, vec_fracture_mat_IDs, vec_fracture_elements,
56 vec_fracture_matrix_elements, vec_fracture_nodes,
57 vec_branch_nodeID_matIDs, vec_junction_nodeID_matIDs);
62 vec_fracture_matrix_elements,
63 vec_branch_nodeID_matIDs,
64 vec_junction_nodeID_matIDs);
67 INFO(
"create {:s}", out_vtu_filename);
71void postPVD(std::string
const& in_pvd_filename,
72 std::string
const& out_pvd_filename,
73 bool const allow_overwrite)
77 INFO(
"start reading the PVD file {:s}", in_pvd_filename);
78 boost::property_tree::ptree pt;
79 read_xml(in_pvd_filename, pt,
80 boost::property_tree::xml_parser::trim_whitespace);
82 for (
auto& dataset : pt.get_child(
"VTKFile.Collection"))
84 if (dataset.first !=
"DataSet")
90 auto const org_vtu_filename =
91 dataset.second.get<std::string>(
"<xmlattr>.file");
92 auto const org_vtu_filebasename =
95 if (org_vtu_dir.empty())
97 org_vtu_dir = in_pvd_file_dir;
99 auto const org_vtu_filepath =
101 INFO(
"processing {:s}...", org_vtu_filepath);
104 auto const dest_vtu_filename =
"post_" + org_vtu_filebasename;
105 auto const dest_vtu_filepath =
109 INFO(
"The destination file already exists. Skip overwriting it.");
113 postVTU(org_vtu_filepath, dest_vtu_filepath);
117 dataset.second.put(
"<xmlattr>.file", dest_vtu_filename);
121 INFO(
"save into the new PVD file {:s}", out_pvd_filename);
122 boost::property_tree::xml_writer_settings<std::string> settings(
'\t', 1);
123 write_xml(out_pvd_filename, pt, std::locale(), settings);
128int main(
int argc,
char* argv[])
131 "Post-process results of the LIE approach.\n\n"
132 "OpenGeoSys-6 software, version " +
135 "Copyright (c) 2012-2024, OpenGeoSys Community "
136 "(http://www.opengeosys.org)",
138 TCLAP::ValueArg<std::string> arg_out_file(
139 "o",
"output-file",
"the name of the new PVD or VTU file",
true,
"",
141 cmd.add(arg_out_file);
142 TCLAP::ValueArg<std::string> arg_in_file(
143 "i",
"input-file",
"the original PVD or VTU file name",
true,
"",
145 cmd.add(arg_in_file);
146 TCLAP::SwitchArg nooverwrite_arg(
149 "don't overwrite existing post processed VTU files");
150 cmd.add(nooverwrite_arg);
152 cmd.parse(argc, argv);
155 MPI_Init(&argc, &argv);
159 if (in_file_ext ==
".pvd")
161 postPVD(arg_in_file.getValue(), arg_out_file.getValue(),
162 !nooverwrite_arg.getValue());
164 else if (in_file_ext ==
".vtu")
166 postVTU(arg_in_file.getValue(), arg_out_file.getValue());
170 OGS_FATAL(
"The given file type ({:s}) is not supported.", in_file_ext);
void INFO(fmt::format_string< Args... > fmt, Args &&... args)
Definition of the Mesh class.
MeshLib::Mesh const & getOutputMesh() const
std::string getFileExtension(const std::string &path)
std::string extractPath(std::string const &pathname)
bool IsFileExisting(const std::string &strFilename)
Returns true if given file exists.
std::string joinPaths(std::string const &pathA, std::string const &pathB)
std::string extractBaseName(std::string const &pathname)
GITINFOLIB_EXPORT const std::string ogs_version
MeshLib::Mesh * readMeshFromFile(const std::string &file_name, bool const compute_element_neighbors)
int writeMeshToFile(const MeshLib::Mesh &mesh, std::filesystem::path const &file_path, std::set< std::string > variable_output_names)
void getFractureMatrixDataInMesh(MeshLib::Mesh const &mesh, std::vector< MeshLib::Element * > &vec_matrix_elements, std::vector< int > &vec_fracture_mat_IDs, std::vector< std::vector< MeshLib::Element * > > &vec_fracture_elements, std::vector< std::vector< MeshLib::Element * > > &vec_fracture_matrix_elements, std::vector< std::vector< MeshLib::Node * > > &vec_fracture_nodes, std::vector< std::pair< std::size_t, std::vector< int > > > &vec_branch_nodeID_matIDs, std::vector< std::pair< std::size_t, std::vector< int > > > &vec_junction_nodeID_matIDs)
void postVTU(std::string const &int_vtu_filename, std::string const &out_vtu_filename)
void postPVD(std::string const &in_pvd_filename, std::string const &out_pvd_filename, bool const allow_overwrite)
int main(int argc, char *argv[])
Definition of readMeshFromFile function.