OGS
ExtractMaterials.cpp
Go to the documentation of this file.
1
10#include <fstream>
11
12// ThirdParty
13#include <tclap/CmdLine.h>
14
15#include "BaseLib/FileTools.h"
16#include "BaseLib/MPI.h"
17#include "InfoLib/GitInfo.h"
20#include "MeshLib/Mesh.h"
22
23MeshLib::Mesh* extractMatGroup(MeshLib::Mesh const& mesh, int const mat_id)
24{
25 std::vector<std::size_t> elem_list;
26 std::vector<int> const mat_ids =
27 *mesh.getProperties().getPropertyVector<int>("MaterialIDs");
28 std::size_t const n_elems = mat_ids.size();
29 for (std::size_t i = 0; i < n_elems; ++i)
30 {
31 if (mat_ids[i] != mat_id)
32 {
33 elem_list.push_back(i);
34 }
35 }
36
37 if (elem_list.empty())
38 {
39 return nullptr;
40 }
41
42 return MeshToolsLib::removeElements(mesh, elem_list, "matgroup");
43}
44
45int main(int argc, char* argv[])
46{
47 TCLAP::CmdLine cmd(
48 "Takes a mesh with multiple MaterialIDs and writes elements of a given "
49 "ID into a new mesh. If no ID is specified, meshes for each existing "
50 "MaterialID are created.\n\n"
51 "OpenGeoSys-6 software, version " +
53 ".\n"
54 "Copyright (c) 2012-2024, OpenGeoSys Community "
55 "(http://www.opengeosys.org)",
57 TCLAP::ValueArg<std::size_t> arg_mat_id(
58 "m", "material-id",
59 "The MaterialID for which elements should be extracted into a new "
60 "mesh.",
61 false, 0, "Number specifying the MaterialID");
62 cmd.add(arg_mat_id);
63 TCLAP::ValueArg<std::string> output_arg("o", "output",
64 "Name of the output mesh (*.vtu)",
65 true, "", "output file name");
66 cmd.add(output_arg);
67 TCLAP::ValueArg<std::string> input_arg("i", "input",
68 "Name of the input mesh (*.vtu)",
69 true, "", "input file name");
70 cmd.add(input_arg);
71 cmd.parse(argc, argv);
72
73 BaseLib::MPI::Setup mpi_setup(argc, argv);
74
75 std::string const input_name = input_arg.getValue();
76 std::string const output_name = output_arg.getValue();
77 std::string const base_name = BaseLib::dropFileExtension(output_name);
78 std::string const ext = BaseLib::getFileExtension(output_name);
79
80 std::unique_ptr<MeshLib::Mesh> const mesh(
82 if (mesh == nullptr)
83 {
84 ERR("Error reading input mesh. Aborting...");
85 return EXIT_FAILURE;
86 }
87
88 auto mat_ids = MeshLib::materialIDs(*mesh);
89 if (mat_ids == nullptr)
90 {
91 ERR("No material IDs found in mesh. Aborting...");
92 return EXIT_FAILURE;
93 }
94
95 auto id_range = std::minmax_element(mat_ids->cbegin(), mat_ids->cend());
96 if (id_range.first == id_range.second)
97 {
98 ERR("Mesh only contains one material, no extraction required.");
99 return EXIT_FAILURE;
100 }
101 int min_id, max_id;
102 if (arg_mat_id.isSet())
103 {
104 min_id = static_cast<int>(arg_mat_id.getValue());
105 if (min_id < *id_range.first || min_id > *id_range.second)
106 {
107 ERR("Specified material ID does not exist.");
108 return EXIT_FAILURE;
109 }
110 max_id = min_id;
111 }
112 else
113 {
114 min_id = *id_range.first;
115 max_id = *id_range.second;
116 }
117
118 std::ofstream ostream;
119 if (min_id != max_id)
120 {
121 ostream.open(base_name + "_Layers.txt");
122 }
123
124 for (int i = min_id; i <= max_id; ++i)
125 {
126 INFO("Extracting material group {:d}...", i);
127 std::unique_ptr<MeshLib::Mesh> mat_group(extractMatGroup(*mesh, i));
128 if (mat_group == nullptr)
129 {
130 WARN("No elements with material group {:d} found.", i);
131 continue;
132 }
133 MeshLib::IO::VtuInterface vtu(mat_group.get());
134 std::string const file_name(base_name + "_Layer" + std::to_string(i) +
135 ext);
136 vtu.writeToFile(file_name);
137 if (ostream.is_open())
138 {
139 ostream << file_name << "\n";
140 }
141 }
142 if (ostream.is_open())
143 {
144 ostream.close();
145 }
146 return EXIT_SUCCESS;
147}
int main(int argc, char *argv[])
MeshLib::Mesh * extractMatGroup(MeshLib::Mesh const &mesh, int const mat_id)
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
void WARN(fmt::format_string< Args... > fmt, Args &&... args)
Definition Logging.h:40
Definition of the Mesh class.
Implementation of the VtuInterface class.
Reads and writes VtkXMLUnstructuredGrid-files (vtu) to and from OGS data structures....
bool writeToFile(std::filesystem::path const &file_path)
Properties & getProperties()
Definition Mesh.h:134
PropertyVector< T > const * getPropertyVector(std::string_view name) const
std::string getFileExtension(const std::string &path)
std::string dropFileExtension(std::string const &filename)
GITINFOLIB_EXPORT const std::string ogs_version
MeshLib::Mesh * readMeshFromFile(const std::string &file_name, bool const compute_element_neighbors)
PropertyVector< int > const * materialIDs(Mesh const &mesh)
Definition Mesh.cpp:268
MeshLib::Mesh * removeElements(const MeshLib::Mesh &mesh, const std::vector< std::size_t > &removed_element_ids, const std::string &new_mesh_name)
Definition of readMeshFromFile function.