23 #include "openPMD/backend/Attributable.hpp"
24 #include "openPMD/backend/BaseRecord.hpp"
25 #include "openPMD/backend/MeshRecordComponent.hpp"
30 #include <type_traits>
47 Mesh &operator=(
Mesh const &) =
default;
48 ~
Mesh()
override =
default;
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> >
236 template <
typename T>
239 return readVectorFloatingpoint<T>(
"gridSpacing");
242 template <
typename T>
245 return readFloatingpoint<T>(
"timeOffset");
Base class for any type of record (e.g.
Definition: BaseRecord.hpp:224
std::array< double, 7 > unitDimension() const
Return the physical dimension (quantity) of a record.
Definition: BaseRecord.hpp:924
Map-like container that enforces openPMD requirements and handles IO.
Definition: Container.hpp:104
Logical compilation of data from one snapshot (e.g.
Definition: Iteration.hpp:127
Container for N-dimensional, homogeneous Records.
Definition: Mesh.hpp:41
std::string geometryString() const
Definition: Mesh.cpp:71
Geometry geometry() const
Definition: Mesh.cpp:46
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
std::vector< std::string > axisLabels() const
Definition: Mesh.cpp:140
T timeOffset() const
Definition: Mesh.hpp:243
std::vector< T > gridSpacing() const
Definition: Mesh.hpp:237
DataOrder dataOrder() const
Definition: Mesh.cpp:128
Mesh & setGridUnitSI(double gridUnitSI)
Set the unit-conversion factor to multiply each value in Mesh::gridSpacing and Mesh::gridGlobalOffset...
Definition: Mesh.cpp:182
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
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
Mesh & setDataOrder(DataOrder dor)
Set the memory layout of N-dimensional data.
Definition: Mesh.cpp:134
Mesh & setGeometry(Geometry g)
Set the geometry of the mesh of the mesh record.
Definition: Mesh.cpp:76
std::vector< double > gridGlobalOffset() const
Definition: Mesh.cpp:166
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
double gridUnitSI() const
Definition: Mesh.cpp:177
Geometry
Enumerated datatype for the geometry of the mesh.
Definition: Mesh.hpp:57
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 & setGeometryParameters(std::string const &geometryParameters)
Set additional parameters for the geometry, separated by a.
Definition: Mesh.cpp:122
DataOrder
Enumerated datatype for the memory layout of N-dimensional data.
Definition: Mesh.hpp:68
Public definitions of openPMD-api.
Definition: Date.cpp:29
Parameters recursively passed through the openPMD hierarchy when flushing.
Definition: AbstractIOHandler.hpp:86