26{
27 TCLAP::CmdLine cmd(
28 "Add element quality as a mesh property.\n\n"
29 "OpenGeoSys-6 software, version " +
31 ".\n"
32 "Copyright (c) 2012-2024, OpenGeoSys Community "
33 "(http://www.opengeosys.org)",
35
36 TCLAP::ValueArg<std::string> mesh_out_arg(
37 "o", "output_mesh_file", "output mesh file", true, "", "string");
38 cmd.add(mesh_out_arg);
39 std::vector<std::string> allowed_element_criterions{
40 "ElementSize", "EdgeRatio", "EquiAngleSkew", "RadiusEdgeRatio",
41 "SizeDifference"};
42 TCLAP::ValuesConstraint<std::string> element_criterions{
43 allowed_element_criterions};
44 TCLAP::ValueArg<std::string> criterion_arg{
45 "c", "quality_criterion", "quality criterion", true,
46 "", &element_criterions};
47 cmd.add(criterion_arg);
48 TCLAP::ValueArg<std::string> mesh_in_arg(
49 "i", "input_mesh_file", "input mesh file", true, "", "string");
50 cmd.add(mesh_in_arg);
51 cmd.parse(argc, argv);
52
54
55
59 mesh_in_arg.getValue(), true ));
60 if (!mesh)
61 {
62 return EXIT_FAILURE;
63 }
64 INFO(
"Time for reading: {:g} s", run_time.
elapsed());
65
66
70 auto const element_quality_vector = element_quality.getQualityVector();
73 element_quality_vector);
74 INFO(
"Writing mesh '{:s}' ... ", mesh_out_arg.getValue());
77 return EXIT_SUCCESS;
78}
void INFO(fmt::format_string< Args... > fmt, Args &&... args)
double elapsed() const
Get the elapsed time in seconds.
void start()
Start the timer.
GITINFOLIB_EXPORT const std::string ogs_version
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)
MeshLib::MeshQualityType String2MeshQualityType(std::string const &s)
MeshQualityType
Describes a mesh quality metric.
void addPropertyToMesh(Mesh &mesh, std::string_view name, MeshItemType item_type, std::size_t number_of_components, std::vector< T > const &values)