Skip to content

Commit be66c6c

Browse files
committed
Support Unicode occupations/states when parsing configurations (#36, #73)
1 parent ef5b19a commit be66c6c

File tree

2 files changed

+22
-4
lines changed

2 files changed

+22
-4
lines changed

src/configurations.jl

+12-4
Original file line numberDiff line numberDiff line change
@@ -319,9 +319,9 @@ function get_noble_core_name(config::Configuration{O}) where O
319319
end
320320

321321
function state_sym(state::AbstractString)
322-
if state == "c"
322+
if state == "c" || state == ""
323323
:closed
324-
elseif state == "i"
324+
elseif state == "i" || state == ""
325325
:inactive
326326
else
327327
:open
@@ -339,13 +339,21 @@ end
339339

340340
function parse_orbital_occupation(::Type{O}, orb_str) where {O<:AbstractOrbital}
341341
m = match(r"^(([0-9]+|.)([a-z]|\[[0-9]+\])[-]{0,1})([0-9]*)([*ci]{0,1})$", orb_str)
342-
parse(O, m[1]) , (m[4] == "") ? 1 : parse(Int, m[4]), state_sym(m[5])
342+
m2 = match(r"^(([0-9]+|.)([a-z]|\[[0-9]+\])[-]{0,1})([¹²³⁴⁵⁶⁷⁸⁹⁰]*)([ᶜⁱ]{0,1})$", orb_str)
343+
orb,occ,state = if !isnothing(m)
344+
m[1], m[4], m[5]
345+
elseif !isnothing(m2)
346+
m2[1], from_superscript(m2[4]), m2[5]
347+
else
348+
throw(ArgumentError("Unknown subshell specification $(orb_str)"))
349+
end
350+
parse(O, orb) , (occ == "") ? 1 : parse(Int, occ), state_sym(state)
343351
end
344352

345353
function Base.parse(::Type{Configuration{O}}, conf_str; sorted=false) where {O<:AbstractOrbital}
346354
isempty(conf_str) && return Configuration{O}(sorted=sorted)
347355
orbs = split(conf_str, r"[\. ]")
348-
core_m = match(r"\[([a-zA-Z]+)\]([*ci]{0,1})", first(orbs))
356+
core_m = match(r"\[([a-zA-Z]+)\]([*ciᶜⁱ]{0,1})", first(orbs))
349357
if !isnothing(core_m)
350358
core_config = core_configuration(O, core_m[1], core_m[2], sorted)
351359
if length(orbs) > 1

test/configurations.jl

+10
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,16 @@
4242
@test_throws ArgumentError parse(Configuration{RelativisticOrbital}, "1s3")
4343
@test_throws ArgumentError parse(Configuration{Orbital}, "1s2 2p-2")
4444

45+
@testset "Unicode occupations/states" begin
46+
for c in [c"1s2 2p6", c"[He]c 2p6", c"[He]i 2p6", c"1s 3d4", c"[Xe]*"]
47+
@test parse(Configuration{Orbital}, string(c)) == c
48+
end
49+
50+
for c in [rc"1s2 2p6", rc"1s 2p- 2p3", rc"[He]c 2p6", rc"[He]i 2p6", rc"1s 3d4", rc"[Xe]*"]
51+
@test parse(Configuration{RelativisticOrbital}, string(c)) == c
52+
end
53+
end
54+
4555
@testset "Spin-configurations" begin
4656
a = sc""
4757
@test a isa SpinConfiguration{<:SpinOrbital{<:Orbital}}

0 commit comments

Comments
 (0)