OGS
identifySubdomains.cpp File Reference
Include dependency graph for identifySubdomains.cpp:

Go to the source code of this file.

Functions

std::vector< std::unique_ptr< MeshLib::Mesh > > readMeshes (std::vector< std::string > const &filenames)
int main (int argc, char *argv[])

Function Documentation

◆ main()

int main ( int argc,
char * argv[] )

Definition at line 40 of file identifySubdomains.cpp.

41{
42 BaseLib::RunTime run_time;
43 run_time.start();
44
45 TCLAP::CmdLine cmd(
46 "Checks if the subdomain meshes are part of the bulk mesh and writes "
47 "the 'bulk_node_ids' and the 'bulk_element_ids' in each of them. The "
48 "documentation is available at "
49 "https://www.opengeosys.org/docs/tools/meshing-submeshes/"
50 "identifysubdomains/.\n\n"
51 "OpenGeoSys-6 software, version " +
53 ".\n"
54 "Copyright (c) 2012-2026, OpenGeoSys Community "
55 "(http://www.opengeosys.org)",
57
58 TCLAP::SwitchArg force_overwrite_arg(
59 "f", "force", "Overwriting existing subdomain meshes.");
60 cmd.add(force_overwrite_arg);
61
62 TCLAP::ValueArg<std::string> output_prefix_arg(
63 "o",
64 "output_prefix",
65 "Output. Prefix the subdomain meshes' filenames with the output "
66 "prefix/path.",
67 false,
68 "",
69 "BASE_FILENAME_OUTPUT");
70 cmd.add(output_prefix_arg);
71
72 TCLAP::ValueArg<double> search_length_arg(
73 "s",
74 "searchlength",
75 "search length determining radius for the node search algorithm. "
76 "Non-negative floating point number (min = 0) ",
77 false,
78 1e-16,
79 "SEARCH_LENGTH");
80 cmd.add(search_length_arg);
81
82 TCLAP::ValueArg<std::string> bulk_mesh_arg(
83 "m", "mesh", "Input (.vtu). The file name of the bulk mesh", true, "",
84 "INPUT_FILE");
85 cmd.add(bulk_mesh_arg);
86
87 // All the remaining arguments are used as file names for boundary/subdomain
88 // meshes.
89 TCLAP::UnlabeledMultiArg<std::string> subdomain_meshes_filenames_arg(
90 "subdomain_meshes_filenames", "mesh file names.", true,
91 "SUBDOMAIN_NAME");
92 cmd.add(subdomain_meshes_filenames_arg);
93 auto log_level_arg = BaseLib::makeLogLevelArg();
94 cmd.add(log_level_arg);
95 cmd.parse(argc, argv);
96
97 BaseLib::MPI::Setup mpi_setup(argc, argv);
98 BaseLib::initOGSLogger(log_level_arg.getValue());
99
100 //
101 // The bulk mesh.
102 //
103 BaseLib::RunTime mesh_reading_time;
104 mesh_reading_time.start();
105 std::unique_ptr<MeshLib::Mesh> bulk_mesh{
106 MeshLib::IO::readMeshFromFile(bulk_mesh_arg.getValue())};
107 if (bulk_mesh == nullptr)
108 {
109 OGS_FATAL("Could not read bulk mesh from '{:s}'",
110 bulk_mesh_arg.getValue());
111 }
112
113 //
114 // Read the subdomain meshes.
115 //
116 auto const subdomain_meshes =
117 readMeshes(subdomain_meshes_filenames_arg.getValue());
118 INFO("Mesh reading time: {:g} s", mesh_reading_time.elapsed());
119
120 //
121 // Bulk mesh node searcher.
122 //
123 BaseLib::RunTime mesh_node_searcher_construction_time;
124 mesh_node_searcher_construction_time.start();
125 auto const& mesh_node_searcher =
127 *bulk_mesh,
128 std::make_unique<MeshGeoToolsLib::SearchLength>(
129 search_length_arg.getValue()));
130 INFO("MeshNodeSearcher construction time: {:g} s",
131 mesh_node_searcher_construction_time.elapsed());
132
133 //
134 // Identify the subdomains in the bulk mesh.
135 //
136 BaseLib::RunTime identify_subdomain_time;
137 identify_subdomain_time.start();
138 for (auto& mesh_ptr : subdomain_meshes)
139 {
140 // If force overwrite is set or the output is to different mesh than
141 // the input mesh.
142 bool const overwrite_property_vectors =
143 force_overwrite_arg.getValue() ||
144 !output_prefix_arg.getValue().empty();
145 identifySubdomainMesh(*mesh_ptr, *bulk_mesh, mesh_node_searcher,
146 overwrite_property_vectors);
147 }
148 INFO("identifySubdomains time: {:g} s", identify_subdomain_time.elapsed());
149
150 //
151 // Output after the successful subdomain mesh identification.
152 //
153 BaseLib::RunTime writing_time;
154 writing_time.start();
155 for (auto const& mesh_ptr : subdomain_meshes)
156 {
158 *mesh_ptr,
159 output_prefix_arg.getValue() + mesh_ptr->getName() + ".vtu");
160 }
161 INFO("writing time: {:g} s", writing_time.elapsed());
162
163 INFO("Entire run time: {:g} s", run_time.elapsed());
164 return EXIT_SUCCESS;
165}
#define OGS_FATAL(...)
Definition Error.h:19
void INFO(fmt::format_string< Args... > fmt, Args &&... args)
Definition Logging.h:28
Count the running time.
Definition RunTime.h:18
double elapsed() const
Get the elapsed time in seconds.
Definition RunTime.h:31
void start()
Start the timer.
Definition RunTime.h:21
static OGS_NO_DANGLING MeshNodeSearcher const & getMeshNodeSearcher(MeshLib::Mesh const &mesh, std::unique_ptr< MeshGeoToolsLib::SearchLength > &&search_length_algorithm)
std::vector< std::unique_ptr< MeshLib::Mesh > > readMeshes(std::vector< std::string > const &filenames)
TCLAP::ValueArg< std::string > makeLogLevelArg()
void initOGSLogger(std::string const &log_level)
Definition Logging.cpp:56
GITINFOLIB_EXPORT const std::string ogs_version
void identifySubdomainMesh(MeshLib::Mesh &subdomain_mesh, MeshLib::Mesh const &bulk_mesh, MeshNodeSearcher const &mesh_node_searcher, bool const force_overwrite=false)
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)

