@@ -319,9 +319,9 @@ function get_noble_core_name(config::Configuration{O}) where O
319
319
end
320
320
321
321
function state_sym (state:: AbstractString )
322
- if state == " c"
322
+ if state == " c" || state == " ᶜ "
323
323
:closed
324
- elseif state == " i"
324
+ elseif state == " i" || state == " ⁱ "
325
325
:inactive
326
326
else
327
327
:open
@@ -339,13 +339,21 @@ end
339
339
340
340
function parse_orbital_occupation (:: Type{O} , orb_str) where {O<: AbstractOrbital }
341
341
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)
343
351
end
344
352
345
353
function Base. parse (:: Type{Configuration{O}} , conf_str; sorted= false ) where {O<: AbstractOrbital }
346
354
isempty (conf_str) && return Configuration {O} (sorted= sorted)
347
355
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))
349
357
if ! isnothing (core_m)
350
358
core_config = core_configuration (O, core_m[1 ], core_m[2 ], sorted)
351
359
if length (orbs) > 1
0 commit comments