C. Osborne (University of Glasgow) & I. Milić (NSO/CU Boulder), 2019-2021
MIT License
Lightweaver is an NLTE radiative transfer code in the style of RH.
It is well validated against RH and also SNAPI.
The code is currently designed for plane parallel atmospheres, either 1D single columns (which can be parallelised over wavelength) or 1.5D parallel columns with ProcessPool
or MPI parallelisation.
There is also support for unpolarised radiative transfer in 2D atmospheres.
Lightweaver is described in a paper (including examples!), and has API documentation.
Whilst the core numerics are implemented in C++, as much of the non-performance critical code as possible is implemented in Python, and the code currently only has a Python interface (provided through a Cython binding module). Other languages with a C/C++ interface could interact directly with this core, hopefully allowing it to be reused as needed in different projects.
The aim of Lightweaver is to provide an NLTE Framework, rather than a "code". That is to say, it should be more malleable, and provide easier access to experimentation, with most forms of experimentation (unless one wants to play with formal solvers or iteration schemes), being available directly from python. Formal solvers that comply with the interface defined in Lightweaver can be compiled into separate shared libraries and then loaded at runtime. The preceding concepts are inspired by the popular python machine learning frameworks such as PyTorch and Tensorflow.
For most users precompiled python wheels (supporting modern Linux, Mac, and Windows 10 systems) can be installed from pip
and are the easiest way to get started with Lightweaver.
Lightweaver requires python 3.8+, and it is recommended to be run inside a virtual environment using conda
.
In this case a new virtual environment can be created with:
conda create -n Lightweaver python=3.8
activate the environment:
conda activate Lightweaver
and Lightweaver can then be installed with
python -m pip install lightweaver
Whilst the above should work for most people, if you wish to work on the Lightweaver backend it is beneficial to have a source installation.
This requires a compiler supporting C++17.
The build is then run with python3 -m pip install -vvv -e .
.
The libraries currently produce a few warnings, but should not produce any errors.
Simple*.py
) after the code description in the paper to gain an understanding of the basic functionality and interfaces.
These samples are unfortunately not always up to date, but are a work in progress.Please contact me through this repository if difficulties are encountered.
The python implementation of the Wittmann equation of state has been kindly provided J. de la Cruz Rodriguez.