dgahle / baysar

Spectroscopy inference tool to analyse atomic line emission from plasmas
MIT License
2 stars 0 forks source link
atomic-physics bayesian-inference plasma-physics python

Bayesian Spectral Analysis Routine

GitHub Action PyTests GitHub Action Linting Python Version GitHub license Code style: black Imports: isort GitHub issues open GitHub issues closed GitHub PR closed

Bayesian Spectral Analysis Routine (BaySAR) is an agnostic spectral fitting routine that takes descriptions of the plasma elemental composition, the electron density and temperature profile functions and spectrometer calibration to build bespoke spectral fitting posterior functions that when evaluated infers emission weighted plasma quantities as well as line of sight plasma profiles.

================= TO UPDATE START =================

This repository provides a template structure a software development project with some python functionality that is generally usefully (demonstrated in scripts/main.py). This includes:

As well as tracking information in .gitignore and python dependencies requirements.txt.

================= TO UPDATE END =================

Requesting changes: Raise an issue on the GitHub repository page and describes the error or the desired functionality, ideally with test data that can be used to make tutorials and unit tests.

Getting Started (Build, Test, and Run)

This example repo has been written in Python 3.9 and the dependencies are listed in requirements.txt. The script setup_project.sh will build the conda environment, install dependencies, and create the input/output folders and the configuration file. The actions the of setup_project.sh are:

  1. Create virtual python environment: conda create -n baysar python=3.9 --yes
  2. Install the dependencies: pip install -r requirements.txt
  3. Setting up the repo directories: mkdir input, output
  4. Create config.JSON for the user (copy from metadata): cp metadata/config.json config.json
  5. Test repo setup: PYTHONPATH=. pytest

Now the repository is locally set up you can run scripts/main.py which is a template for scripts and modules. To run from the console run PYTHONPATH=. python scripts/main.py, within the virtual environment (conda activate baysar).

How to Contribute

The following steps describe how to add new functionality to the repo:

  1. Raise an issue in this report that describes the functionality you want to add,
  2. branch from dev with the name convention feature\<descriptive-branch-name>
  3. Add code to feature\<descriptive-branch-name>
  4. Create a (draft) pull request with dev as the target (link the PR is the corresponding issue)

In the review the scripts will be reviewed against the coding standards below, passing unit tests that verify the functionality, and updated documentation and tutorials. Assistance can be provided if you are unfamiliar with implementing some of these standards.

Coding Standards

As the code should be easy if not trivial for others to reuse blind there are a series of standards that example scripts need to meet:

isort and black are used to aid code format standardisation. This can be done from the comand line using:

python -m black .
python -m isort .

The configuration for isort and black are in pyproject.toml.

Testing

Unit tests should be written to verify that the examples meet their objectives.
GitHub Actions are used to automate the running of the unit tests as a condition for merging into the main and dev branch.