23 #include "openPMD/backend/Attributable.hpp" 24 #include "openPMD/backend/BaseRecord.hpp" 25 #include "openPMD/backend/MeshRecordComponent.hpp" 30 #include <type_traits> 46 Mesh(Mesh
const &) =
default;
47 Mesh &operator=(Mesh
const &) =
default;
48 ~Mesh()
override =
default;
136 Mesh &
setAxisLabels(std::vector<std::string>
const &axisLabels);
144 template <
typename T>
158 typename = std::enable_if_t<std::is_floating_point<T>::value> >
210 template <
typename T>
225 typename = std::enable_if_t<std::is_floating_point<T>::value> >
233 void read()
override;
236 template <
typename T>
239 return readVectorFloatingpoint<T>(
"gridSpacing");
242 template <
typename T>
245 return readFloatingpoint<T>(
"timeOffset");
Geometry
Enumerated datatype for the geometry of the mesh.
Definition: Mesh.hpp:56
DataOrder
Enumerated datatype for the memory layout of N-dimensional data.
Definition: Mesh.hpp:67
Mesh & setGridSpacing(std::vector< T > const &gridSpacing)
Set the spacing of the grid points along each dimension (in the units of the simulation).
Definition: Mesh.cpp:152
std::string geometryParameters() const
Definition: Mesh.cpp:117
std::vector< double > gridGlobalOffset() const
Definition: Mesh.cpp:166
Logical compilation of data from one snapshot (e.g.
Definition: Iteration.hpp:126
Mesh & setGeometry(Geometry g)
Set the geometry of the mesh of the mesh record.
Definition: Mesh.cpp:76
Mesh & setDataOrder(DataOrder dor)
Set the memory layout of N-dimensional data.
Definition: Mesh.cpp:134
Mesh & setUnitDimension(std::map< UnitDimension, double > const &unitDimension)
Set the powers of the 7 base measures characterizing the record's unit in SI.
Definition: Mesh.cpp:188
Mesh & setGridUnitSI(double gridUnitSI)
Set the unit-conversion factor to multiply each value in Mesh::gridSpacing and Mesh::gridGlobalOffset...
Definition: Mesh.cpp:182
std::string geometryString() const
Definition: Mesh.cpp:71
Mesh & setGridGlobalOffset(std::vector< double > const &gridGlobalOffset)
Set the start of the current domain of the simulation (position of the beginning of the first cell) i...
Definition: Mesh.cpp:171
DataOrder dataOrder() const
Definition: Mesh.cpp:128
T timeOffset() const
Definition: Mesh.hpp:243
Public definitions of openPMD-api.
Mesh & setTimeOffset(T timeOffset)
Set the offset between the time at which this record is defined and the Iteration::time attribute of ...
Definition: Mesh.cpp:201
double gridUnitSI() const
Definition: Mesh.cpp:177
std::array< double, 7 > unitDimension() const
Return the physical dimension (quantity) of a record.
Definition: BaseRecord.hpp:58
Parameters recursively passed through the openPMD hierarchy when flushing.
Definition: AbstractIOHandler.hpp:84
std::vector< std::string > axisLabels() const
Definition: Mesh.cpp:140
Mesh & setAxisLabels(std::vector< std::string > const &axisLabels)
Set the ordering of the labels for the Mesh::geometry of the mesh.
Definition: Mesh.cpp:145
Container for N-dimensional, homogeneous Records.
Definition: Mesh.hpp:40
Geometry geometry() const
Definition: Mesh.cpp:46
Map-like container that enforces openPMD requirements and handles IO.
Definition: Container.hpp:131
std::vector< T > gridSpacing() const
Definition: Mesh.hpp:237
Mesh & setGeometryParameters(std::string const &geometryParameters)
Set additional parameters for the geometry, separated by a.
Definition: Mesh.cpp:122