Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 684 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 684 Bytes

This code was used to generate the results in arXiv:1502.06959 - Time-delayed quantum feedback control.

Requirements: QuTiP and all it's requirements (see qutip.org).

Explanation of files in repository:

example.py - example file for running a simulation of a two-level atom coupled to a feedback loop. cascade.py - main module that builds the generator for the cascaded master equation, and integrates it. tnintegrate_c.pyx - some cython functions for greater speed

Example usage:

In python prompt:

from qutip import *
from pylab import *
import example
times,sol = example.run()
plot(times,expect(sol,sigmap()*sigmam())
show()