ARPACK convergence issue
This commit is contained in:
parent
917583904e
commit
d137a4bc8d
|
|
@ -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)
|
||||
@time "Eigenvalues" evals, _ = eigs(H, nev=5, which=:SM, maxiter=10000, tol=1e-6, ritzvec=false)
|
||||
|
||||
display(evals)
|
||||
Loading…
Reference in New Issue