Metadata-Version: 2.4
Name: ladim_plugins
Version: 2.10.0
Summary: Plugins for LADiM
Home-page: https://github.com/pnsaevik/ladim_plugins
Author: Pål Næverlid Sævik
Author-email: paal.naeverlid.saevik@hi.no
License: MIT
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: cftime
Requires-Dist: jinja2
Requires-Dist: ladim
Requires-Dist: netCDF4
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: pydap
Requires-Dist: pyarrow
Requires-Dist: pyproj
Requires-Dist: pytest
Requires-Dist: pyyaml
Requires-Dist: requests
Requires-Dist: scipy
Requires-Dist: skyfield
Requires-Dist: triangle
Requires-Dist: xarray
Dynamic: license-file

# Plugins for LADiM
This repository contains plugins for the _Lagrangian Advection and Diffusion
Model_ (LADiM), which is the particle tracking software used at the Institute
of Marine Research (IMR).
([https://github.com/bjornaa/ladim](https://github.com/bjornaa/ladim)) 

Documentation and examples are provided for each model.

## List of available plugins

| Name                                         | Description                                                      |
|----------------------------------------------|------------------------------------------------------------------|
| [chemicals](ladim_plugins/chemicals)         | Passive tracer                                                   |
| [egg](ladim_plugins/egg)                     | Buoyant fish eggs                                                |
| [lunar_eel](ladim_plugins/lunar_eel)         | Glass eels with lunar compass                                    |
| [nk800met](ladim_plugins/nk800met)           | Module for utilizing forcing data from the met.no thredds server |
| [release](ladim_plugins/release)             | General module for creating release files                        |
| [salmon_lice](ladim_plugins/salmon_lice)     | Salmon lice larvae                                               |
| [sandeel](ladim_plugins/sandeel)             | Sand eel larvae                                                  |
| [sedimentation](ladim_plugins/sedimentation) | Sinking particles                                                |
| [utils](ladim_plugins/utils)                 | General utility functions for IBMs                               |


## Installation

Install using the following command

```
pip install ladim_plugins
```

The installation can be tested with the command
```
pytest -Wignore --pyargs ladim_plugins
``` 
This command will run ladim on each of the plugins, using the sample `ladim.yaml`
and `particle.rls` files found in the subpackage folders. The tests succeed if
`ladim` is present on the system, `ladim_plugins` is installed correctly, and the
output from the ladim runs matches exactly with the `out.nc` files found in the
subpackage folders. 


## Usage

1. Copy `ladim.yaml` and `particle.rls` from the IBM subpackage of interest
   into the working directory. 
2. Make desired changes to the `yaml` and `rls` files. More detailed
   instructions are found in the `README.md` file within the subpackage.
3. Run `ladim` and the output is written to `out.nc`. 


## Contribute

To add new plugins, contact the maintainer of the `ladim_plugins` repository. A
properly structured IBM subpackage has the following ingredients:

1. A file `__init__.py` containing the statement `from .ibm import IBM`
2. The IBM module itself, named `ibm.py`
3. A `README.md` file containing instructions for use
4. A simple test example. This includes a `ladim.yaml` configuration file,
   a `particles.rls` release file, a `forcing.nc` forcing file (may be
   copied from another subpackage), and a ladim output file named `out.nc`.
5. Optionally a test example for generating release files. This includes a
   `release.yaml` configuration file and an output release file named
   `out.rls`.
6. Optionally additional automated test modules, named `test_*.py`

An ideal test example should be quick to run and easy to analyze, 
but still be complicated enough to demonstrate most
capabilities of the IBM model. To achieve this, it may be a good idea to use
only a few time steps and a few particles at selected positions. In some cases
it may also be necessary to specify somewhat unrealistic particle parameters
to demonstrate certain features.

The test is run using the command `pytest -Wignore --pyargs ladim_plugins`. The
test succeeds if ladim is able to run the examples, and the output matches the
contents of `out.nc` / `out.rls`.
