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
When running calculations using the xch_smear core-hole treatment setting, the XspectraCrystalWorkChain excepts during run_all_xspectra_core. The offending lines (688-691) are:
# remove any duplicates created from the "core_hole_treatments.yaml" defaults
for key in new_scf_params['SYSTEM'].keys():
if 'starting_magnetization(' in key:
new_scf_params['SYSTEM'].pop(key, None)
This was introduced in the last update to the WorkChain in order to make it work better with starting_magnetization settings, but causes a crash because we're poping keys from the same dictionary that we're iterating over.
The text was updated successfully, but these errors were encountered:
@superstar54: A fix for this is ready to go. Additionally, I found out that, due to a typo, the abs_atom_marker input for the WorkChain actually doesn't work. I will slip that change in with this one since it just involves a simple change to one line.
When running calculations using the
xch_smear
core-hole treatment setting, theXspectraCrystalWorkChain
excepts duringrun_all_xspectra_core
. The offending lines (688-691) are:This was introduced in the last update to the
WorkChain
in order to make it work better withstarting_magnetization
settings, but causes a crash because we'repop
ing keys from the same dictionary that we're iterating over.The text was updated successfully, but these errors were encountered: