Elastic constants

We compute clamped-ion elastic constants of a crystal using the algorithmic differentiation density-functional perturbation theory (AD-DFPT) approach as introduced in [SPH25].

We consider a crystal in its equilibrium configuration, where all atomic forces and stresses vanish. Homogeneous strains $η$ are then applied relative to this relaxed structure. The elastic constants are derived from the stress-strain relationship. In Voigt notation, the stress $\sigma$ and strain $\eta$ tensors are represented as 6-component vectors. The elastic constants $C$ are then given by the Jacobian of the stress with respect to strain, forming a $6 \times 6$ matrix

\[ C = \frac{\partial \sigma}{\partial \eta}.\]

The sparsity pattern of the matrix $C$ follows from crystal symmetry and is tabulated in standard references (eg. Table 9 in [Nye1985]). This sparsity can be used a priori to reduce the number of strain patterns that need to be probed to extract all independent components of $C$. For example, cubic crystals have only three independent elastic constants $C_{11}$, $C_{12}$ and $C_{44}$, with the pattern

\[C = \begin{pmatrix} C_{11} & C_{12} & C_{12} & 0 & 0 & 0 \\ C_{12} & C_{11} & C_{12} & 0 & 0 & 0 \\ C_{12} & C_{12} & C_{11} & 0 & 0 & 0 \\ 0 & 0 & 0 & C_{44} & 0 & 0 \\ 0 & 0 & 0 & 0 & C_{44} & 0 \\ 0 & 0 & 0 & 0 & 0 & C_{44} \\ \end{pmatrix}.\]

Thus we can just choose a suitable strain pattern $\dot{\eta} = (1, 0, 0, 1, 0, 0)^\top$, such that $C\dot{\eta} = (C_{11}, C_{12}, C_{12}, C_{44}, 0, 0)^\top$. That is, for cubic crystals like diamond silicon we obtain all independent elastic constants from a single Jacobian-vector product on the stress-strain function.

This example computes the clamped-ion elastic tensor, keeping internal atomic positions fixed under strain. The relaxed-ion tensor includes additional corrections from internal relaxations, which can be obtained from first-order atomic displacements in DFPT (see [Wu2005]).

using DFTK
using PseudoPotentialData
using LinearAlgebra
using ForwardDiff
using DifferentiationInterface
using AtomsBuilder
using Unitful
using UnitfulAtomic

Computing PBE elastic constants

pseudopotentials = PseudoFamily("dojo.nc.sr.pbe.v0_4_1.standard.upf")
a0_pbe = 10.33u"bohr"  # Equilibrium lattice constant of silicon with PBE
model0 = model_DFT(bulk(:Si; a=a0_pbe); pseudopotentials, functionals=PBE())

Ecut = recommended_cutoff(model0).Ecut
kgrid = [4, 4, 4]
tol = 1e-6

function symmetries_from_strain(model0, voigt_strain)
    lattice = DFTK.voigt_strain_to_full(voigt_strain) * model0.lattice
    model = Model(model0; lattice, symmetries=true)
    model.symmetries
end

strain_pattern = [1., 0., 0., 1., 0., 0.];  # recovers [c11, c12, c12, c44, 0, 0]

For elastic constants beyond the bulk modulus, symmetry-breaking strains are required. That is, the symmetry group of the crystal is reduced. Here we simply precompute the relevant subgroup by applying the automatic symmetry detection (spglib) to the finitely perturbed crystal.

symmetries_strain = symmetries_from_strain(model0, 0.01 * strain_pattern)


function stress_from_strain(model0, voigt_strain; symmetries, Ecut, kgrid, tol)
    lattice = DFTK.voigt_strain_to_full(voigt_strain) * model0.lattice
    model = Model(model0; lattice, symmetries)
    basis = PlaneWaveBasis(model; Ecut, kgrid)
    scfres = self_consistent_field(basis; tol)
    DFTK.full_stress_to_voigt(compute_stresses_cart(scfres))
end

stress_fn(voigt_strain) = stress_from_strain(model0, voigt_strain;
                                             symmetries=symmetries_strain,
                                             Ecut, kgrid, tol)
stress, (dstress,) = value_and_pushforward(stress_fn, AutoForwardDiff(),
                                           zeros(6), (strain_pattern,));
n     Energy            log10(ΔE)   log10(Δρ)   Diag   Δtime 
---   ---------------   ---------   ---------   ----   ------
  1   -8.453492934666                   -0.94    5.3    387ms
  2   -8.455622076711       -2.67       -1.77    1.0    151ms
  3   -8.455776919182       -3.81       -2.88    1.9    196ms
  4   -8.455790083287       -4.88       -3.31    3.0    277ms
  5   -8.455790175810       -7.03       -3.82    1.1    155ms
  6   -8.455790186701       -7.96       -4.70    1.4    180ms
  7   -8.455790187665       -9.02       -5.11    2.4    882ms
  8   -8.455790187711      -10.33       -6.08    1.8    191ms
