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)},
}
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 theexamples 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/>
_.
- 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]'
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
pip install wombat
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 .
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.
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>
andgit 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
andcommit
processes as needed until the changes satisfy the checks
- rerun the
pylint
orflake8
failed:- Address the errors and rerun the
add
andcommit
processes
- Address the errors and rerun the
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
andcommit
processes - If
mypy
simply seems confused with seemingly correct types, the following statement can be added above themypy
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. Sometimesmypy
struggles with complex scenarios, or especially with certainattrs
conventions.
- Double check the typing is in fact as correct as it seems it should be and rerun the
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_notebook" parameter in the
conf.py
file to "off" unless you're updating the coded examples or they will be run every time you build the site.
cd docs/
sphinx-build -b html source _build && make html
View the results: docs/_build/html/index.html
git clone https://github.com/WISDEM/WOMBAT.git
cd wombat
pip install -e '.[all]'