This is an example repository showing how to use both PyBaMM and Pints to perform inference on an complex PDE model in electrochemistry.
This repository requires python3, which you can obtain on a debian-based Linux
distribution using apt
:
sudo apt install python3
We recommend using a python virtual environment to install the dependencies, which you can create using:
python3 -m venv env
You can then "activate" the environment using:
source env/bin/activate
Finally, install the dependencies listed in the requirements.txt
file:
pip install -r requirements.txt