Collinear spin and magnetic systems
In this example we consider iron in the BCC phase. To show that this material is ferromagnetic we will model it once allowing collinear spin polarization and once without and compare the resulting SCF energies. In particular the ground state can only be found if collinear spins are allowed.
First we setup BCC iron without spin polarization using a single iron atom inside the unit cell.
using DFTK
a = 5.42352 # Bohr
lattice = a / 2 * [[-1 1 1];
[ 1 -1 1];
[ 1 1 -1]]
atoms = [ElementPsp(:Fe; psp=load_psp("hgh/lda/Fe-q8.hgh"))]
positions = [zeros(3)];
To get the ground-state energy we use an LDA model and rather moderate discretisation parameters.
kgrid = [3, 3, 3] # k-point grid (Regular Monkhorst-Pack grid)
Ecut = 15 # kinetic energy cutoff in Hartree
model_nospin = model_DFT(lattice, atoms, positions; functionals=LDA(), temperature=0.01)
basis_nospin = PlaneWaveBasis(model_nospin; kgrid, Ecut)
scfres_nospin = self_consistent_field(basis_nospin; tol=1e-4, mixing=KerkerDosMixing());
n Energy log10(ΔE) log10(Δρ) Diag Δtime
--- --------------- --------- --------- ---- ------
1 -16.65004218038 -0.48 5.8 121ms
2 -16.65071212016 -3.17 -1.01 1.0 193ms
3 -16.65081040207 -4.01 -2.32 1.5 21.1ms
4 -16.65082408093 -4.86 -2.82 2.2 25.5ms
5 -16.65082459408 -6.29 -3.26 1.2 20.4ms
6 -16.65082467926 -7.07 -3.73 1.5 22.3ms
7 -16.65082469682 -7.76 -4.26 1.8 23.1ms
scfres_nospin.energies
Energy breakdown (in Ha):
Kinetic 15.9207591
AtomicLocal -5.0692738
AtomicNonlocal -5.2201857
Ewald -21.4723040
PspCorrection 1.8758831
Hartree 0.7793299
Xc -3.4467455
Entropy -0.0182879
total -16.650824696819
Since we did not specify any initial magnetic moment on the iron atom, DFTK will automatically assume that a calculation with only spin-paired electrons should be performed. As a result the obtained ground state features no spin-polarization.
Now we repeat the calculation, but give the iron atom an initial magnetic moment. For specifying the magnetic moment pass the desired excess of spin-up over spin-down electrons at each centre to the Model
and the guess density functions. In this case we seek the state with as many spin-parallel $d$-electrons as possible. In our pseudopotential model the 8 valence electrons are 1 pair of $s$-electrons, 1 pair of $d$-electrons and 4 unpaired $d$-electrons giving a desired magnetic moment of 4
at the iron centre. The structure (i.e. pair mapping and order) of the magnetic_moments
array needs to agree with the atoms
array and 0
magnetic moments need to be specified as well.
magnetic_moments = [4];
Unlike all other quantities magnetisation and magnetic moments in DFTK are given in units of the Bohr magneton $μ_B$, which in atomic units has the value $\frac{1}{2}$. Since $μ_B$ is (roughly) the magnetic moment of a single electron the advantage is that one can directly think of these quantities as the excess of spin-up electrons or spin-up electron density.
We repeat the calculation using the same model as before. DFTK now detects the non-zero moment and switches to a collinear calculation.
model = model_DFT(lattice, atoms, positions; functionals=LDA(),
magnetic_moments, temperature=0.01)
basis = PlaneWaveBasis(model; Ecut, kgrid)
ρ0 = guess_density(basis, magnetic_moments)
scfres = self_consistent_field(basis, tol=1e-6; ρ=ρ0, mixing=KerkerDosMixing());
n Energy log10(ΔE) log10(Δρ) Magnet Diag Δtime
--- --------------- --------- --------- ------ ---- ------
1 -16.66166281257 -0.51 2.617 5.0 115ms
2 -16.66824991144 -2.18 -1.09 2.445 1.5 42.3ms
3 -16.66905875153 -3.09 -2.08 2.341 2.1 48.0ms
4 -16.66909824229 -4.40 -2.58 2.305 1.4 41.0ms
5 -16.66910281398 -5.34 -2.95 2.296 1.8 44.5ms
6 -16.66910412766 -5.88 -3.53 2.287 1.5 42.9ms
7 -16.66910417274 -7.35 -3.85 2.286 2.1 48.6ms
8 -16.66910417452 -8.75 -4.32 2.286 1.2 59.0ms
9 -16.66910417509 -9.24 -4.85 2.286 1.4 42.0ms
10 -16.66910417509 + -11.06 -5.25 2.286 1.9 47.2ms
11 -16.66910417509 -11.36 -5.68 2.286 1.5 43.1ms
12 -16.66910417509 + -11.27 -6.20 2.286 1.2 40.6ms
scfres.energies
Energy breakdown (in Ha):
Kinetic 16.2947199
AtomicLocal -5.2227264
AtomicNonlocal -5.4100283
Ewald -21.4723040
PspCorrection 1.8758831
Hartree 0.8191963
Xc -3.5406835
Entropy -0.0131612
total -16.669104175085
DFTK does not store the magnetic_moments
inside the Model
, but only uses them to determine the lattice symmetries. This step was taken to keep Model
(which contains the physical model) independent of the details of the numerical details such as the initial guess for the spin density.
In direct comparison we notice the first, spin-paired calculation to be a little higher in energy
println("No magnetization: ", scfres_nospin.energies.total)
println("Magnetic case: ", scfres.energies.total)
println("Difference: ", scfres.energies.total - scfres_nospin.energies.total);
No magnetization: -16.650824696818944
Magnetic case: -16.669104175085145
Difference: -0.018279478266201465
Notice that with the small cutoffs we use to generate the online documentation the calculation is far from converged. With more realistic parameters a larger energy difference of about 0.1 Hartree is obtained.
The spin polarization in the magnetic case is visible if we consider the occupation of the spin-up and spin-down Kohn-Sham orbitals. Especially for the $d$-orbitals these differ rather drastically. For example for the first $k$-point:
iup = 1
idown = iup + length(scfres.basis.kpoints) ÷ 2
@show scfres.occupation[iup][1:7]
@show scfres.occupation[idown][1:7];
(scfres.occupation[iup])[1:7] = [1.0, 0.9999987814424701, 0.9999987814424701, 0.9999987814424701, 0.9582253778928468, 0.9582253778928385, 1.1266889975388429e-29]
(scfres.occupation[idown])[1:7] = [1.0, 0.8438930798612707, 0.8438930798612752, 0.8438930798612568, 8.140849814745297e-6, 8.14084981474404e-6, 1.6113408837867828e-32]
Similarly the eigenvalues differ
@show scfres.eigenvalues[iup][1:7]
@show scfres.eigenvalues[idown][1:7];
(scfres.eigenvalues[iup])[1:7] = [-0.06935858064677995, 0.356885593730534, 0.35688559373054496, 0.3568855937305129, 0.4617360692528871, 0.4617360692528892, 1.1596208536171597]
(scfres.eigenvalues[idown])[1:7] = [-0.031257430752885014, 0.4761891625986241, 0.47618916259862376, 0.47618916259862515, 0.6102500874849008, 0.6102500874849024, 1.2251205720218503]
For collinear calculations the kpoints
field of the PlaneWaveBasis
object contains each $k$-point coordinate twice, once associated with spin-up and once with down-down. The list first contains all spin-up $k$-points and then all spin-down $k$-points, such that iup
and idown
index the same $k$-point, but differing spins.
We can observe the spin-polarization by looking at the density of states (DOS) around the Fermi level, where the spin-up and spin-down DOS differ.
using Plots
bands_666 = compute_bands(scfres, MonkhorstPack(6, 6, 6)) # Increase kgrid to get nicer DOS.
plot_dos(bands_666)
Note that if same k-grid as SCF should be employed, a simple plot_dos(scfres)
is sufficient.
Similarly the band structure shows clear differences between both spin components.
using Unitful
using UnitfulAtomic
bands_kpath = compute_bands(scfres; kline_density=6)
plot_bandstructure(bands_kpath)