You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is because the 4f14c subshell appears before the 5s2c 5p6c subshells that belong to the [Xe] core, and the printing routine does not consider this.
The text was updated successfully, but these errors were encountered:
julia> s =rc"[Xe]"
[Xe]ᶜ
julia> s.states[end] =:open:open
julia> s
[Kr]ᶜ 4d⁶ᶜ 5s²ᶜ 5p⁴ᶜ 4d-⁴ᶜ 5p-² # This is OK
julia> s =only(spin_configurations(rc"[Xe]"))
[Xe]ᶜ
julia> s.states[end] =:open:open
julia> s
[Xe]ᶜ 5p-(1/2) # This is wrong, should be printed with a [Kr] core, and closed 4d, 5s, 5p subshells and closed 5p-(1/2) orbital
If constructing the configuration for radon with open
6s2 6p6
subshells, the core is incorrectly printed as[Kr]
:This is because the
4f14c
subshell appears before the5s2c 5p6c
subshells that belong to the[Xe]
core, and the printing routine does not consider this.The text was updated successfully, but these errors were encountered: