update 01 config

This commit is contained in:
Valentin Boettcher 2022-03-15 10:26:24 +01:00
parent e345b2df37
commit 0f5c401002

View file

@ -7,11 +7,11 @@ import numpy as np
import hops.util.matrixLib as ml import hops.util.matrixLib as ml
from stocproc import StocProc_FFT from stocproc import StocProc_FFT
wc = 5 wc = 2
s = 1 s = 1
# The BCF fit # The BCF fit
bcf_terms = 6 bcf_terms = 5
g, w = get_ohm_g_w(bcf_terms, s, wc) g, w = get_ohm_g_w(bcf_terms, s, wc)
integration = IntP(t_max=30, t_steps=int(30 // 0.01)) integration = IntP(t_max=30, t_steps=int(30 // 0.01))
@ -21,7 +21,7 @@ system = SysP(
psi0=np.array([0, 1]), psi0=np.array([0, 1]),
g=g, g=g,
w=w, w=w,
bcf_scale=0.8, bcf_scale=0.5,
T=0, T=0,
) )
@ -33,7 +33,7 @@ params = HIParams(
normalized_by_hand=True, normalized_by_hand=True,
result_type=ResultType.ZEROTH_AND_FIRST_ORDER, result_type=ResultType.ZEROTH_AND_FIRST_ORDER,
truncation_scheme=TruncationScheme_Power_multi.from_g_w( 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( Eta=StocProc_FFT(
@ -48,8 +48,8 @@ params = HIParams(
wc, wc,
), ),
t_max=integration.t_max, t_max=integration.t_max,
intgr_tol=1e-3, intgr_tol=1e-5,
intpl_tol=1e-3, intpl_tol=1e-5,
negative_frequencies=False, negative_frequencies=False,
), ),
EtaTherm=None, EtaTherm=None,