49{
52
53 TCLAP::CmdLine cmd(
54 "Checks if the subdomain meshes are part of the bulk mesh and writes "
55 "the 'bulk_node_ids' and the 'bulk_element_ids' in each of them. The "
56 "documentation is available at "
57 "https://www.opengeosys.org/docs/tools/meshing-submeshes/"
58 "identifysubdomains/.\n\n"
59 "OpenGeoSys-6 software, version " +
61 ".\n"
62 "Copyright (c) 2012-2024, OpenGeoSys Community "
63 "(http://www.opengeosys.org)",
65
66 TCLAP::SwitchArg force_overwrite_arg(
67 "f", "force", "Overwriting existing subdomain meshes.");
68 cmd.add(force_overwrite_arg);
69
70 TCLAP::ValueArg<std::string> output_prefix_arg(
71 "o",
72 "output_prefix",
73 "Prefix the subdomain meshes' filenames with the output prefix/path.",
74 false,
75 "",
76 "path");
77 cmd.add(output_prefix_arg);
78
79 TCLAP::ValueArg<double> search_length_arg(
80 "s",
81 "searchlength",
82 "search length determining radius for the node search algorithm. "
83 "Non-negative floating point number (default 1e-16) ",
84 false,
85 1e-16,
86 "float");
87 cmd.add(search_length_arg);
88
89 TCLAP::ValueArg<std::string> bulk_mesh_arg(
90 "m", "mesh", "the file name of the bulk mesh", true, "", "mesh file");
91 cmd.add(bulk_mesh_arg);
92
93
94
95 TCLAP::UnlabeledMultiArg<std::string> subdomain_meshes_filenames_arg(
96 "subdomain_meshes_filenames", "mesh file names.", true,
97 "subdomain mesh file");
98 cmd.add(subdomain_meshes_filenames_arg);
99 cmd.parse(argc, argv);
100
101#ifdef USE_PETSC
102 MPI_Init(&argc, &argv);
103#endif
104
105
106
107
109 mesh_reading_time.
start();
110 std::unique_ptr<MeshLib::Mesh> bulk_mesh{
112 if (bulk_mesh == nullptr)
113 {
114 OGS_FATAL(
"Could not read bulk mesh from '{:s}'",
115 bulk_mesh_arg.getValue());
116 }
117
118
119
120
121 auto const subdomain_meshes =
122 readMeshes(subdomain_meshes_filenames_arg.getValue());
123 INFO(
"Mesh reading time: {:g} s", mesh_reading_time.
elapsed());
124
125
126
127
129 mesh_node_searcher_construction_time.
start();
130 auto const& mesh_node_searcher =
132 *bulk_mesh,
133 std::make_unique<MeshGeoToolsLib::SearchLength>(
134 search_length_arg.getValue()));
135 INFO(
"MeshNodeSearcher construction time: {:g} s",
136 mesh_node_searcher_construction_time.
elapsed());
137
138
139
140
142 identify_subdomain_time.
start();
143 for (auto& mesh_ptr : subdomain_meshes)
144 {
145
146
147 bool const overwrite_property_vectors =
148 force_overwrite_arg.getValue() ||
149 !output_prefix_arg.getValue().empty();
151 overwrite_property_vectors);
152 }
153 INFO(
"identifySubdomains time: {:g} s", identify_subdomain_time.
elapsed());
154
155
156
157
159 writing_time.
start();
160 for (auto const& mesh_ptr : subdomain_meshes)
161 {
163 *mesh_ptr,
164 output_prefix_arg.getValue() + mesh_ptr->getName() + ".vtu");
165 }
166 INFO(
"writing time: {:g} s", writing_time.
elapsed());
167
168#ifdef USE_PETSC
169 MPI_Finalize();
170#endif
171 INFO(
"Entire run time: {:g} s", run_time.
elapsed());
172 return EXIT_SUCCESS;
173}
void INFO(fmt::format_string< Args... > fmt, Args &&... args)
double elapsed() const
Get the elapsed time in seconds.
void start()
Start the timer.
std::vector< std::unique_ptr< MeshLib::Mesh > > readMeshes(std::vector< std::string > const &filenames)
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)