NAWEA WindTech 2023 WOMBAT Tutorial#
What You'll Need#
Code editor (VSCode is what I use and therefore recommend)
Working python environment (Miniconda is my preference because it's lightweight)
Basic git proficiency (we just need to clone a project and change branches)
Basic terminal proficiency (or Windows alternative)
Basic Python proficiency (WOMBAT requires very little code, but you still need to use Python)
Slides and Data#
Just note that the spoken commentary is not included, but the materials to drive that content are all included in the slides with links to the appropriate documentation pages and the relevant screenshots so that participants can track down the required data in the COREWIND publications more easily.
Pre-Workshop Setup#
Create a new Python environment (conda instructions)
conda create -n wombat_workshop python=3.10 conda config --set pip_interop_enabled true
Download WOMBAT from GitHub
git clone https://github.com/WISDEM/WOMBAT.git
Install WOMBAT as an editable package
conda activate wombat_workshop # or what you called in the first step cd wombat/ pip install -e .
Ensure that it all worked (assuming no error messages at any of the prior stages)
python >>> import wombat >>> wombat.__version__