Solving response problem
Iter  Restart  Krydim  log10(res)  avg(CG)  Δtime   Comment
----  -------  ------  ----------  -------  ------  ---------------
                                      17.1   7.87s  Non-interacting
   1        0       1        0.11     12.7   15.8s  
   2        0       2       -0.70     11.4   883ms  
   3        0       3       -1.71     10.1   1.04s  
   4        0       4       -2.78      8.0   381ms  
   5        0       5       -4.04      5.4   303ms  
   6        0       6       -5.56      1.9   187ms  
   7        0       7       -7.81      1.0   160ms  
   8        1       1       -6.40     16.3   912ms  Restart
                                      15.9   1.84s  Final orbitals

We can inspect the stress to verify it is small (close to equilibrium):

stress
6-element StaticArraysCore.SVector{6, Float64} with indices SOneTo(6):
 -2.312421303147748e-5
 -2.3124609344372815e-5
 -2.3124609344372802e-5
  2.8075524910204836e-9
  0.0
  0.0

The response of the stress to strain_pattern contains the elastic constants in atomic units, with the expected pattern $(c11, c12, c12, c44, 0, 0)$:

dstress
6-element StaticArraysCore.SVector{6, Float64} with indices SOneTo(6):
 0.005319956723259569
 0.00202489798223018
 0.00202489798223018
 0.003351911932846772
 0.0
 0.0

Convert to GPa:

println("C11: ", uconvert(u"GPa", dstress[1] * u"hartree" / u"bohr"^3))
println("C12: ", uconvert(u"GPa", dstress[2] * u"hartree" / u"bohr"^3))
println("C44: ", uconvert(u"GPa", dstress[4] * u"hartree" / u"bohr"^3))
C11: 156.5185302604188 GPa
C12: 59.57455531927109 GPa
C44: 98.6166535900105 GPa

These results can be compared directly to finite differences of the stress_fn:

h = 1e-3
dstress_fd = (stress_fn(h * strain_pattern) - stress_fn(-h * strain_pattern)) / 2h
println("C11 (FD): ", uconvert(u"GPa", dstress_fd[1] * u"hartree" / u"bohr"^3))
println("C12 (FD): ", uconvert(u"GPa", dstress_fd[2] * u"hartree" / u"bohr"^3))
println("C44 (FD): ", uconvert(u"GPa", dstress_fd[4] * u"hartree" / u"bohr"^3))
n     Energy            log10(ΔE)   log10(Δρ)   Diag   Δtime 
---   ---------------   ---------   ---------   ----   ------
  1   -8.453483505443                   -0.94    5.4    408ms
  2   -8.455630494870       -2.67       -1.77    1.0    170ms
  3   -8.455783171368       -3.82       -2.88    2.0    196ms
  4   -8.455795206466       -4.92       -3.33    2.8    266ms
  5   -8.455795304432       -7.01       -3.88    1.3    166ms
  6   -8.455795314559       -7.99       -4.99    1.5    179ms
  7   -8.455795315192       -9.20       -5.46    2.9    274ms
  8   -8.455795315198      -11.24       -6.01    1.4    176ms
n     Energy            log10(ΔE)   log10(Δρ)   Diag   Δtime 
---   ---------------   ---------   ---------   ----   ------
  1   -8.453455768329                   -0.94    5.3    386ms
  2   -8.455613561018       -2.67       -1.77    1.0    153ms
  3   -8.455770360087       -3.80       -2.88    1.9    198ms
  4   -8.455782147865       -4.93       -3.32    2.9    269ms
  5   -8.455782244313       -7.02       -3.92    1.2    163ms
  6   -8.455782253635       -8.03       -4.72    1.8    272ms
  7   -8.455782254351       -9.15       -5.47    2.2    892ms
  8   -8.455782254371      -10.69       -6.13    2.1    218ms
C11 (FD): 156.23811296334554 GPa
C12 (FD): 59.46432636224219 GPa
C44 (FD): 98.55342236145542 GPa

Here are AD-DFPT results from increasing discretization parameters:

Ecutkgridc11c12c44
18[4, 4, 4]156.5159.5798.61
18[8, 8, 8]153.5356.90100.07
24[8, 8, 8]153.2656.8299.97
24[14, 14, 14]153.0356.71100.09

For comparison, Materials Project for PBE relaxed-ion elastic constants of silicon mp-149: c11 = 153 GPa, c12 = 57 GPa, c44 = 74 GPa. Note the discrepancy in c44, which is due to us not yet including ionic relaxation in this example.

Moving to meta-GGA functionals