References BaseLib::RunTime::elapsed(), MeshGeoToolsLib::MeshNodeSearcher::getMeshNodeSearcher(), INFO(), BaseLib::initOGSLogger(), BaseLib::makeLogLevelArg(), OGS_FATAL, GitInfoLib::GitInfo::ogs_version, readMeshes(), MeshLib::IO::readMeshFromFile(), BaseLib::RunTime::start(), and MeshLib::IO::writeMeshToFile().

◆ readMeshes()

std::vector< std::unique_ptr< MeshLib::Mesh > > readMeshes ( std::vector< std::string > const & filenames)

Definition at line 18 of file identifySubdomains.cpp.

20{
21 std::vector<std::unique_ptr<MeshLib::Mesh>> meshes;
22 meshes.reserve(filenames.size());
23
24 for (auto const& filename : filenames)
25 {
26 auto mesh = MeshLib::IO::readMeshFromFile(filename);
27 if (mesh == nullptr)
28 {
29 OGS_FATAL("Could not read mesh from '{:s}' file.", filename);
30 }
31 meshes.emplace_back(mesh);
32 }
33 if (meshes.empty())
34 {
35 OGS_FATAL("No subdomain meshes were read.");
36 }
37 return meshes;
38}

References OGS_FATAL, and MeshLib::IO::readMeshFromFile().

Referenced by ProjectData::ProjectData(), and main().