A tool to model the bath relaxation dynamics of open quantum systems by Lindblad and Hierarchical Equations of Motion (HEOM) approaches.
* Currently: PhD Student, Lab COSMO, EPFL.
October 2022: Users will soon be able to define their own system using a custom Hamiltonian and plot its EET dynamics - stay tuned!
11 April 2022: quantum_HEOM was used to generate training data for a trajectory learning ‘AI-QD’ approach to predicting energy transfer dynamics in a recent paper in Nature Communications:
Predicting the future of excitation energy transfer in light-harvesting complex with artificial intelligence-based quantum dynamics, A. Ullah, P.O. Dral, Nat Commun, 13, 1930, (2022). DOI: 10.1038/s41467-022-29621-w
The author’s master’s thesis can be (preferentially) cited as:
Quantum Dynamics of Bath Influenced Excitonic Energy Transfer in Photosynthetic Pigment-Protein Complexes, J.W. Abbott, University of Bristol, 2020. DOI: 10.5281/zenodo.7229807
and this Python package as:
quantum_HEOM (github.com/jwa7/quantum_HEOM), J.W. Abbott, 2022, DOI: 10.5281/zenodo.7230160
With high control over input parameters and interactable in notebooks via ‘black-boxed’ code written in Python, quantum_HEOM allows the bath-influenced excitonic energy transfer dynamics of open quantum systems to be calculated and plotted. Users can simulate EET for in-built model systems, namely a 2-site spin-boson system or the 7-site FMO complex. For describing the dynamics, three different forms of the Lindblad quantum master equation are implemented, while simulation of dynamics using the Hierarchical Equations of Motion (HEOM) approach is performed by interfacing with QuTiP‘s HEOM solver class.
This package was initially produced as part of the author’s final year MSci project, supervised by Fred Manby, at the University of Bristol in 2020, and accompanies his thesis entitled “Quantum Dynamics of Bath Influenced Excitonic Energy Transfer in Photosynthetic Pigment-Protein Complexes”. Users can easily reproduce figures from this thesis, as well as define their own parameters and plot the dynamics. After completing the installation instructions below, the short tutorials can be followed to best show the functionality of the package.
All life on Earth relies on the ability of photosynthetic organisms to efficiently harvest and trap energy from sunlight. Acting as a molecular wire, a protein-pigment complex known as the Fenna-Matthews-Olson (FMO) complex found in green sulfur bacteria mediates the transfer of photo-excitation energy between the photosynthetic antennae complex, where energy is harvested, and the reaction centre, where it is trapped.
The fine balance between intra-system and system-bath couplings present in the FMO complex allows it to perform unidirectional quantum coherence excitonic energy transfer (EET) with an almost unit quantum yield. Using coherent theories, quantum dynamical treatment of the bath-influenced EET process can simulate, in silico, coherence effects that have been observed experimentally. The celebrated hierarchical equations of motion (HEOM) approach, based on a path integral formalism, accurately describes EET dynamics and successfully accounts for non-equilibrium and non-Markovian effects. Though exact, with very few assumptions made about the dynamics or state of the system, HEOM is computationally very expensive for large systems.
This motivates the use of a quantum master equation, such as the Lindblad equation formed under the Markov approximation, as an alternative and cheaper description of EET. One such Lindblad model, in agreement with the HEOM approach and experiment, is particularly effective in describing the EET dynamics in the FMO complex despite the minimal computational cost.
NOTE: These set-up instructions have only been tested on macOS and may not work on Windows.
Copy the following commands
into your computer’s terminal application (or equivalent) and execute them.
Clone the quantum_HEOM repository in your computer’s terminal (or equivalent) application:git clone https://github.com/jwa7/quantum_HEOM.git
Enter the top directory of the quantum_HEOM package:cd quantum_HEOM
Create a virtual environment from the specification yaml file. This environment will contain all external package dependencies (i.e. numpy, scipy, QuTiP, matplotlib, etc.) relied upon by quantum_HEOM:conda env create -f environment.yml
Enter the virtual environment:conda activate qheom
Install the environment as a ipython kernel. This allows jupyter notebooks to be executed from within the virtual environment:ipython kernel install --name=qheom
Run all unit tests. All of these should pass if the package is working as it should. If something is wrong, please raise an issue here.chmod +x run_tests.sh && ./run_tests.sh
In the quantum_HEOM/doc/tutorials/
directory, there exists the following tutorials:
To launch the tutorials:
qheom
virtual environment (see Installation above).quantum_HEOM/doc/tutorials/
directory.jupyter notebook 3_example_plots.ipynb &
The models used to describe open quantum system dynamics currently implemented in quantum_HEOM are (see also the References below):
There are some restrictions on some of the settings used in relation to their compatability with others:
Lindblad models:
Local dephasing and global thermalising: S. B. Worster, C. Stross, F. M. W. C. Vaughan, N. Linden and F. R. Manby, Journal of Physical Chemistry Letters, 2019, 10, 7383–7390
Global thermalising: M. Ostilli and C. Presilla, Physical Review A, 2017, 95, 1–9
Local thermalising: M. Mohseni, P. Rebentrost, S. Lloyd and A. Aspuru-Guzik, The Journal of Chemical Physics, 2008, 129, 174106
HEOM:
Spectral Density:
FMO Complex:
Other:
Problem:
ModuleNotFoundError: No module named 'quantum_heom'
Solution:
Whether working in an ipython kernel or a jupyter notebook, ensure you are working from a directory within the quantum_HEOM top directory, and run the following codeblock:
import os
import sys
ROOT_DIR = os.getcwd()[:os.getcwd().rfind('quantum_HEOM')]
if ROOT_DIR not in sys.path:
sys.path.append(ROOT_DIR + 'quantum_HEOM')
The quantum_HEOM module should now be in your path. Import modules using this as the top directory. For example, to import the QuantumSystem class from the quantum_HEOM/quantum_heom/quantum_system
module, run the import with the following syntax:
from quantum_heom.quantum_system import QuantumSystem
or to import the figures module:
from quantum_heom import figures as figs
Problem:
The option for the qheom
virtual environment cannot be found in the toolbar of the jupyter notebook at ‘Kernel’ > ‘Change Kernel’ > ‘qheom’.
Solution:
In your computer’s terminal application, ensure you are in the qheom
virtual environment using source activate qheom
or conda activate qheom
Execute the following command:ipython kernel install --name=qheom