Polarizability using automatic differentiation

Simple example for computing properties using (forward-mode) automatic differentiation. For a more classical approach and more details about computing polarizabilities, see Polarizability by linear response.

using DFTK
using LinearAlgebra
using ForwardDiff
using PseudoPotentialData

# Construct PlaneWaveBasis given a particular electric field strength
# Again we take the example of a Helium atom.
function make_basis(ε::T; a=10., Ecut=30) where {T}
    lattice = T(a) * I(3)  # lattice is a cube of ``a`` Bohrs
    # Helium at the center of the box
    pseudopotentials = PseudoFamily("cp2k.nc.sr.lda.v0_1.semicore.gth")
    atoms     = [ElementPsp(:He, pseudopotentials)]
    positions = [[1/2, 1/2, 1/2]]

    model = model_DFT(lattice, atoms, positions;
                      functionals=[:lda_x, :lda_c_vwn],
                      extra_terms=[ExternalFromReal(r -> -ε * (r[1] - a/2))],
                      symmetries=false)
    PlaneWaveBasis(model; Ecut, kgrid=[1, 1, 1])  # No k-point sampling on isolated system
end

# dipole moment of a given density (assuming the current geometry)
function dipole(basis, ρ)
    @assert isdiag(basis.model.lattice)
    a  = basis.model.lattice[1, 1]
    rr = [a * (r[1] - 1/2) for r in r_vectors(basis)]
    sum(rr .* ρ) * basis.dvol
end

# Function to compute the dipole for a given field strength
function compute_dipole(ε; tol=1e-8, kwargs...)
    scfres = self_consistent_field(make_basis(ε; kwargs...); tol)
    dipole(scfres.basis, scfres.ρ)
end;

With this in place we can compute the polarizability from finite differences (just like in the previous example):

polarizability_fd = let
    ε = 0.01
    (compute_dipole(ε) - compute_dipole(0.0)) / ε
end
1.773558049899673

We do the same thing using automatic differentiation. Under the hood this uses custom rules to implicitly differentiate through the self-consistent field fixed-point problem. This leads to a density-functional perturbation theory problem, which is automatically set up and solved in the background.

polarizability = ForwardDiff.derivative(compute_dipole, 0.0)
println()
println("Polarizability via ForwardDiff:       $polarizability")
println("Polarizability via finite difference: $polarizability_fd")
n     Energy            log10(ΔE)   log10(Δρ)   Diag   Δtime 
---   ---------------   ---------   ---------   ----   ------
  1   -2.770682669571                   -0.52    8.0    148ms
  2   -2.772051119313       -2.86       -1.34    1.0    136ms
  3   -2.772082365419       -4.51       -2.37    1.0    114ms
  4   -2.772083229913       -6.06       -3.00    1.0   95.1ms
  5   -2.772083417291       -6.73       -4.11    2.0    108ms
  6   -2.772083417485       -9.71       -4.33    1.0    101ms
  7   -2.772083417806       -9.49       -5.65    1.0   99.5ms
  8   -2.772083417810      -11.37       -5.79    2.0    117ms
  9   -2.772083417811      -12.38       -6.36    1.0    102ms
 10   -2.772083417811      -13.32       -7.33    1.0    106ms
 11   -2.772083417811   +  -13.80       -7.28    2.0    206ms
 12   -2.772083417811      -13.69       -8.11    1.0    833ms
Solving response problem
Iter  Restart  Krydim  log10(res)  avg(CG)  Δtime   Comment
----  -------  ------  ----------  -------  ------  ---------------
                                      13.0  59.2ms  Non-interacting
   1        0       1       -0.60     10.0   191ms  
   2        0       2       -2.42      8.0   138ms  
   3        0       3       -3.55      5.0   114ms  
   4        0       4       -5.33      5.0  99.0ms  
   5        0       5       -7.56      1.0  91.1ms  
   6        0       6      -10.31      1.0  87.6ms  
   7        1       1       -7.35     13.0   221ms  Restart
   8        1       2       -8.47      2.0  90.7ms  
                                      12.0   125ms  Final orbitals

Polarizability via ForwardDiff:       1.7725349571709974
Polarizability via finite difference: 1.773558049899673