From 0f5c401002e31166068f112fa6593b7c521a5ca8 Mon Sep 17 00:00:00 2001 From: Valentin Boettcher Date: Tue, 15 Mar 2022 10:26:24 +0100 Subject: [PATCH] update 01 config --- .../energy_flow_proper/01_zero_temperature/config.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/python/energy_flow_proper/01_zero_temperature/config.py b/python/energy_flow_proper/01_zero_temperature/config.py index 79ba1e5..6ecd914 100644 --- a/python/energy_flow_proper/01_zero_temperature/config.py +++ b/python/energy_flow_proper/01_zero_temperature/config.py @@ -7,11 +7,11 @@ import numpy as np import hops.util.matrixLib as ml from stocproc import StocProc_FFT -wc = 5 +wc = 2 s = 1 # The BCF fit -bcf_terms = 6 +bcf_terms = 5 g, w = get_ohm_g_w(bcf_terms, s, wc) integration = IntP(t_max=30, t_steps=int(30 // 0.01)) @@ -21,7 +21,7 @@ system = SysP( psi0=np.array([0, 1]), g=g, w=w, - bcf_scale=0.8, + bcf_scale=0.5, T=0, ) @@ -33,7 +33,7 @@ params = HIParams( normalized_by_hand=True, result_type=ResultType.ZEROTH_AND_FIRST_ORDER, truncation_scheme=TruncationScheme_Power_multi.from_g_w( - g=g, w=w, p=1, q=0.5, kfac=1.4 + g=.5 * g, w=w, p=1, q=0.5, kfac=1.7 ), ), Eta=StocProc_FFT( @@ -48,8 +48,8 @@ params = HIParams( wc, ), t_max=integration.t_max, - intgr_tol=1e-3, - intpl_tol=1e-3, + intgr_tol=1e-5, + intpl_tol=1e-5, negative_frequencies=False, ), EtaTherm=None,