26int main(
int argc,
char* argv[])
29 "Scales a property of a mesh.\n\n"
30 "OpenGeoSys-6 software, version " +
33 "Copyright (c) 2012-2024, OpenGeoSys Community "
34 "(http://www.opengeosys.org)",
37 TCLAP::ValueArg<std::string> out_mesh_arg(
40 "the mesh is stored to a file of this name",
43 "filename for mesh output");
44 cmd.add(out_mesh_arg);
46 TCLAP::ValueArg<std::string> property_arg(
49 "the name of the property the values are stored for",
52 "property name as string");
53 cmd.add(property_arg);
55 TCLAP::ValueArg<std::string> mesh_arg(
56 "m",
"mesh",
"the mesh is read from this file",
true,
"",
"file name");
59 std::vector<std::string> allowed_units{
"mm/a",
"mm/month",
"m/s"};
60 TCLAP::ValuesConstraint<std::string> allowed_units_constraints{
62 TCLAP::ValueArg<std::string> unit_arg(
"u",
64 "input unit of the data",
67 &allowed_units_constraints);
70 cmd.parse(argc, argv);
74 std::unique_ptr<MeshLib::Mesh> mesh(
78 if (unit_arg.getValue() ==
"m/s")
82 else if (unit_arg.getValue() ==
"mm/a")
84 scale = 1e-3 / (365.25 * 86400);
86 else if (unit_arg.getValue() ==
"mm/month")
88 scale = 1e-3 * (12.0 / (365.25 * 86400));