Skip to content

Latest commit

 

History

History
57 lines (31 loc) · 3.96 KB

dynamical_model.md

File metadata and controls

57 lines (31 loc) · 3.96 KB

Lindblad dynamics

The state of an open quantum system is defined by a density matrix . In the case where the system is made of qubits (two-level systems), the Hilbert space has dimension 2^N (and the density matrix is 2^N by 2^N in size).

The time-evolution of the system coupled to a Markovian environment (a memory-less bath) is often described using the Lindblad master equation,

where denotes the commutator of two operators.

The first term in the equation above generates the unitary evolution due to interactions and coherent terms in the Hamiltonian, while the second term (sometimes known as the dissipator, or Lindbladian) is a superoperator that accounts for incoherent dephasing and relaxation processes due to the environment.

The simulator

The solver integrates numerically the dynamics in fixed time steps , to obtain a solution to the master equation as a function of time. A Trotter expansion of (up-to) the fourth order in the time step is being employed. The solver is based on matrix product states (MPS) and matrix product operators (MPO).

The Model

The solver can model interacting qubits in a lattice with an arbitrary connectivity1 defined by the user.

The simulator uses a fixed Hamiltonian with coefficients which can be defined by the user. The Hamiltonian is defined in the rotating frame with respect to the frequency of a drive of a uniform frequency applied to all qubits (which are not necessarily identical themselves, however, and may be driven at different amplitudes and phases), or not driven at all. The Hamiltonian is represented as the sum of on-site terms and an interaction part,

with the interaction being,

where

are the Pauli matrices at each site and

are the ladder operators.

The Lindbladian used in the simulator is also fixed with coefficients that can be defined by the user. It is represented as a sum of three terms,

The first two terms model exchange with a thermal bath:

and the last term models pure dephasing in xy plane,

Footnotes

  1. Note however that the computing ressources needed to accurately simulate the system can strongly depend on this connectivity.