4#include <tclap/CmdLine.h>
20 std::array<int, 3>
const& new_axes_indices)
22 double new_coords[3] = {};
25 for (
int i = 0; i < 3; i++)
27 new_coords[i] = (*node)[new_axes_indices[i]];
29 for (
int i = 0; i < 3; i++)
31 (*node)[i] = new_coords[i];
37 std::array<int, 3>& new_axes_indices)
39 if (str_order.length() != 3)
41 ERR(
"Invalid argument for the new order. The argument should contain "
46 new_axes_indices.fill(-1);
48 for (
int i = 0; i < 3; i++)
50 if (str_order[i] ==
'x')
52 new_axes_indices[i] = 0;
54 else if (str_order[i] ==
'y')
56 new_axes_indices[i] = 1;
58 else if (str_order[i] ==
'z')
60 new_axes_indices[i] = 2;
64 ERR(
"Invalid argument for the new order. The given argument "
65 "contains a character other than 'x', 'y', 'z'.");
70 bool isAxisSet[3] = {
false};
71 for (
int new_axes_indice : new_axes_indices)
73 if (isAxisSet[new_axes_indice])
75 ERR(
"Invalid argument for the new order. The argument contains "
76 "some character used more than once.");
79 isAxisSet[new_axes_indice] =
true;
85int main(
int argc,
char* argv[])
88 "Swap node coordinate values.\n\n"
89 "OpenGeoSys-6 software, version " +
92 "Copyright (c) 2012-2026, OpenGeoSys Community "
93 "(http://www.opengeosys.org)",
95 TCLAP::ValueArg<std::string> input_arg(
"i",
"input-mesh-file",
96 "Input (.vtu) mesh file",
true,
"",
99 TCLAP::ValueArg<std::string> output_arg(
"o",
"output-mesh-file",
100 "Output (.vtu) mesh file",
true,
"",
103 TCLAP::ValueArg<std::string> new_order_arg(
105 "the new order of swapped coordinate values (e.g. 'xzy' for converting "
106 "XYZ values to XZY values)",
107 true,
"",
"NEW_ORDER");
108 cmd.add(new_order_arg);
110 cmd.add(log_level_arg);
111 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)
std::vector< Node * > const & getNodes() const
Get the nodes-vector for the mesh.
TCLAP::ValueArg< std::string > makeLogLevelArg()
void initOGSLogger(std::string const &log_level)
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)
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)