Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add tutorial (basic numpy-only implementation) #425

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .binder/postBuild
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

set -e
shopt -s extglob
rm -rfv !("examples")
rm -rfv !("examples"|"tutorials")
13 changes: 13 additions & 0 deletions tutorials/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# PyMPDATA tutorials

PyMPDATA tutorial notebooks are designed to introduce users to the basics of MPDATA and related concepts.
Each tutorial includes introductory information and a simple code example where the user can explore how simulation
results depend on various parameter values.
These notebooks are designed for an introductory numerical modelling course for advanced undergraduate and graduate students.

### Minimal MPDATA implementation using NumPy (no dependence on PyMPDATA)
A simple example depicting how basic MPDATA (1D) can be implemented using NumPy
- [![View notebook](https://img.shields.io/static/v1?label=render%20on&logo=github&color=87ce3e&message=GitHub)](https://github.com/open-atmos/PyMPDATA/tree/tutorial/tutorials/numpy_only_basic_mpdata.ipynb)
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/open-atmos/PyMPDATA.git/tutorial?urlpath=lab/tree/tutorials/numpy_only_basic_mpdata.ipynb)
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/open-atmos/PyMPDATA/blob/tutorial/tutorials/numpy_only_basic_mpdata.ipynb)

Loading
Loading