Minor change
This commit is contained in:
parent
df1600cc6f
commit
fcc1d97e7b
|
|
@ -6,9 +6,10 @@ include("../berggren.jl")
|
||||||
|
|
||||||
println("No of threads = ", Threads.nthreads())
|
println("No of threads = ", Threads.nthreads())
|
||||||
|
|
||||||
atol = 10^-5
|
training_c = [2.0, 1.9, 1.8]
|
||||||
maxevals = 10^5
|
extrapolating_c = 0.0 : 0.2 : 1.2
|
||||||
R_cutoff = 16
|
|
||||||
|
training_ref = -0.72763 # complete list not needed because identification is simple
|
||||||
|
|
||||||
exact_ref = reverse([4.076662025307587-0.012709842443350328im,
|
exact_ref = reverse([4.076662025307587-0.012709842443350328im,
|
||||||
3.613318119833891-0.007335804709990623im,
|
3.613318119833891-0.007335804709990623im,
|
||||||
|
|
@ -23,6 +24,10 @@ m = 1.0
|
||||||
Va_of_r(r) = 2 * exp(-(r-3)^2 / (1.5)^2)
|
Va_of_r(r) = 2 * exp(-(r-3)^2 / (1.5)^2)
|
||||||
Vb_of_r(r) = -exp(-(r/3)^2)
|
Vb_of_r(r) = -exp(-(r/3)^2)
|
||||||
|
|
||||||
|
atol = 10^-5
|
||||||
|
maxevals = 10^5
|
||||||
|
R_cutoff = 16
|
||||||
|
|
||||||
# due to Jacobi coordinates
|
# due to Jacobi coordinates
|
||||||
μ1 = m * 1/2
|
μ1 = m * 1/2
|
||||||
μ2 = m * 2/3
|
μ2 = m * 2/3
|
||||||
|
|
@ -82,10 +87,7 @@ display(test_evals)
|
||||||
Es = n1s = l1s = n2s = l2s = mask1 = mask2 = T1 = T2 = V1_cache = V_relative_cache = V1 = V_relative = U = V2 = nothing
|
Es = n1s = l1s = n2s = l2s = mask1 = mask2 = T1 = T2 = V1_cache = V_relative_cache = V1 = V_relative = U = V2 = nothing
|
||||||
GC.gc()
|
GC.gc()
|
||||||
|
|
||||||
current_E = -0.72763
|
current_E = training_ref
|
||||||
|
|
||||||
training_c = [2.0, 1.9, 1.8]
|
|
||||||
extrapolating_c = 0.0 : 0.2 : 1.2
|
|
||||||
|
|
||||||
exact = ComplexF64[]
|
exact = ComplexF64[]
|
||||||
training = ComplexF64[]
|
training = ComplexF64[]
|
||||||
|
|
|
||||||
|
|
@ -6,10 +6,6 @@ include("../berggren.jl")
|
||||||
|
|
||||||
println("No of threads = ", Threads.nthreads())
|
println("No of threads = ", Threads.nthreads())
|
||||||
|
|
||||||
atol = 10^-5
|
|
||||||
maxevals = 10^5
|
|
||||||
R_cutoff = 16
|
|
||||||
|
|
||||||
training_c = [1.1, 0.9, 0.7, 0.5]
|
training_c = [1.1, 0.9, 0.7, 0.5]
|
||||||
extrapolating_c = 0.0 : 0.2 : 1.2
|
extrapolating_c = 0.0 : 0.2 : 1.2
|
||||||
|
|
||||||
|
|
@ -31,6 +27,10 @@ m = 1.0
|
||||||
Va_of_r(r) = 2 * exp(-(r-3)^2 / (1.5)^2)
|
Va_of_r(r) = 2 * exp(-(r-3)^2 / (1.5)^2)
|
||||||
Vb_of_r(r) = -exp(-(r/3)^2)
|
Vb_of_r(r) = -exp(-(r/3)^2)
|
||||||
|
|
||||||
|
atol = 10^-5
|
||||||
|
maxevals = 10^5
|
||||||
|
R_cutoff = 16
|
||||||
|
|
||||||
# due to Jacobi coordinates
|
# due to Jacobi coordinates
|
||||||
μ1 = m * 1/2
|
μ1 = m * 1/2
|
||||||
μ2 = m * 2/3
|
μ2 = m * 2/3
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue