-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathMesh.cpp
More file actions
208 lines (191 loc) · 8.06 KB
/
Copy pathMesh.cpp
File metadata and controls
208 lines (191 loc) · 8.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
/* Copyright 2018-2025 Axel Huebl, Franz Poeschel
*
* This file is part of openPMD-api.
*
* openPMD-api is free software: you can redistribute it and/or modify
* it under the terms of of either the GNU General Public License or
* the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* openPMD-api is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License and the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License
* and the GNU Lesser General Public License along with openPMD-api.
* If not, see <http://www.gnu.org/licenses/>.
*/
#include "openPMD/Mesh.hpp"
#include "openPMD/Error.hpp"
#include "openPMD/IO/AbstractIOHandler.hpp"
#include "openPMD/UnitDimension.hpp"
#include "openPMD/backend/Attributable.hpp"
#include "openPMD/backend/BaseRecord.hpp"
#include "openPMD/backend/MeshRecordComponent.hpp"
#include "openPMD/binding/python/Common.hpp"
#include "openPMD/binding/python/Container.H"
#include "openPMD/binding/python/Pickle.hpp"
#include "openPMD/binding/python/UnitDimension.hpp"
#include <string>
#include <variant>
#include <vector>
void init_Mesh(py::module &m)
{
auto py_m_cont =
declare_container<PyMeshContainer, Attributable>(m, "Mesh_Container");
py::class_<Mesh, BaseRecord<MeshRecordComponent>> cl(m, "Mesh");
py::enum_<Mesh::Geometry>(m, "Geometry") // TODO: m -> cl
.value("cartesian", Mesh::Geometry::cartesian)
.value("thetaMode", Mesh::Geometry::thetaMode)
.value("cylindrical", Mesh::Geometry::cylindrical)
.value("spherical", Mesh::Geometry::spherical)
.value("other", Mesh::Geometry::other);
cl.def(py::init<Mesh const &>())
.def(
"__repr__",
[](Mesh const &mesh) {
return "<openPMD.Mesh record with '" +
std::to_string(mesh.size()) + "' record component(s) and " +
std::to_string(mesh.numAttributes()) + " attributes>";
})
.def_property(
"unit_dimension",
&Mesh::unitDimension,
[](Mesh &self,
std::variant<
unit_representations::AsMap,
unit_representations::AsArray> const &arg) -> Mesh & {
return std::visit(
[&](auto const &arg_resolved) -> Mesh & {
return self.setUnitDimension(arg_resolved);
},
arg);
},
python::doc_unit_dimension)
.def_property(
"grid_unit_dimension",
&Mesh::gridUnitDimension,
[](Mesh &self,
std::variant<
unit_representations::AsMaps,
unit_representations::AsArrays> const &arg) -> Mesh & {
return std::visit(
[&](auto const &arg_resolved) -> Mesh & {
return self.setGridUnitDimension(arg_resolved);
},
arg);
},
python::doc_mesh_unit_dimension)
.def_property(
"geometry",
&Mesh::geometry,
py::overload_cast<Mesh::Geometry>(&Mesh::setGeometry))
.def_property(
"geometry_string",
&Mesh::geometryString,
py::overload_cast<std::string>(&Mesh::setGeometry))
.def_property(
"geometry_parameters",
&Mesh::geometryParameters,
&Mesh::setGeometryParameters)
.def_property(
"data_order",
[](Mesh const &mesh) {
return static_cast<char>(mesh.dataOrder());
},
[](Mesh &mesh, char d) { mesh.setDataOrder(Mesh::DataOrder(d)); },
"Data Order of the Mesh (deprecated and set to C in openPMD 2)")
.def_property("axis_labels", &Mesh::axisLabels, &Mesh::setAxisLabels)
// note: overloads on types are order-dependent (first wins)
// https://github.com/pybind/pybind11/issues/1512
// We specialize `double` here generically and cast in read if needed.
// Later on, we could add support for 1D numpy arrays with distinct
// type.
.def_property(
"grid_spacing",
&Mesh::gridSpacing<double>,
&Mesh::setGridSpacing<double>)
.def_property(
"grid_global_offset",
&Mesh::gridGlobalOffset,
&Mesh::setGridGlobalOffset)
.def_property(
"grid_unit_SI",
/*
* Using pybind11's support for std::variant in order to implement a
* polymorphic type for this property. Will be a scalar double in
* openPMD 1.*, a list of double in openPMD 2.*.
* Unlike in the C++ API, this means that no new API calls
* such as gridUnitSIPerDimension() must be added.
*/
[](Mesh &self) {
using return_t = std::variant<double, std::vector<double>>;
if (self.openPMDStandard() < OpenpmdStandard::v_2_0_0)
{
return return_t(self.gridUnitSI());
}
else
{
return return_t(self.gridUnitSIPerDimension());
}
},
[](Mesh &self,
std::variant<double, std::vector<double>> const &arg) -> Mesh & {
return std::visit(
[&](auto const &arg_resolved) -> Mesh & {
return self.setGridUnitSI(arg_resolved);
},
arg);
},
&R"(
For openPMD versions 1.*:
Set the unit-conversion factor to multiply each value in
Mesh.grid_spacing and Mesh.grid_global_offset, in order to convert from
simulation units to SI units.
The type is a scalar floating point.
For openPMD versions 2.*:
Set the unit-conversion **factors per axis** in the order of the axisLabels
to multiply each value in Mesh.grid_spacing and Mesh.grid_global_offset,
in order to convert from simulation units to SI units.
The type is a list of floating points.
When writing a scalar value to an openPMD 2.* file, a warning will be printed
(for enabling a more comfortable migration to openPMD 2.*).
When writing a list value to an openPMD 1.* file, an error will be thrown,
since most openPMD 1.*-based readers will not be able to interpret this
properly.
Ref.: https://github.com/openPMD/openPMD-standard/pull/193)"[1])
.def_property(
"time_offset",
&Mesh::timeOffset<double>,
&Mesh::setTimeOffset<double>)
// TODO remove in future versions (deprecated)
.def(
"set_unit_dimension",
py::overload_cast<unit_representations::AsMap const &>(
&Mesh::setUnitDimension))
.def(
"set_geometry",
py::overload_cast<Mesh::Geometry>(&Mesh::setGeometry))
.def("set_geometry", py::overload_cast<std::string>(&Mesh::setGeometry))
.def("set_geometry_parameters", &Mesh::setGeometryParameters)
.def("set_axis_labels", &Mesh::setAxisLabels)
.def("set_grid_spacing", &Mesh::setGridSpacing<float>)
.def("set_grid_spacing", &Mesh::setGridSpacing<double>)
.def("set_grid_spacing", &Mesh::setGridSpacing<long double>)
.def("set_grid_global_offset", &Mesh::setGridGlobalOffset)
.def(
"set_grid_unit_SI",
py::overload_cast<double>(&Mesh::setGridUnitSI));
add_pickle(
cl,
[](std::shared_ptr<openPMD::Series> series,
std::vector<std::string> const &group) {
uint64_t const n_it = std::stoull(group.at(1));
auto res = series->iterations[n_it].open().meshes[group.at(3)];
return internal::makeOwning(res, std::move(series));
});
finalize_container<PyMeshContainer>(py_m_cont);
}