QE-10

Calculation of metal, e.g., Al-pdos.

STEP 1

Also, the scf.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
&control
calculation = 'scf'
restart_mode='from_scratch'
prefix = 'al'
outdir = './outdir'
pseudo_dir = '/BIGDATA1/ac_iphy_jrsun_1/soft/QE/SSSP'
! pseudo_dir = '/home/anonymous/quantumEspresso_2019/SSSP_precision_pseudos'
/
&system
ibrav=1, celldm(1) =7.631664366184,
nat=4, ntyp=1,
ecutwfc=40
ecutrho=320
occupations='smearing',smearing='gaussian',degauss=0.01
/
&electrons
conv_thr=1e-8
/
ATOMIC_SPECIES
Al 26.981539 Al.pbe-n-kjpaw_psl.1.0.0.UPF
ATOMIC_POSITIONS (alat)
Al 0.00 0.00 0.00
Al 0.50 0.00 0.50
Al 0.50 0.50 0.00
Al 0.00 0.50 0.50
K_POINTS (automatic)
10 10 10 0 0 0

STEP2

Also, the more dense k-mesh for nscf.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
&control
calculation = 'nscf'
restart_mode='from_scratch'
prefix = 'al'
outdir = './outdir'
pseudo_dir = '/BIGDATA1/ac_iphy_jrsun_1/soft/QE/SSSP'
! pseudo_dir = '/home/anonymous/quantumEspresso_2019/SSSP_precision_pseudos'
/
&system
ibrav=1, celldm(1) =7.631664366184,
nat=4, ntyp=1,
ecutwfc=40
ecutrho=320
occupations='smearing',smearing='gaussian',degauss=0.01
/
&electrons
conv_thr=1e-8
/
ATOMIC_SPECIES
Al 26.981539 Al.pbe-n-kjpaw_psl.1.0.0.UPF
ATOMIC_POSITIONS (alat)
Al 0.00 0.00 0.00
Al 0.50 0.00 0.50
Al 0.50 0.50 0.00
Al 0.00 0.50 0.50
K_POINTS (automatic)
20 20 20 0 0 0

STEP 3

Here we perform the projected dos using projwfc.x.

1
2
3
4
5
6
7
8
&projwfc
prefix='al'
outdir='./outdir/'
lwrite_overlaps = .true.
filpdos='al.pdos.dat'
emin=-15
emax=35
/

And we will see many files named al.pdos.dat.pdos_atm#....

We can use the sumpdos.x to get the element resolved dos.

1
2
3
yhrun /BIGDATA1/app/Quantum_Espresso/6.5-icc-18/bin/sumpdos.x al.pdos.dat.pdos_atm#*\(Al\)* > atom_Al_tot.dat
yhrun /BIGDATA1/app/Quantum_Espresso/6.5-icc-18/bin/sumpdos.x al.pdos.dat.pdos_atm#*\(Al\)*\(s\) > atom_Al_s.dat
yhrun /BIGDATA1/app/Quantum_Espresso/6.5-icc-18/bin/sumpdos.x al.pdos.dat.pdos_atm#*\(Al\)*\(p\) > atom_Al_p.dat

For more details about output file, you can visit here.


本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!