Skip to content

Update the pseudo-dojo LDA pseudo tables to version 0.4.1

Micael Oliveira requested to merge pseudo-dojo_update into hotfix-10.5

Description

Update the pseudo-dojo LDA pseudo tables to version 0.4.1. This includes several new pseudopotentials, notably Oxygen. It also fixes the F pseudo that was incorrectly generated with PBE.

For future reference, the compression of the xml files was done using the minify client to the Go library and the bash script looks like this:

  $ for file in *.upf; do minify --type xml ${file} > ${file}_tmp; sed -i 's/0.0000000000E+00/0/g' ${file}_tmp; mv ${file}_tmp ${file}; done

To save some extra space values of '0.0000000000E+00' were replaced with '0'.

News snippet

Update the pseudo-dojo LDA pseudo tables to version 0.4.1.

Checklist

  • I have checked that my code follows the Octopus coding standards
  • I have added tests for all the new features added in this request.

Merge request reports