10#include <tclap/CmdLine.h>
25 std::array<int, 3>
const& new_axes_indices)
27 double new_coords[3] = {};
30 for (
int i = 0; i < 3; i++)
32 new_coords[i] = (*node)[new_axes_indices[i]];
34 for (
int i = 0; i < 3; i++)
36 (*node)[i] = new_coords[i];
42 std::array<int, 3>& new_axes_indices)
44 if (str_order.length() != 3)
46 ERR(
"Invalid argument for the new order. The argument should contain "
51 new_axes_indices.fill(-1);
53 for (
int i = 0; i < 3; i++)
55 if (str_order[i] ==
'x')
57 new_axes_indices[i] = 0;
59 else if (str_order[i] ==
'y')
61 new_axes_indices[i] = 1;
63 else if (str_order[i] ==
'z')
65 new_axes_indices[i] = 2;
69 ERR(
"Invalid argument for the new order. The given argument "
70 "contains a character other than 'x', 'y', 'z'.");
75 bool isAxisSet[3] = {
false};
76 for (
int new_axes_indice : new_axes_indices)
78 if (isAxisSet[new_axes_indice])
80 ERR(
"Invalid argument for the new order. The argument contains "
81 "some character used more than once.");
84 isAxisSet[new_axes_indice] =
true;
90int main(
int argc,
char* argv[])
93 "Swap node coordinate values.\n\n"
94 "OpenGeoSys-6 software, version " +
97 "Copyright (c) 2012-2024, OpenGeoSys Community "
98 "(http://www.opengeosys.org)",
100 TCLAP::ValueArg<std::string> input_arg(
101 "i",
"input-mesh-file",
"input mesh file",
true,
"",
"string");
103 TCLAP::ValueArg<std::string> output_arg(
104 "o",
"output-mesh-file",
"output mesh file",
true,
"",
"string");
106 TCLAP::ValueArg<std::string> new_order_arg(
108 "the new order of swapped coordinate values (e.g. 'xzy' for converting "
109 "XYZ values to XZY values)",
111 cmd.add(new_order_arg);
112 cmd.parse(argc, argv);
116 const std::string str_order = new_order_arg.getValue();
117 std::array<int, 3> new_order = {{}};
123 std::unique_ptr<MeshLib::Mesh> mesh(
130 if (mesh->getDimension() == 3)
133 "Swapping coordinate values of 3D elements can result in incorrect "
137 INFO(
"Exchange node coordinates from xyz to {:s}",
138 new_order_arg.getValue().data());
141 INFO(
"Save the new mesh into a file");
void INFO(fmt::format_string< Args... > fmt, Args &&... args)
void ERR(fmt::format_string< Args... > fmt, Args &&... args)
void WARN(fmt::format_string< Args... > fmt, Args &&... args)
Definition of the Mesh class.
Definition of the Node class.
std::vector< Node * > const & getNodes() const
Get the nodes-vector for the mesh.
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)
Definition of readMeshFromFile function.
int main(int argc, char *argv[])
static bool parseNewOrder(std::string const &str_order, std::array< int, 3 > &new_axes_indices)
static void swapNodeCoordinateAxes(MeshLib::Mesh const &mesh, std::array< int, 3 > const &new_axes_indices)