Temperature and metallic systems
In this example we consider the modeling of a magnesium lattice as a simple example for a metallic system. For our treatment we will use the PBE exchange-correlation functional. First we import required packages and setup the lattice. Again notice that DFTK uses the convention that lattice vectors are specified column by column.
using DFTK
using Plots
using Unitful
using UnitfulAtomic
a = 3.01794 # bohr
b = 5.22722 # bohr
c = 9.77362 # bohr
lattice = [[-a -a 0]; [-b b 0]; [0 0 -c]]
Mg = ElementPsp(:Mg; psp=load_psp("hgh/pbe/Mg-q2"))
atoms = [Mg, Mg]
positions = [[2/3, 1/3, 1/4], [1/3, 2/3, 3/4]];
Next we build the PBE model and discretize it. Since magnesium is a metal we apply a small smearing temperature to ease convergence using the Fermi-Dirac smearing scheme. Note that both the Ecut
is too small as well as the minimal $k$-point spacing kspacing
far too large to give a converged result. These have been selected to obtain a fast execution time. By default PlaneWaveBasis
chooses a kspacing
of 2π * 0.022
inverse Bohrs, which is much more reasonable.
kspacing = 0.945 / u"angstrom" # Minimal spacing of k-points,
# in units of wavevectors (inverse Bohrs)
Ecut = 5 # Kinetic energy cutoff in Hartree
temperature = 0.01 # Smearing temperature in Hartree
smearing = DFTK.Smearing.FermiDirac() # Smearing method
# also supported: Gaussian,
# MarzariVanderbilt,
# and MethfesselPaxton(order)
model = model_DFT(lattice, atoms, positions, [:gga_x_pbe, :gga_c_pbe];
temperature, smearing)
kgrid = kgrid_from_maximal_spacing(lattice, kspacing)
basis = PlaneWaveBasis(model; Ecut, kgrid);
Finally we run the SCF. Two magnesium atoms in our pseudopotential model result in four valence electrons being explicitly treated. Nevertheless this SCF will solve for eight bands by default in order to capture partial occupations beyond the Fermi level due to the employed smearing scheme. In this example we use a damping of 0.8
. The default LdosMixing
should be suitable to converge metallic systems like the one we model here. For the sake of demonstration we still switch to Kerker mixing here.
scfres = self_consistent_field(basis, damping=0.8, mixing=KerkerMixing());
n Energy log10(ΔE) log10(Δρ) Diag Δtime
--- --------------- --------- --------- ---- ------
1 -1.743097612758 -1.28 5.0 40.8ms
2 -1.743512766897 -3.38 -1.70 1.5 25.9ms
3 -1.743613514715 -4.00 -2.84 3.8 39.8ms
4 -1.743616689425 -5.50 -3.53 4.0 42.0ms
5 -1.743616747843 -7.23 -4.41 3.3 37.9ms
6 -1.743616749851 -8.70 -5.48 2.8 36.1ms
7 -1.743616749884 -10.48 -6.27 3.7 57.4ms
scfres.occupation[1]
9-element Vector{Float64}:
1.9999999999941416
1.9985518373086615
1.9905514409118377
1.2449711613538873e-17
1.2448859364441865e-17
1.0289513908957768e-17
1.0288638020028461e-17
2.9884176733799932e-19
1.6622961007989547e-21
scfres.energies
Energy breakdown (in Ha):
Kinetic 0.7450615
AtomicLocal 0.3193180
AtomicNonlocal 0.3192775
Ewald -2.1544222
PspCorrection -0.1026056
Hartree 0.0061603
Xc -0.8615676
Entropy -0.0148387
total -1.743616749884
The fact that magnesium is a metal is confirmed by plotting the density of states around the Fermi level. To get better plots, we decrease the k spacing a bit for this step
kgrid_dos = kgrid_from_maximal_spacing(lattice, 0.7 / u"Å")
bands = compute_bands(scfres, kgrid_dos)
plot_dos(bands)