Skip to main content

Windfarm operations and maintenance cost-benefit analysis tool

Project description

WOMBAT: Windfarm Operations & Maintenance cost-Benefit Analysis Tool

DOI 10.2172/1894867 PyPI version Apache 2.0 Binder Jupyter Book

Pre-commit Black isort

This library provides a tool to simulate the operation and maintenance phase (O&M) of distributed, land-based, and offshore windfarms using a discrete event simultaion framework.

WOMBAT is written around the SimPy discrete event simulation framework. Additionally, this is supported using a flexible and modular object-oriented code base, which enables the modeling of arbitrarily large (or small) windfarms with as many or as few failure and maintenance tasks that can be encoded.

Please note that this is still heavily under development, so you may find some functionality to be incomplete at the current moment, but rest assured the functionality is expanding. With that said, it would be greatly appreciated for issues or PRs to be submitted for any improvements at all, from fixing typos (guaranteed to be a few) to features to testing.

If you use this library please cite our NREL Technical Report:

   @techreport{hammond2022wombat,
      title = {Windfarm Operations and Maintenance cost-Benefit Analysis Tool (WOMBAT)},
      author = {Hammond, Rob and Cooperman, Aubryn},
      abstractNote = {This report provides technical documentation and background on the newly-developed Wind Operations and Maintenance cost-Benefit Analysis Tool (WOMBAT) software. WOMBAT is an open-source model that can be used to obtain cost estimates for operations and maintenance of land-based or offshore wind power plants. The software was designed to be flexible and modular to allow for implementation of new strategies and technological innovations for wind plant maintenance. WOMBAT uses a process-based simulation approach to model day-to-day operations, repairs, and weather conditions. High-level outputs from WOMBAT, including time-based availability and annual operating costs, are found to agree with published results from other models.},
      doi = {10.2172/1894867},
      url = {https://www.osti.gov/biblio/1894867},
      place = {United States},
      year = {2022},
      month = {10},
      institution = {National Renewable Energy Lab. (NREL)},
   }

WOMBAT in Action

There a few Jupyter notebooks to get users up and running with WOMBAT in the examples/ folder, but here are a few highlights:

Note In v0.6 the results will diverge significantly under certain modeling conditions from past versions due to substantial model upgrades on the backend and new/updated features to better specify how repairs are managed.

  • Dinwoodie, et al. replication for wombat can be found in the examples folder <https://github.com/WISDEM/WOMBAT/blob/main/examples/dinwoodie_validation.ipynb>_.
  • IEA Task 26 validation exercise <https://github.com/WISDEM/WOMBAT/blob/main/examples/iea_26_validation.ipynb>_.
  • Presentations: slides <https://github.com/WISDEM/WOMBAT/blob/main/presentation_material/>_.

Setup

Requirements

  • Python 3.8 through 3.10

Note For Python 3.10 users that seek to install more than the base dependencies, it has been noted that pip may take a long time to resolve all of the package requirements, so it is recommended to use the following workflow:

# Enter the source code directory
cd wombat/

# First install the base package requirements
pip install -e .

# Then install whichever additional dependencies are required/desired
pip install -e '.[dev]'  # '.[docs]' or '.[all]'

Environment Setup

Download the latest version of Miniconda for the appropriate OS. Follow the remaining steps for the appropriate OS version.

Using conda, create a new virtual environment:

conda create -n <environment_name> python=3.8 --no-default-packages
conda activate <environment_name>
conda install -c anaconda pip

# activate the environment
conda activate <environment_name>

# to deactivate
conda deactivate

Installation

Pip

pip install wombat

From Source

Install it directly into an activated virtual environment:

git clone https://github.com/WISDEM/WOMBAT.git
cd wombat
python setup.py install

# Alternatively:
pip install .

Usage

After installation, the package can imported:

python
import wombat
wombat.__version__

For further usage, please see the documentation site at https://wisdem.github.io/WOMBAT.

Requirements for Contributing to WOMBAT

Code Contributions

Code contributors should note that there is both an additional dependency suite for running the tests and enabling the pre-commit workflow to automically standardize the core code formatting principles.

git clone https://github.com/WISDEM/WOMBAT.git
cd wombat

# Install the additional dependencies for running the tests and automatic code formatting
pip install -e '.[dev]'

# Enable the pre-commit workflow for automatic code formatting
pre-commit install

# ... contributions and commits ...

# Run the tests and ensure they all pass
pytest tests

Basic pre-commit issues that users might encounter and their remedies:

  • For any failed run, changes may have been either automatically applied or require further edits from the contributor. In either case, after changes have been made, contributors will have to rerun git add <the changed files> and git commit -m <the commit message> to restart the pre-commit workflow with the applied changes. Once all checks pass, the commit is safe to be pushed.
  • isort, black, or simple file checks failed, but made changes
    • rerun the add and commit processes as needed until the changes satisfy the checks
  • pylint or flake8 failed:
    • Address the errors and rerun the add and commit processes
  • mypy has type errors that seem incorrect
    • Double check the typing is in fact as correct as it seems it should be and rerun the add and commit processes
    • If mypy simply seems confused with seemingly correct types, the following statement can be added above the mypy error: assert isinstance(<variable of concern>, <the type you think mypy should be registering>)
    • If that's still not working, but you are definitely sure the types are correct, simply add a # type ignore comment at the end of the line. Sometimes mypy struggles with complex scenarios, or especially with certain attrs conventions.

Documentation Contributions

git clone https://github.com/WISDEM/WOMBAT.git
cd wombat
pip install -e '.[docs]'

Build the site

Note You may want to change the "execute_notebooks" parameter in the docs/_config.yaml file to "off" unless you're updating the coded examples or they will be run every time you build the site.

jupyter-book build docs

View the results: docs/_build/html/index.html

Code and Documentation Contributions

git clone https://github.com/WISDEM/WOMBAT.git
cd wombat
pip install -e '.[all]'

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

wombat-0.9.3.tar.gz (38.4 MB view hashes)

Uploaded Source

Built Distribution

wombat-0.9.3-py3-none-any.whl (7.6 MB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page