76{
77 TCLAP::CmdLine cmd(
78 "Integrates the given element property and outputs an OGS-5 direct "
79 "Neumann boundary condition. The mesh has to contain a property "
80 "'bulk_node_ids' that stores the original subsurface mesh node ids. "
81 "Such surface meshes can be created using the OGS-6 tool "
82 "ExtractSurface.\n\n"
83 "OpenGeoSys-6 software, version " +
85 ".\n"
86 "Copyright (c) 2012-2025, OpenGeoSys Community "
87 "(http://www.opengeosys.org)",
89
90 TCLAP::ValueArg<std::string> in_mesh(
91 "i",
92 "in-mesh",
93 "the surface mesh that has an element property for the Neumann "
94 "boundary condition",
95 true,
96 "",
97 "filename for surface mesh input");
98 cmd.add(in_mesh);
99
100 TCLAP::ValueArg<std::string> property_in_arg(
101 "p",
102 "property-in-name",
103 "name of an element property used for the computation of the Neumann "
104 "boundary condition",
105 true,
106 "",
107 "string (property name)");
108 cmd.add(property_in_arg);
109
110 TCLAP::ValueArg<std::string> property_out_arg(
111 "",
112 "property-out-name",
113 "name of the node based property used for the output of the Neumann "
114 "boundary condition",
115 true,
116 "",
117 "string (property name)");
118 cmd.add(property_out_arg);
119
120 TCLAP::ValueArg<std::string> result_file(
121 "o",
122 "result-out",
123 "the file name the result will be written to ",
124 true,
125 "",
126 "output file name");
127 cmd.add(result_file);
128 cmd.parse(argc, argv);
129
131
132
133 std::unique_ptr<MeshLib::Mesh> surface_mesh(
135
136 auto const* const node_id_pv =
138 {
139 try
140 {
141 return surface_mesh->getProperties().getPropertyVector<std::size_t>(
144 }
145 catch (std::runtime_error const& e)
146 {
147 WARN(
"{:s}", e.what());
148 return nullptr;
149 }
150 }();
151 if (!node_id_pv)
152 {
153 return EXIT_FAILURE;
154 }
155
157 *surface_mesh, property_in_arg.getValue());
158 std::vector<std::pair<std::size_t, double>> direct_values;
159 direct_values.reserve(surface_mesh->getNumberOfNodes());
160
161 for (auto const* node : surface_mesh->getNodes())
162 {
163 auto const id(node->getID());
164 auto const subsurface_node_id((*node_id_pv)[id]);
165 auto const val(integrated_values[id]);
166 direct_values.emplace_back(subsurface_node_id, val);
167 }
168
169 auto* const pv =
170 surface_mesh->getProperties().createNewPropertyVector<double>(
172 pv->resize(surface_mesh->getNodes().size());
173 for (std::size_t k(0); k < surface_mesh->getNodes().
size(); ++k)
174 {
175 (*pv)[k] = direct_values[k].second;
176 }
177
179
180 std::ofstream result_out(result_file.getValue() + ".txt");
181 result_out.precision(std::numeric_limits<double>::max_digits10);
182 for (auto const& p : direct_values)
183 {
184 result_out <<
p.first <<
" " <<
p.second <<
"\n";
185 }
186
187 return EXIT_SUCCESS;
188}
void WARN(fmt::format_string< Args... > fmt, Args &&... args)
std::vector< double > getSurfaceIntegratedValuesForNodes(const MeshLib::Mesh &mesh, std::string const &prop_name)
GITINFOLIB_EXPORT const std::string ogs_version
constexpr int size(int const displacement_dim)
Vectorized tensor size for given displacement dimension.
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)
constexpr std::string_view getBulkIDString(MeshItemType mesh_item_type)