QE-11

Calculation of spin-polarized $\alpha-Fe$.

STEP 1

First, we perform the optimization of lattice constant.

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
28
29
30
31
32
&control
calculation = 'vc-relax'
prefix = 'fe'
outdir = './outdir'
pseudo_dir = '/BIGDATA1/ac_iphy_jrsun_1/soft/QE/SSSP'
! pseudo_dir = '/home/anonymous/quantumEspresso_2019/SSSP_precision_pseudos'
etot_conv_thr = 1e-6
forc_conv_thr = 1e-5
/
&system
ibrav=3, celldm(1) =5.416911045,
nat=1, ntyp=1,
ecutwfc=40
ecutrho=320
occupations='smearing',smearing='marzari-vanderbilt',degauss=0.01
nspin = 2
starting_magnetization(1)=0.1
/
&electrons
conv_thr=1e-8
/
&ions
/
&cell
cell_dofree='ibrav'
/
ATOMIC_SPECIES
Fe 55.845 Fe.pbe-spn-kjpaw_psl.0.2.1.UPF
ATOMIC_POSITIONS (alat)
Fe 0.00 0.00 0.00
K_POINTS (automatic)
8 8 8 0 0 0

New tags:

  1. ibrav=3: corresponding to body center cubic.
  2. nspin=2: collinear spin polarized.
  3. starting_magnetization(1)=0.1: the origin M of first type atom is set to be 0.1 $\mu_{B}$.

And we can find below in the output.

1
2
3
4
5
6
7
8
9
10
11
12
Begin final coordinates
new unit-cell volume = 66.16346 a.u.^3 ( 9.80441 Ang^3 )
density = 9.45827 g/cm^3

CELL_PARAMETERS (alat= 5.41691104)
0.470364324 0.470364324 0.470364324
-0.470364324 0.470364324 0.470364324
-0.470364324 -0.470364324 0.470364324

ATOMIC_POSITIONS (alat)
Fe 0.0000000000 0.0000000000 0.0000000000
End final coordinates

The optimized lattice constant is 5.0958 Bohr ( 5.4169 in ref).

STEP 2

Do 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
&control
calculation = 'scf'
restart_mode='from_scratch'
prefix = 'fe'
outdir = './outdir'
pseudo_dir = '/BIGDATA1/ac_iphy_jrsun_1/soft/QE/SSSP'
! pseudo_dir = '/home/anonymous/quantumEspresso_2019/SSSP_precision_pseudos'
/
&system
ibrav=3, celldm(1) =5.095843399,
nat=1, ntyp=1,
ecutwfc=40
ecutrho=320
occupations='smearing',smearing='marzari-vanderbilt',degauss=0.01
nspin = 2
starting_magnetization(1)=0.1
/
&electrons
conv_thr=1e-8
/
ATOMIC_SPECIES
Fe 55.845 Fe.pbe-spn-kjpaw_psl.0.2.1.UPF
ATOMIC_POSITIONS (alat)
Fe 0.00 0.00 0.00
K_POINTS (automatic)
10 10 10 0 0 0

In the output, the magnetic moment is obtained.

1
2
Magnetic moment per site:
atom: 1 charge: 14.3011 magn: 1.9522 constr: 0.0000

Besides, we can find the range of the band (energy).

STEP 3

Do the 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
&control
calculation = 'nscf'
restart_mode='from_scratch'
prefix = 'fe'
outdir = './outdir'
pseudo_dir = '/BIGDATA1/ac_iphy_jrsun_1/soft/QE/SSSP'
! pseudo_dir = '/home/anonymous/quantumEspresso_2019/SSSP_precision_pseudos'
/
&system
ibrav=3, celldm(1) =5.09578335795351,
nat=1, ntyp=1,
ecutwfc=40
ecutrho=320
occupations='smearing',smearing='marzari-vanderbilt',degauss=0.01
nspin = 2
starting_magnetization(1)=0.1
/
&electrons
conv_thr=1e-8
/
ATOMIC_SPECIES
Fe 55.845 Fe.pbe-spn-kjpaw_psl.0.2.1.UPF
ATOMIC_POSITIONS (alat)
Fe 0.00 0.00 0.00
K_POINTS (automatic)
20 20 20 0 0 0

STEP 4

Calculate the density of states.

1
2
3
4
5
6
7
&DOS
prefix='fe'
outdir='./outdir/'
fildos='fe.dos.dat'
emin=-65
emax=50
/


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