Skip to content
This repository was archived by the owner on Nov 21, 2023. It is now read-only.

Commit a53c283

Browse files
authored
Add files via upload
1 parent 6aed572 commit a53c283

File tree

9 files changed

+3195
-0
lines changed

9 files changed

+3195
-0
lines changed

README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Code for the paper "Physical interactions in non-ideal fluids promote Turing patterns"
2+
3+
This repository contains code for the following paper:
4+
```
5+
Physical interactions in non-ideal fluids promote Turing patterns
6+
Lucas Menou, Chengjie Luo, and David Zwicker
7+
J. R. Soc. Interface  XX  2023XXXX  (2023).
8+
```
9+
10+
Link: https://doi.org/XXXXX
11+
12+
Arxiv version: https://arxiv.org/abs/2302.12521
13+
14+
15+
Installation
16+
------------
17+
18+
Please clone the package from github and install all required python packages using `pip`:
19+
20+
```bash
21+
git clone https://github.com/zwicker-group/paper-non-ideal-turing-patterns
22+
pip install -r paper-non-ideal-turing-patterns/requirements.txt
23+
```
24+
25+
Examples
26+
--------
27+
28+
Jupyter notebook `simulation_single.ipynb` includes 1D and 2D simulations for the model in the paper.

phasesep/__init__.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
"""
2+
python code for studying phase separation using numerical simulations.
3+
4+
.. codeauthor:: David Zwicker <david.zwicker@ds.mpg.de>
5+
"""
6+
7+
from pde.fields import *
8+
from pde.grids import *
9+
from pde.solvers import *
10+
from pde.storage import *
11+
from pde.trackers import *
12+
from pde.visualization import *
13+
14+
from .free_energies import *
15+
from .pdes import *
16+
from .reactions import *

0 commit comments

Comments
 (0)