![]() |
Semi-Lagrangian Library
Modular library for kinetic and gyrokinetic simulations of plasmas in fusion energy devices.
|
Wrappers for complex objects with addition/multiplication/copy. Real arrays already provided.
This library defines an abstract type sll_vector_space_base
which can be used as a building block for the implementation of linear and non-linear solvers, time integrators and so on. The main purpose of this type is decoupling the details of the "vector" object representation, such as internal fields and arrays with an arbitrary number of dimensions, from the implementation of some general purpose algorithm.
The operators defined for sll_vector_space_base
are essentially those required by a vector space, optionally including an inner product and norm.
In a general situation, the user should extend the abstract type sll_vector_space_base
and provide the necessary operators. Nevertheless, in many cases of interests the working vector space simply consists of a single multidimensional array. For this situation we provide the derived types sll_vector_space_real_1d
, sll_vector_space_real_2d
and sll_vector_space_real_3d
, which easily wrap an existing 1D/2D/3D array through pointer association.
Add some fortran lines to explain how ti use the library