13#include <tclap/CmdLine.h>
36int main(
int argc,
char* argv[])
39 "Creates a boundary representation for a layered 3D mesh in "
40 "*.smesh-format. This boundary representation can be used with the "
41 "TetGen Tetrahedral Mesh Generator to create 3D meshes of the given "
42 "geometry at arbitrary resolutions and with varying properties. "
43 "Details on command line switches and possible parametrisation can be "
44 "found in the TetGen User's Manual. Supported raster formats are "
45 "ArcGIS ascii rasters (*.asc), Surfer Grids (*.grd) and XYZ raster "
47 "Only input meshes consisting of line and triangle elements are "
48 "currently supported as mapping of quads might result in invalid mesh "
50 "OpenGeoSys-6 software, version " +
53 "Copyright (c) 2012-2024, OpenGeoSys Community "
54 "(http://www.opengeosys.org)",
57 TCLAP::SwitchArg use_ascii_arg(
"",
"ascii_output",
58 "Write VTU output in ASCII format.");
59 cmd.add(use_ascii_arg);
61 double min_thickness(std::numeric_limits<double>::epsilon());
62 TCLAP::ValueArg<double> min_thickness_arg(
64 "The minimum thickness of a layer to be integrated at any given "
66 false, min_thickness,
"floating point number");
67 cmd.add(min_thickness_arg);
69 TCLAP::ValueArg<std::string> raster_path_arg(
71 "An ascii-file containing a list of raster files, starting from top "
73 true,
"",
"file name");
74 cmd.add(raster_path_arg);
76 TCLAP::ValueArg<std::string> mesh_out_arg(
77 "o",
"output-mesh-file",
"The file name of the resulting 3D mesh.",
78 true,
"",
"file name");
79 cmd.add(mesh_out_arg);
81 TCLAP::ValueArg<std::string> mesh_arg(
"i",
"input-mesh-file",
82 "The file name of the 2D input mesh.",
83 true,
"",
"file name");
86 cmd.parse(argc, argv);
89 MPI_Init(&argc, &argv);
92 if (min_thickness_arg.isSet())
94 min_thickness = min_thickness_arg.getValue();
95 if (min_thickness < 0)
97 ERR(
"Minimum layer thickness must be non-negative value.");
105 INFO(
"Reading mesh '{:s}' ... ", mesh_arg.getValue());
107 mesh_arg.getValue(),
true ));
110 ERR(
"Error reading mesh '{:s}'.", mesh_arg.getValue());
116 if (sfc_mesh->getDimension() != 2)
118 ERR(
"Input mesh must be a 2D mesh.");
126 std::vector<std::string> raster_paths =
128 if (raster_paths.size() < 2)
130 ERR(
"At least two raster files needed to create 3D mesh.");
136 std::reverse(raster_paths.begin(), raster_paths.end());
138 std::string output_name(mesh_out_arg.getValue());
141 output_name.append(
".smesh");
148 if (!lv.
createLayers(*sfc_mesh, *rasters, min_thickness))
150 ERR(
"Creating the layers was erroneous.");
159 ERR(
"The raster files are not accessible.");
165 std::unique_ptr<MeshLib::Mesh> tg_mesh =
166 lv.
getMesh(
"BoundaryRepresentation");
167 if (tg_mesh !=
nullptr)
172 INFO(
"Smesh was successfully written.");
176 ERR(
"The tetgen-smesh could not be created.");
Definition of the AsciiRasterInterface class.
Definition of the LayeredVolume class.
void INFO(fmt::format_string< Args... > fmt, Args &&... args)
void ERR(fmt::format_string< Args... > fmt, Args &&... args)
Definition of the MeshLayerMapper class.
Definition of the Mesh class.
Definition of the TetGenInterface class.
Implementation of the VtuInterface class.
static bool writeTetGenSmesh(const std::string &file_name, const GeoLib::GEOObjects &geo_objects, const std::string &geo_name, const std::vector< GeoLib::Point > &attribute_points)
virtual bool createLayers(MeshLib::Mesh const &mesh, std::vector< GeoLib::Raster const * > const &rasters, double minimum_thickness, double noDataReplacementValue=0.0) final
std::unique_ptr< MeshLib::Mesh > getMesh(std::string const &mesh_name) const
Returns a mesh of the subsurface representation.
Creates a volume geometry from 2D mesh layers based on raster data.
std::vector< MeshLib::Node > getAttributePoints() const
int main(int argc, char *argv[])
std::vector< std::string > readStringListFromFile(std::string const &filename)
Reads non-empty lines from a list of strings from a file into a vector.
bool hasFileExtension(std::string const &extension, std::string const &filename)
std::optional< std::vector< GeoLib::Raster const * > > readRasters(std::vector< std::string > const &raster_paths)
GITINFOLIB_EXPORT const std::string ogs_version
MeshLib::Mesh * readMeshFromFile(const std::string &file_name, bool const compute_element_neighbors)
Definition of readMeshFromFile function.