![]() |
Semi-Lagrangian Library
Modular library for kinetic and gyrokinetic simulations of plasmas in fusion energy devices.
|
Implements the error testing function and allocation related functionalities.
Provides the header file that exposes the allocation, initialization and clearing macros, and other related functionalities.
The following directive will make available macros:
and will provide any additional functionality included in the sll_m_memory.F90 module. This directive should be put in the 'use' section of the subprogram that wants to use the allocator.
Examples:
To allocate the simple array 'a' of 1000 elements:
To allocate the 2D array 'a' with non-default indexing:
etc. The syntax comes directly from the native Fortran allocate function.
The deallocation macro also requires the integer error variable:
To initialize an array:
To allocate and initialize an array to 0:
Any file that uses this include file will need to be compiled such that there is no upper limit to the length of a source code line. In gfortran, for instance, this behavior is obtained with the flag -ffree-line-length-none