To make the problem a little more interesting we will now compute the elastic constant using deorbitalised r2-SCAN functional, again using AD-DFPT.

model_scan = model_DFT(bulk(:Si; a=a0_pbe);
                       pseudopotentials, functionals=[:mgga_c_r2scanl, :mgga_x_r2scanl])

stress, (dstress,) = value_and_pushforward(AutoForwardDiff(), zeros(6),
                                           (strain_pattern,)) do voigt_strain
    stress_from_strain(model_scan, voigt_strain;
                       symmetries=symmetries_strain, Ecut, kgrid, tol)

end;
┌ Warning: Meta-GGAs with a Δρ term have not yet been thoroughly tested.
└ @ DFTK ~/work/DFTK.jl/DFTK.jl/src/terms/xc.jl:121
n     Energy            log10(ΔE)   log10(Δρ)   Diag   Δtime 
---   ---------------   ---------   ---------   ----   ------
  1   -8.490343305038                   -0.92    5.4    2.67s
  2   -8.493551509824       -2.49       -1.80    1.0    531ms
  3   -8.493816995031       -3.58       -2.63    2.2    289ms
  4   -8.493840413712       -4.63       -3.36    2.6    301ms
  5   -8.493846326108       -5.23       -3.74    2.3    286ms
  6   -8.493849036754       -5.57       -4.03    2.1    267ms
  7   -8.493850378963       -5.87       -4.37    2.8    307ms
  8   -8.493850692865       -6.50       -4.75    2.8    309ms
  9   -8.493850751361       -7.23       -4.99    3.1    335ms
 10   -8.493850753504       -8.67       -5.58    2.0    259ms
 11   -8.493850755053       -8.81       -5.87    2.0    271ms
 12   -8.493850755492       -9.36       -6.13    2.1    276ms
Solving response problem
Iter  Restart  Krydim  log10(res)  avg(CG)  Δtime   Comment
----  -------  ------  ----------  -------  ------  ---------------
                                      17.1   618ms  Non-interacting
   1        0       1        0.11     12.5   2.55s  
   2        0       2       -0.67     10.3   523ms  
   3        0       3       -1.30      8.2   450ms  
   4        0       4       -1.86      6.3   386ms  
   5        0       5       -2.56      4.8   340ms  
   6        0       6       -2.89      2.2   260ms  
   7        0       7       -3.36      2.0   255ms  
   8        0       8       -3.79      2.0   257ms  
   9        0       9       -4.26      1.9   250ms  
  10        0      10       -5.04      1.2   227ms  
  11        0      11       -7.24      1.0   300ms  
  12        1       1       -4.56     18.4   1.62s  Restart
  13        1       2       -4.92      4.3   359ms  
  14        1       3       -5.22      2.7   302ms  
  15        1       4       -5.55      2.6   258ms  
  16        1       5       -6.00      2.0   256ms  
  17        1       6       -6.40      2.0   249ms  
                                      16.3   708ms  Final orbitals

Note here that the value_and_pushforward(...) do voigt_strain ... end syntax defines an anonymous function to compute the stress from a given strain, i.e. defining the same kind of function as stress_fn in the above example. See the Julia documentation on the do-block-syntax for details.

We again inspect the r2SCAN stress, which is still small (despite using the PBE lattice constant), so we remain close to the equilibrium:

stress
6-element StaticArraysCore.SVector{6, Float64} with indices SOneTo(6):
 -1.9912479521755933e-5
 -1.991249022900551e-5
 -1.9912490229005497e-5
  9.54275922186054e-10
  0.0
  0.0

Finially the r2-SCAN elastic constants, which agree well with PBE:

println("C11: ", uconvert(u"GPa", dstress[1] * u"hartree" / u"bohr"^3))
println("C12: ", uconvert(u"GPa", dstress[2] * u"hartree" / u"bohr"^3))
println("C44: ", uconvert(u"GPa", dstress[4] * u"hartree" / u"bohr"^3))
C11: 155.9124045966032 GPa
C12: 59.347797279241654 GPa
C44: 97.94752376467358 GPa
  • SPH25Schmitz, N. F., Ploumhans, B., & Herbst, M. F. (2025) Algorithmic differentiation for plane-wave DFT: materials design, error control and learning model parameters. arXiv:2509.07785
  • Nye1985Nye, J. F. (1985). Physical Properties of Crystals. Oxford University Press. Comment: Since the elastic tensor transforms equivariantly under rotations, its numerical components depend on the chosen Cartesian coordinate frame. These tabulated patterns assume a standardized orientation of the structure with respect to conventional crystallographic axes.
  • Wu2005Wu, X., Vanderbilt, D., & Hamann, D. R. (2005). Systematic treatment of displacements, strains, and electric fields in density-functional perturbation theory. Physical Review B, 72(3), 035105.