Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .github/workflows/generate_database.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,7 @@ jobs:
include:
# use n_max=220 for tags and master, but only n_max=100 for PRs, etc.
- n_max: ${{ (startsWith(github.ref, 'refs/tags/') || contains(github.ref, 'master')) && 220 || 100 }}
# FIXME: the following species do not yet support high \ell states
- species: Sr87
extra_args: "--skip-high-l"
- species: Yb171
extra_args: "--skip-high-l"
- species: Yb173
extra_args: "--skip-high-l" # FIXME: Yb173 fails for n > 115
n_max: ${{ (startsWith(github.ref, 'refs/tags/') || contains(github.ref, 'master')) && 115 || 100 }}
name: ${{ matrix.species }}
runs-on: ubuntu-latest
Expand Down
6 changes: 5 additions & 1 deletion generate_database.jl
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,11 @@ function main()
@info "Calculating high ℓ SQDT states..."
l_max = n_max - 1
l_start = FMODEL_MAX_L[species] + 1
high_l_models = single_channel_models(species, l_start:l_max)
if species in parameters.spin == 0
high_l_models = single_channel_jj_models(species, l_start:l_max)
else
high_l_models = single_channel_fj_models(species, l_start:l_max, parameters)
end
@timelog high_l_states =
[eigenstates(n_min, n_max, M, parameters) for M in high_l_models]
states = vcat(states, high_l_states)
Expand Down
Loading