try new config

This commit is contained in:
Valentin Boettcher 2022-02-08 12:10:45 +01:00
parent 7b353bbd03
commit d201c4f2b4

View file

@ -10,7 +10,7 @@ from stocproc import StocProc_FFT
np.__config__.blas_opt_info = np.__config__.blas_ilp64_opt_info # fix for qutip
import qutip
max_HO_level = 6
max_HO_level = 8
wc = 2
s = 1
Ω = 1
@ -21,7 +21,7 @@ s = 1
bcf_terms = 4
g, w = get_ohm_g_w(bcf_terms, s, wc)
integration = IntP(t_max=40, t_steps=int(40 // 0.1))
integration = IntP(t_max=10, t_steps=int(10 // 0.1))
q_proto = qutip.operators.create(max_HO_level) + qutip.operators.destroy(max_HO_level)
p_proto = (
@ -63,7 +63,7 @@ params = HIParams(
nonlinear=True,
result_type=ResultType.ZEROTH_AND_FIRST_ORDER,
truncation_scheme=TruncationScheme_Power_multi.from_g_w(
g=system.g, w=system.w, p=[1, 1], q=[0.5, 0.5], kfac=[1.6, 1.6]
g=system.g, w=system.w, p=[1, 1], q=[0.5, 0.5], kfac=[1.7, 1.7]
),
save_therm_rng_seed=True,
),
@ -88,8 +88,8 @@ params = HIParams(
),
alpha=hops_bcf,
t_max=integration.t_max,
intgr_tol=1e-5,
intpl_tol=1e-5,
intgr_tol=1e-4,
intpl_tol=1e-3,
negative_frequencies=False,
),
],
@ -102,8 +102,8 @@ params = HIParams(
s, 1, wc, beta=1 / system.__non_key__["T"][0]
),
t_max=integration.t_max,
intgr_tol=1e-5,
intpl_tol=1e-5,
intgr_tol=1e-4,
intpl_tol=1e-3,
negative_frequencies=False,
),
None,