Skip to content

Commit

Permalink
#2 add starter code to publish
Browse files Browse the repository at this point in the history
  • Loading branch information
martinjrobins committed Aug 31, 2019
1 parent c6cfef6 commit 6290478
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions 12_c_plus_plus_and_python/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
all: lectures_00_intro_compilation practical_day_1
all: practical

lectures_dir = lectures
practicals_dir = practicals
Expand All @@ -17,7 +17,7 @@ lectures%:${lectures_dir}/lectures%.md
project%:${projects_dir}/project%.md
pandoc -f markdown$(extensions) $(pdf_template) $^ -o ${publish_dir}/$@.pdf

practical%:${practicals_dir}/practical%.md
practical:${practicals_dir}/practical.md
pandoc -f markdown$(extensions) $(pdf_template) $^ -o ${publish_dir}/$@.pdf

clean:
Expand Down
6 changes: 3 additions & 3 deletions 12_c_plus_plus_and_python/practicals/practical.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ link-citations: true

This practical uses a model of cell diffusion and excluded volume interaction. It is not
required that you understand the details of the model, as it is implemented for you in
the file `excluded_volume_diffusion.py`. The purpose of this practical is to profile and
increase the efficiency of the model using numpy vectorisation and C++. The details of
the model are provided below.
the python module contain in the `cell_model` directory. The purpose of this practical
is to profile and increase the efficiency of the model using numpy vectorisation and
C++. The details of the model are provided below.

The model consists of a set of $N$ cells in a periodic unit square domain. Let
$\bfX_i(t)$ denote the position of the $i$th particle in $\Omega \subset \mathbb R^2$.
Expand Down
Empty file.
1 change: 1 addition & 0 deletions 12_c_plus_plus_and_python/publish/cell_model

0 comments on commit 6290478

Please sign in to comment.