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 python3We recommend using a python virtual environment to install the dependencies, which you can create using:
python3 -m venv envYou can then "activate" the environment using:
source env/bin/activateFinally, install the dependencies listed in the requirements.txt file:
pip install -r requirements.txt