OGS
ExtractBoundary.cpp File Reference

Detailed Description

Extracts the entire boundary from the given mesh.

Definition in file ExtractBoundary.cpp.

#include <tclap/CmdLine.h>
#include <mpi.h>
#include <algorithm>
#include <memory>
#include <string>
#include <vector>
#include "BaseLib/FileTools.h"
#include "BaseLib/StringTools.h"
#include "InfoLib/GitInfo.h"
#include "MeshLib/Elements/Element.h"
#include "MeshLib/IO/VtkIO/VtuInterface.h"
#include "MeshLib/IO/readMeshFromFile.h"
#include "MeshLib/IO/writeMeshToFile.h"
#include "MeshLib/Mesh.h"
#include "MeshLib/Node.h"
#include "MeshToolsLib/MeshSurfaceExtraction.h"
Include dependency graph for ExtractBoundary.cpp:

Go to the source code of this file.

Functions

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

Function Documentation

◆ main()

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

Definition at line 34 of file ExtractBoundary.cpp.

35{
36 TCLAP::CmdLine cmd(
37 "Tool extracts the boundary of the given mesh. The documentation is "
38 "available at "
39 "https://docs.opengeosys.org/docs/tools/meshing-submeshes/"
40 "extract-boundary.\n\n"
41 "OpenGeoSys-6 software, version " +
43 ".\n"
44 "Copyright (c) 2012-2024, OpenGeoSys Community "
45 "(http://www.opengeosys.org)",
47 TCLAP::ValueArg<std::string> mesh_in(
48 "i", "mesh-input-file",
49 "the name of the file containing the input mesh", true, "",
50 "file name of input mesh");
51 cmd.add(mesh_in);
52 TCLAP::ValueArg<std::string> mesh_out(
53 "o", "mesh-output-file",
54 "the name of the file the surface mesh should be written to", false, "",
55 "file name of output mesh");
56 cmd.add(mesh_out);
57
58 TCLAP::SwitchArg use_ascii_arg("", "ascii-output",
59 "If the switch is set use ascii instead of "
60 "binary format for data in the vtu output.",
61 false);
62 cmd.add(use_ascii_arg);
63
64 cmd.parse(argc, argv);
65
66#ifdef USE_PETSC
67 MPI_Init(&argc, &argv);
68#endif
69
70 std::unique_ptr<MeshLib::Mesh const> mesh(MeshLib::IO::readMeshFromFile(
71 mesh_in.getValue(), true /* compute_element_neighbors */));
72
73 if (!mesh)
74 {
75#ifdef USE_PETSC
76 MPI_Finalize();
77#endif
78 return EXIT_FAILURE;
79 }
80
81 INFO("Mesh read: {:d} nodes, {:d} elements.", mesh->getNumberOfNodes(),
82 mesh->getNumberOfElements());
83
84 // extract surface
85 std::unique_ptr<MeshLib::Mesh> surface_mesh(
87 *mesh,
91
92 INFO("Created surface mesh: {:d} nodes, {:d} elements.",
93 surface_mesh->getNumberOfNodes(), surface_mesh->getNumberOfElements());
94
95 std::string out_fname(mesh_out.getValue());
96 if (out_fname.empty())
97 {
98 out_fname = BaseLib::dropFileExtension(mesh_in.getValue()) + "_sfc.vtu";
99 }
100
101 auto const data_mode =
102 use_ascii_arg.getValue() ? vtkXMLWriter::Ascii : vtkXMLWriter::Binary;
103 MeshLib::IO::writeVtu(*surface_mesh, out_fname, data_mode);
104
105#ifdef USE_PETSC
106 MPI_Finalize();
107#endif
108 return EXIT_SUCCESS;
109}
void INFO(fmt::format_string< Args... > fmt, Args &&... args)
Definition Logging.h:35
std::string dropFileExtension(std::string const &filename)
GITINFOLIB_EXPORT const std::string ogs_version
int writeVtu(MeshLib::Mesh const &mesh, std::string const &file_name, int const data_mode)
MeshLib::Mesh * readMeshFromFile(const std::string &file_name, bool const compute_element_neighbors)
constexpr std::string_view getBulkIDString(MeshItemType mesh_item_type)
Definition Properties.h:188
std::unique_ptr< MeshLib::Mesh > getBoundaryElementsAsMesh(MeshLib::Mesh const &bulk_mesh, std::string_view subsfc_node_id_prop_name, std::string_view subsfc_element_id_prop_name, std::string_view face_id_prop_name)

References MeshLib::Cell, BaseLib::dropFileExtension(), MeshLib::Face, MeshToolsLib::BoundaryExtraction::getBoundaryElementsAsMesh(), MeshLib::getBulkIDString(), INFO(), MeshLib::Node, GitInfoLib::GitInfo::ogs_version, MeshLib::IO::readMeshFromFile(), and MeshLib::IO::writeVtu().