a = tensor(destroy(N), qeye(N))
b = tensor(qeye(N), destroy(N))
H = a*b - a.dag()*b.dag()
for different values of N, such as N = [16, 18, 20, 22, 24, 26].
For the time evolution I have been using:
times = np.linspace(0.0, 10.0, 200)
psi0 = tensor(fock(N,0), fock(N,0))
mesolve(H, psi0, times)
However, for N=24 I get the following error:
qutip.solver.integrator.integrator.IntegratorException: Excess accuracy requested. (Tolerances too small.)