but fewer time steps

This commit is contained in:
Valentin Boettcher 2022-01-21 09:27:00 +01:00
parent cf8defd577
commit fe498e5cf5
2 changed files with 2 additions and 2 deletions

View file

@ -23,7 +23,7 @@ This will be tangled into the [[file:config.py][config file]] that can be used w
bcf_terms = 5
g, w = get_ohm_g_w(bcf_terms, s, wc)
integration = IntP(t_max=20, t_steps=int(20 // 0.01))
integration = IntP(t_max=20, t_steps=int(20 // 0.1))
q = qutip.operators.create(max_HO_level) + qutip.operators.destroy(max_HO_level)
p = (qutip.operators.destroy(max_HO_level) - qutip.operators.create(max_HO_level)) / 1j

View file

@ -18,7 +18,7 @@ s = 1
bcf_terms = 5
g, w = get_ohm_g_w(bcf_terms, s, wc)
integration = IntP(t_max=20, t_steps=int(20 // 0.01))
integration = IntP(t_max=20, t_steps=int(20 // 0.1))
q = qutip.operators.create(max_HO_level) + qutip.operators.destroy(max_HO_level)
p = (qutip.operators.destroy(max_HO_level) - qutip.operators.create(max_HO_level)) / 1j