Skip to content

Commit 036b9f8

Browse files
single_channel_ jj and fj models
1 parent 27a50ff commit 036b9f8

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

generate_database.jl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,11 @@ function main()
9494
@info "Calculating high ℓ SQDT states..."
9595
l_max = n_max - 1
9696
l_start = FMODEL_MAX_L[species] + 1
97-
high_l_models = single_channel_models(species, l_start:l_max)
97+
if species in parameters.spin == 0
98+
high_l_models = single_channel_jj_models(species, l_start:l_max)
99+
else
100+
high_l_models = single_channel_fj_models(species, l_start:l_max, parameters)
101+
end
98102
@timelog high_l_states =
99103
[eigenstates(n_min, n_max, M, parameters) for M in high_l_models]
100104
states = vcat(states, high_l_states)

0 commit comments

Comments
 (0)