Parameter adjustment

This commit is contained in:
Nuwan Yapa 2025-02-04 12:46:47 -05:00
parent 6722a917fe
commit 990d5a6aeb
2 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@ A_interp = linear_interpolation(xs, As)
N_p = 82
N_n = 126
r_max = maximum(xs)
E_min = 880
E_min = 860
E_max = 939
divs = 400

View File

@ -16,9 +16,9 @@ R_interp = linear_interpolation(xs, Rs)
A_interp = linear_interpolation(xs, As)
p = true
N = 82
N = p ? 82 : 126
r_max = maximum(xs)
E_min = 880
E_min = 860
E_max = 939
κs, Es = findAllOrbitals(p, S_interp, V_interp, R_interp, A_interp, r_max, E_min, E_max)