Skip to content
Gaute Hope edited this page Oct 31, 2019 · 103 revisions

Image

OpenDrift is a software for modeling the trajectories and fate of objects or substances drifting in the ocean, or even in the atmosphere.

OpenDrift is open source, and is programmed in Python. As the software is very generic, it is rather a "framework" than a "trajectory model" in the traditional sense. Trajectory models for specific purposes (e.g. oil drift, search and rescue, larvae drift etc) may reuse all common functionality from the core model, and need only implement a Python Class describing the purpose-specific processes (physics/biology etc). See Requirements and Data model for more detailed information.

A journal paper about OpenDrift is published in Geoscientific Model Development. A paper describing the technical details of the oil spill module OpenOil is published in Ocean Science.

OpenDrift animation

Some key features:

  • Open source, GPL v2 license, providing full transparency - no black boxes
  • Platform independent, runs on Linux, Mac/OS X, Windows
  • Python2 and Python3 compliant
  • Fast - typical simulation time is ~30 seconds for a 66 hour simulation with 1000 particles
  • Modular, may simulate transport and fate of any kind of of particles (oil, ships, persons, icebergs etc.)
    • Simple to make new modules, based on existing modules or blank template
  • May use input forcing data (e.g. current, wind and waves) from any model, in any file format and any map projection
    • avoids need to preprocess driver data
    • map reprojection and vector rotation performed on-the-fly, using PyProj library
    • may use input forcing from remote datasets (e.g. Thredds)
  • May use backup driver models (e.g. current, wind, waves) for robustness if first choice is not available
  • May run backwards in time by simply specifying a negative time step
  • Output saved to CF-compliant netCDF files (but export modules may be written for other formats).
  • Basic graphical user interface (presently supports only OpenOil and Leeway)
  • Input from ensemble models

Disclaimer

OpenDrift is under active development, and issues may occur. Please submit a bug report if you encounter a problem.

Installation

There are currently two active branches of OpenDrift, stable which supports Python 2, and master which will soon loose Python 2 support.

OpenDrift can be installed through PyPA, conda or directly from the source repository. The latter is preferred if you expect to make changes to the OpenDrift models or code base.

PyPA

Consider setting up an exclusive virtual environment for OpenDrift.

$ pip install opendrift
$ pip install gitpython
$ pip install git+https://github.com/OpenDrift/OilLibrary@3f65a60fd4543a8b772622c245b4b3c25d4b8f38

Conda

  1. Install miniconda3
  2. Set up environment and install OpenDrift:
$ conda env create -n opendrift -c opendrift -c conda-forge -c noaa-orr-erd python=3 opendrift

Directly from source

  1. Check out source
$ git clone https://github.com/OpenDrift/opendrift.git
  1. Use either conda or pip to install dependencies (including the NOAA ADIOS OilLibrary):

conda:

$ conda env create --file conda_python3.yml 

pip:

$ pip install -r requirements.txt
  1. Install OpenDrift locally:
$ pip install -e . # from source root

Example scripts

For a demonstration of various capabilities, run some of the executable example scripts located in the subfolder examples. Some of the scripts use sample netCDF files provided in the test_data folder, and others obtain data from online resources (Thredds). If this works well, you may play with the model by editing the example scripts.

Here is a detailed explanation of the steps involved when running the model.

Running tests

If you installed OpenDrift from source you can test that everything works as expected by running the script testall in the root folder.

The last line of the output should report that all tests have been executed successfully.

License

OpenDrift is licensed under GPL v2.0

Citation

If you have found OpenDrift useful for your study, please cite it as:

Dagestad, K.-F., Röhrs, J., Breivik, Ø., and Ådlandsvik, B.: OpenDrift v1.0: a generic framework for trajectory modelling, Geosci. Model Dev., 11, 1405-1420, https://doi.org/10.5194/gmd-11-1405-2018, 2018.

For the oil spill module OpenOil, please cite in addition to above:

Röhrs, J., Dagestad, K.-F., Asbjørnsen, H., Nordam, T., Skancke, J., Jones, C. E., and Brekke, C.: The effect of vertical mixing on the horizontal drift of oil spills, Ocean Sci., 14, 1581-1601, https://doi.org/10.5194/os-14-1581-2018, 2018.

Contact

Please create an issue or contact knutfd@met.no for any questions.

Click here if you want to receive emails about important changes or releases.

Clone this wiki locally