From 4175152a8d8a33daa305539efffd2dcabce1e893 Mon Sep 17 00:00:00 2001 From: Nuwan Yapa Date: Fri, 8 Mar 2024 18:35:19 -0500 Subject: [PATCH] Small changes --- ho_basis_3body.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ho_basis_3body.jl b/ho_basis_3body.jl index 82a5c56..70f9fc7 100644 --- a/ho_basis_3body.jl +++ b/ho_basis_3body.jl @@ -2,7 +2,7 @@ using Arpack, SparseArrays include("ho_basis.jl") include("p_space.jl") -E_max = 10 +E_max = 20 ω = 1.0 Λ = 0 m = 1.0 @@ -35,6 +35,6 @@ V_l(l, n1, n2) = Va * V_Gaussian(Ra, l, n1, n2; ω=ω) + Vb * V_Gaussian(Rb, l, println("Calculating spectrum") @time "H" H = T1 + T2 + V1 + V2 -@time "Eigenvalues" evals, _ = eigs(H, nev=5, which=:SM, maxiter=10000, tol=1e-6, ritzvec=false) +@time "Eigenvalues" evals, _ = eigs(H, nev=3, ncv=30, which=:SR, maxiter=5000, tol=1e-5, ritzvec=false, check=1) display(evals) \ No newline at end of file