10#include <tclap/CmdLine.h>
28int main(
int argc,
char* argv[])
31 "Add element quality as a mesh property.\n\n"
32 "OpenGeoSys-6 software, version " +
35 "Copyright (c) 2012-2024, OpenGeoSys Community "
36 "(http://www.opengeosys.org)",
39 TCLAP::ValueArg<std::string> mesh_out_arg(
40 "o",
"output_mesh_file",
"output mesh file",
true,
"",
"string");
41 cmd.add(mesh_out_arg);
42 std::vector<std::string> allowed_element_criterions{
43 "ElementSize",
"EdgeRatio",
"EquiAngleSkew",
"RadiusEdgeRatio",
45 TCLAP::ValuesConstraint<std::string> element_criterions{
46 allowed_element_criterions};
47 TCLAP::ValueArg<std::string> criterion_arg{
48 "c",
"quality_criterion",
"quality criterion",
true,
49 "", &element_criterions};
50 cmd.add(criterion_arg);
51 TCLAP::ValueArg<std::string> mesh_in_arg(
52 "i",
"input_mesh_file",
"input mesh file",
true,
"",
"string");
54 cmd.parse(argc, argv);
57 MPI_Init(&argc, &argv);
64 mesh_in_arg.getValue(),
true ));
72 INFO(
"Time for reading: {:g} s", run_time.
elapsed());
81 element_quality_vector);
82 INFO(
"Writing mesh '{:s}' ... ", mesh_out_arg.getValue());
int main(int argc, char *argv[])
Definition of the ElementQualityInterface class.
void INFO(fmt::format_string< Args... > fmt, Args &&... args)
Definition of mesh-related Enumerations.
Definition of the Mesh class.
Definition of the RunTime class.
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)
Definition of readMeshFromFile function.