Skip to content

Commit a972f33

Browse files
emmacwareslayoo
andauthored
add comparison with simulation using DustPy in the additive_coag_comparison notebook (only on Linux and macOS) (#419)
Co-authored-by: Sylwester Arabas <[email protected]>
1 parent 31c63b6 commit a972f33

File tree

5 files changed

+368
-56
lines changed

5 files changed

+368
-56
lines changed

.github/workflows/buildwheels.yml

+6
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ jobs:
8787
runs-on: ${{ matrix.os }}
8888
name: Run example notebooks on ${{ matrix.os }}
8989
strategy:
90+
fail-fast: false
9091
matrix:
9192
os: [ubuntu-latest, ubuntu-24.04-arm, macos-13, macos-latest, windows-latest]
9293

@@ -105,6 +106,11 @@ jobs:
105106
name: dist-${{matrix.os}}-${{matrix.manylinux}}
106107
path: dist
107108

109+
# install fortran compiler needed by dustpy
110+
- if: startsWith(matrix.os, 'macos-')
111+
run: |
112+
brew reinstall gcc
113+
108114
- run: |
109115
temp=`find dist/ -name "*cp313*.whl"`
110116
python -m pip install $temp[examples]

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
examples/tmp*.pdf
2+
examples/tmp*.svg
3+
examples/tmp*.gif

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ pip install PyPartMC[examples]
9191
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/open-atmos/PyPartMC/blob/main/examples/cloud_parcel.ipynb)
9292
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/open-atmos/PyPartMC.git/main?urlpath=lab/tree/examples/cloud_parcel.ipynb)
9393
[![ARM JupyterHub](https://img.shields.io/static/v1?label=launch%20in&logo=jupyter&color=lightblue&message=ARM+JupyterHub)](https://jupyterhub.arm.gov/hub/user-redirect/git-pull?repo=https%3A//github.com/open-atmos/PyPartMC&branch=main&urlPath=)
94-
- Coagulation Model Intercomparison with PySDM, Droplets.jl:
94+
- Coagulation model intercomparison for additive (Golovin) kernel with: PyPartMC, [PySDM](https://open-atmos.github.io/PySDM), [Droplets.jl](https://github.com/emmacware/droplets.jl) and [dustpy](https://stammler.github.io/dustpy/):
9595
[![View notebook](https://img.shields.io/static/v1?label=render%20on&logo=github&color=87ce3e&message=GitHub)](https://github.com/open-atmos//PyPartMC/blob/main/examples/additive_coag_comparison.ipynb)
9696
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/open-atmos/PyPartMC/blob/main/examples/additive_coag_comparison.ipynb)
9797
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/open-atmos/PyPartMC.git/main?urlpath=lab/tree/examples/additive_coag_comparison.ipynb)

0 commit comments

Comments
 (0)