-
Notifications
You must be signed in to change notification settings - Fork 31
Description
The Bloch-Redfield master equation is one of the foundamental time-local EOM in open quantum system, which considers only the Born-Markov approximation.
Consider the interaction Hamiltonian between the system and environment, which is given by
where
where
Thus, to align with brmesolve in Python QuTiP, the followings should be implemented:
- function
brterm: the contribution of one coupling operator (specific$\alpha$ ) to the Bloch-Redfield tensor. - function
bloch_redfield_tensor: Constructs the entire Bloch-Redfield tensor as a singleSuperOperator. - function
brmesolve: The solver which solves the time evolution based on Bloch-Redfield tensor. - the docstrings for the above functions
- Corresponding runtests for the above functions
Note that the function names, argument names, argument orders, and user experience should all align with Python QuTiP.