Common code for plasma codes of ITPcp, in particular for different NEO-2 versions.
libneo requires CMake, Ninja, GCC+GFortran, OpenMPI,
a BLAS/LAPACK (OpenBLAS or MKL) and FFTW, NetCDF+NetCDF-Fortran
and HDF5 including development headers.
For your own Debian or Ubuntu system, run setup/debian.sh.
For usage on common computing clusters, load the modules in setup/<machine>.sh.
For convenience, the build process can be automatically started by running
make
directly in the libneo directory. This will create a build subdirectory
and run cmake with ninja internally.
The Python interface is located in the python subdirectory. This interface
is only built if python, numpy and f90wrap are available. Please activate
a suitable venv first, and then run
pip install -e .
in the libneo directory for an editable build.
Documentation, this includes user documentation and interface documentation. The latter is generated via doxygen.
Matlab library that contains various functions, classes and code interfaces for general and specific uses.
A class to read/write/modify equilibrium g-files (commonly wrongly called efit files).
A minimalist interface to run the code GPEC together with DCON.
A class that can be used to read/create/modify inputfiles that contain Fortran Namelists.
A class that can write .kin files (kinetic profiles saved column wise)
Interface to prepare/run/postprocess the code KiLCA. A compiled version of KiLCA is needed (see here)
Shared classes and functions of the Matlab library.
Classes and functions that have a general use for many application.
Python interface package and scripts/functions.
Generate *.chartmap.nc volumes compatible with libneo_coordinates.
For map2disc-generated chartmaps, zeta is the cylindrical toroidal angle
(zeta_convention=cyl) and rho is a geometric disk radius (rho_convention=unknown).
VMEC documentation commonly writes Fourier factors as exp(i*(m*theta - n*zeta)).
In VMEC wout_*.nc files:
xmstores poloidal mode numbersm.xnstores signed toroidal mode numbers including field periods:xn = n*nfp.zeta/varphiis the geometric toroidal angle in radians (oftenatan2(y,x)); some tools reduce it modulo one field period (2*pi/nfp), but this does not change the Fourier phase becausexnalready containsnfp.
So the consistent real-space evaluation with wout coefficients is:
cos(m*theta - xn*zeta)andsin(m*theta - xn*zeta)(i.e. keep the minus inside).
For the magnetic axis, VMEC stores zaxis_cs but uses the same phase convention, so:
Z_axis(zeta) = sum_n zaxis_cs(n) * sin(-n*nfp*zeta)(usingsin(-x) = -sin(x)).
Install dependencies:
pip install -e ".[chartmap]"
Python API:
from libneo.chartmap import write_chartmap_from_vmec_boundary
write_chartmap_from_vmec_boundary("wout.nc", "wout.chartmap.nc", nrho=33, ntheta=65, nzeta=33)
CLI:
libneo-write-chartmap from-vmec wout.nc wout.chartmap.nc --nrho 33 --ntheta 65 --nzeta 33
Convert STELLOPT coils format to simple biotsavart format:
python -m libneo.convert_coils_to_simple input.coils output.simple
The simple format is compatible with libneo's neo_biotsavart module and SIMPLE code.
Fortran source files for the library. Subfolders contain source for additional tools, also compiled into libneo.
Interface to hdf5, to simplify calls.
Interface to MPI, so no actual mpi routines need to be called in programs.
Poincare plot generation for magnetic field lines. Computes field line trajectories and their intersections with toroidal cross-sections to visualize magnetic islands, chaos regions, and flux surface structure.
Contains resources for tests of the library.