mirror of https://gitlab.com/QEF/q-e.git
38 lines
1.2 KiB
Bash
Executable File
38 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# The following PPs are not on the web and are not removed
|
|
|
|
tobesaved="HUSPBE.RRKJ3 \
|
|
O_US.van H_US.van \
|
|
C-q4.gth O-q6.gth H-q1.gth \
|
|
Rh.pbe-rrkjus_lb.UPF \
|
|
Rhs.pbe-rrkjus_lb.UPF \
|
|
Si.bhs \
|
|
Au.pz-rrkjus_aewfc.UPF\
|
|
C.UPF C_3.98148.UPF \
|
|
pb_s.UPF \
|
|
Si_r.upf \
|
|
Au_ONCV_PBE_FR_.upf \
|
|
Mo-PBE.upf S-PBE.upf \
|
|
B-PBE.upf N-PBE.upf Fe.pz-n-nc.UPF "
|
|
#
|
|
# REASON:
|
|
# HUSPBE.RRKJ3, O_US.van, H_US.van, Si.bhs, C.UPF : old formats
|
|
# C-q4.gth O-q6.gth H-q1.gth : GTH format
|
|
# Au.pz-rrkjus_aewfc.UPF : contains all-electron wavefunctions
|
|
# Rh.pbe-rrkjus_lb.UPF, Rhs.pbe-rrkjus_lb.UPF : core-hole PPs
|
|
# C_3.98148.UPF : B-C VCA pseudopotential, for slightly B-doped C systems
|
|
# pb_s.UPF Si_r.upf : fully relativistic
|
|
# Au_ONCV_PBE_FR_p.upf : fully relativistic, norm-conserving
|
|
# Fe.pz-n-nc.UPF : used in test-suite/tddfpt_magnon_fe (should be replaced)
|
|
# Mo-PBE.upf S-PBE.upf : norm-conserving for test-suite/epw_2D
|
|
# B-PBE.upf N-PBE.upf used in test-suite/ph_2d (should be replaced)
|
|
|
|
mkdir .save
|
|
mv $tobesaved .save
|
|
/bin/rm *.UPF *.upf >& /dev/null
|
|
mv .save/* .
|
|
rmdir .save
|
|
|
|
|