Report Typos and Errors    
Semi-Lagrangian Library
Modular library for kinetic and gyrokinetic simulations of plasmas in fusion energy devices.
sll_vector_space

Wrappers for complex objects with addition/multiplication/copy. Real arrays already provided.

Authors
Yaman Güçlü - yaman.nosp@m..guc.nosp@m.lu@gm.nosp@m.ail..nosp@m.com
Marco Restelli - marco.nosp@m..res.nosp@m.telli.nosp@m.@gma.nosp@m.il.co.nosp@m.m

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.

Note
This library is derived from the mod_state_vars module in FEMilaro (Finite Element Method toolkit), by Marco Restelli.

Header files available

How to use it

Examples

Add some fortran lines to explain how ti use the library

call initialize(my_type, arg_1, arg_2)
call solve(my_type, your_result)
    Report Typos and Errors