Dear colleagues,
I found a monoatomic Cr crystal structure that is not stable in bulk but it is experimentally observed in thin film. The structure ID is mp-17 (https://next-gen.materialsproject.org/materials/mp-17). This structure has a simple cubic Bravais lattice with 8 atoms in a unit cell. I have tried to do a vc-relax calculation in Quantum ESPRESSO to check the structure stability by considering the spin-orbit interaction. Here is my input file:
&CONTROL
calculation = ‘vc-relax’
pseudo_dir = ‘/home/anin/pseudo’
outdir = ‘…/…/tmp’
prefix = ‘cr_sc’
etot_conv_thr = 1.0D-6
forc_conv_thr = 1.0D-6
restart_mode = ‘restart’
/
&SYSTEM
ibrav = 1
a = 4.51
nat = 8
ntyp = 1
occupations = ‘smearing’
smearing = ‘mv’
degauss = 0.02
ecutwfc = 100.0
noncolin = .true.
lspinorb = .true.
/
&ELECTRONS
mixing_beta = 0.7
conv_thr = 1.0D-6
/
&IONS
ion_dynamics = ‘bfgs’
/
&CELL
cell_dynamics = ‘bfgs’
press_conv_thr = 0.3
cell_dofree = ‘all’
cell_factor = 3.0
/
ATOMIC_SPECIES
Cr 51.9961 Cr.rel-pz-spn-kjpaw_psl.1.0.0.UPF
ATOMIC_POSITIONS (crystal)
Cr 0.000000 0.000000 0.000000
Cr 0.500000 0.500000 0.500000
Cr 0.250000 0.000000 0.500000
Cr 0.750000 0.000000 0.500000
Cr 0.250000 0.500000 0.000000
Cr 0.750000 0.500000 0.000000
Cr 0.000000 0.250000 0.500000
Cr 0.500000 0.250000 0.000000
K_POINTS (automatic)
6 6 6 0 0 0
In this input file, I used the lattice constant from the Materials Project database (a = 4.51 A). However, the resulting structure from the vc-relax calculation is very different compared to the Materials Project database. The structure becomes tetragonal with a = 5.58 A and b = c = 3.95 A. The resulting atomic positions are also differ:
ATOMIC_POSITIONS (crystal)
Cr 0.0000000000 -0.0000337418 0.0000000000
Cr 0.5000000000 0.5000337418 0.5000000000
Cr 0.2499869382 -0.0000045017 0.5000000000
Cr 0.7500130618 -0.0000045017 0.5000000000
Cr 0.2500130618 0.5000045017 0.0000000000
Cr 0.7499869382 0.5000045017 0.0000000000
Cr 0.0000000000 0.4999253946 0.5000000000
Cr 0.5000000000 0.0000746054 0.0000000000
End final coordinates
Why does my vc-relax calculation produce a different result compared to the Materials Project database? Which one is more proper to be used for DFT calculation?