Skip to content

Commit cf06da4

Browse files
Update readme with new demo links
1 parent c665742 commit cf06da4

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

README.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ The `graphnics` library solves network models using the finite element method. T
1212
## Demos
1313

1414
- [Introduction to `Graphnics`](https://github.com/IngeborgGjerde/graphnics/blob/main/demo/Graphnics%20demo.ipynb).
15+
- [Pulsatile flow in rat tumour vasculature](https://github.com/IngeborgGjerde/graphnics/blob/main/demo/Pulsatile%20flow%20on%20a%20real%20vascular%20network.ipynb)
16+
- [Vasomotion in arterial trees](https://github.com/IngeborgGjerde/graphnics/blob/main/demo/Vasomotion%20in%20arterial%20trees.ipynb)
1517
- [Solving coupled 3d-1d network models](https://github.com/IngeborgGjerde/graphnics/blob/main/demo/Coupled%201d-3d.ipynb) using `fenics_ii`
1618

1719
## Installation
@@ -20,16 +22,20 @@ We use `networkx` combined with the mixed-dimensional library [`fenics_ii`](http
2022
The environment is provided as a docker container. The container can be built and run locally by executing
2123

2224
```shell
23-
git clone https://github.com/IngeborgGjerde/fenics-networks/
24-
cd fenics-networks
25-
docker build --no-cache -t graphnics .
25+
git clone https://github.com/IngeborgGjerde/graphnics/
26+
cd graphnics/docker
27+
docker build --no-cache -t graphnics . # build docker image
28+
cd ..
29+
30+
# make container
2631
docker run --name graphnics-container -v "$(pwd):/home/fenics/shared" -d -p 127.0.0.1:8888:8888 fenics-networks 'jupyter-notebook --ip=0.0.0.0'
2732
```
2833

2934
You can then enter the container by running
3035
```shell
31-
docker exec -it graphncis-container /bin/bash
36+
docker exec -it graphnics-container /bin/bash
3237
```
38+
3339
To connect it to a jupyter notebook, run
3440
```shell
3541
docker logs graphnics-container

0 commit comments

Comments
 (0)