Geometry X-Vx
The geometry folder contains a helper file geometry.hpp
which provides shortcuts to the types needed to define the specific geometry. In this case the geometry is a simulation with 1 spatial dimension (denoted X) and 1 velocity dimension (denoted Vx).
The shortcuts defined in the geometry file represent:
- The spatial, velocity and time dimensions in real space (RDimX, RDimVx, and RDimT).
- The type of coordinates of objects represented on the dimensions (CoordT, CoordX, CoordVx, CoordXVx).
- The type of the B-Spline bases used on the spatial and velocity dimensions (BSplinesX, BSplinesVx).
- The type which will describe the grid points (representing space, velocity and species) on which the simulation will evolve (IDimX, IDimVx, IDimSp).
- The type of the helper class which initialises grid points in space and velocity which are compatible with the defined splines (SplineInterpPointsX, SplineInterpPointsVx).
- The type of the objects used to build splines (SplineXBuilder, SplineVxBuilder).
- The type which describes the index of a grid point (representing space, velocity and/or species) (e.g. IndexX).
- The type which describes a distance between grid points (e.g. IdxStepX).
- The type which describes the domain on which the grid points are defined (e.g. IdxRangeX).
- The templated type of a field memory block defined on each of the domains (e.g.
FieldMemX<ElementType>
). A field memory block allocates values at each grid point in the provided domain. - The type of a field memory block of doubles defined on each of the domains (e.g.
DFieldMemX
). - The templated type of a field defined on each of the domains (e.g.
FieldX<ElementType>
). A field is similar to a reference. It provides access to a field memory block or a sub-set of a field memory block, but does not own the data itself. - The type of a field of doubles defined on each of the domains (e.g.
DFieldX
). - The templated type of a constant field defined on each of the domains (e.g.
ConstFieldX<ElementType>
). - The type of a constant field of doubles defined on each of the domains (e.g.
DConstFieldX
). - Types representing coordinates, and the grid points as well as their indices, distances and domains for the Fourier mode.
- A class GeometryXVx detailing some of the above types in a generic way which allows them to be accessed from a context where the final geometry selected is unknown.