30int main(
int argc,
char* argv[])
33 "Sets the property value of a mesh element to a given new value iff at "
34 "least one node of the element is within a polygonal region that is "
35 "given by a polygon. The documentation is available at "
36 "https://docs.opengeosys.org/docs/tools/model-preparation/"
37 "set-properties-in-polygonal-region.\n\n"
38 "OpenGeoSys-6 software, version " +
41 "Copyright (c) 2012-2024, OpenGeoSys Community "
42 "(http://www.opengeosys.org)",
44 TCLAP::ValueArg<std::string> mesh_out(
45 "o",
"mesh-output-file",
46 "the name of the file the mesh will be written to, format depends on "
47 "the given file name extension",
48 true,
"",
"file name");
50 TCLAP::ValueArg<std::string> polygon_name_arg(
51 "p",
"polygon-name",
"name of polygon in the geometry",
true,
"",
53 cmd.add(polygon_name_arg);
54 TCLAP::ValueArg<std::string> geometry_fname(
56 "the name of the file containing the input geometry (gli or gml "
58 true,
"",
"file name");
59 cmd.add(geometry_fname);
60 TCLAP::SwitchArg any_of_arg(
62 "all nodes of an element has to be inside the polygon (default "
63 "behaviour without switch) or any node of an element has to be inside "
67 TCLAP::ValueArg<char> char_property_arg(
68 "c",
"char-property-value",
"new property value (data type char)",
69 false,
'A',
"character");
70 cmd.add(char_property_arg);
71 TCLAP::ValueArg<int> int_property_arg(
"i",
"int-property-value",
72 "new property value (data type int)",
74 cmd.add(int_property_arg);
75 TCLAP::ValueArg<bool> bool_property_arg(
76 "b",
"bool-property-value",
"new property value (data type bool)",
77 false,
false,
"boolean value");
78 cmd.add(bool_property_arg);
79 TCLAP::ValueArg<std::string> property_name_arg(
80 "n",
"property-name",
"name of property in the mesh",
false,
81 "MaterialIDs",
"string");
82 cmd.add(property_name_arg);
83 TCLAP::ValueArg<int> restrict_arg(
84 "r",
"restrict-to-MaterialID",
85 "Restrict resetting the property to the material id",
false, -1,
87 cmd.add(restrict_arg);
88 TCLAP::ValueArg<std::string> mesh_in(
89 "m",
"mesh-input-file",
90 "the name of the file containing the input mesh",
true,
"",
93 TCLAP::ValueArg<std::string> gmsh_path_arg(
"",
"gmsh-path",
94 "the path to the gmsh binary",
95 false,
"",
"path as string");
96 cmd.add(gmsh_path_arg);
97 cmd.parse(argc, argv);
104 gmsh_path_arg.getValue());
113 ERR(
"Could not get vector of polylines out of geometry '{:s}'.",
123 ERR(
"Polyline '{:s}' not found.", polygon_name_arg.getValue());
130 ERR(
"Polyline '{:s}' is not closed, i.e. does not describe a region.",
131 polygon_name_arg.getValue());
138 auto mesh = std::unique_ptr<MeshLib::Mesh>(
145 std::string
const& property_name(property_name_arg.getValue());
147 if (char_property_arg.isSet())
150 *mesh, polygon, property_name, char_property_arg.getValue(),
151 restrict_arg.getValue(), any_of_arg.getValue());
154 if (int_property_arg.isSet())
157 *mesh, polygon, property_name, int_property_arg.getValue(),
158 restrict_arg.getValue(), any_of_arg.getValue());
161 if (bool_property_arg.isSet())
164 *mesh, polygon, property_name, bool_property_arg.getValue(),
165 restrict_arg.getValue(), any_of_arg.getValue());