3-body XZ works in HO + complex-scaling

This commit is contained in:
Nuwan Yapa 2025-11-25 19:53:51 -05:00
parent 8a37cf713a
commit 8a3680fa55
1 changed files with 3 additions and 3 deletions

View File

@ -5,8 +5,8 @@ V_of_r(r) = 2 * exp(-(r-3)^2 / (1.5)^2)
Λ = 0
m = 1.0
ϕ = 0.1
μω_global = 0.5
ϕ = 0.1 # DOESN'T WORK WITHOUT ROTATION
μω_global = 0.5 * exp(-2im * ϕ)
E_max = 40
H0 = get_3b_H_matrix(jacobi, V_of_r, μω_global, E_max, Λ, m, true, true)
@ -25,7 +25,7 @@ exact_E = [4.076642792419057-0.012998408352259658im,
1.7162659936896967-0.0004515351140200029,
1.2329926791785895-0.00017698044022813525im]
training_c = (0.0 : 0.2 : 1.2) .* exp(-0.01im) #[-1.5 - 0.5im] .+ (randn(8) .+ 0.05im * randn(8))
training_c = [0.6 - 0.16im] .+ 0.04 .* (randn(8) .+ 0.5im * randn(8))
extrapolating_c = 0.0 : 0.2 : 1.2
EC = affine_EC(H0, Vp)