Geometry optimization
We use DFTK and the GeometryOptimization package to find the minimal-energy bond length of the $H_2$ molecule. First we set up an appropriate DFTKCalculator
(see AtomsCalculators integration), for which we use the LDA model just like in the Tutorial for silicon in combination with a pseudodojo pseudopotential (see Pseudopotentials).
using DFTK
using PseudoPotentialData
pseudopotentials = PseudoFamily("dojo.nc.sr.pbe.v0_4_1.standard.upf")
calc = DFTKCalculator(;
model_kwargs = (; functionals=LDA(), pseudopotentials), # model_DFT keyword arguments
basis_kwargs = (; kgrid=[1, 1, 1], Ecut=10) # PlaneWaveBasis keyword arguments
)
DFTKCalculator(functionals=Xc(lda_x, lda_c_pw), pseudopotentials=PseudoFamily("dojo.nc.sr.pbe.v0_4_1.standard.upf"), Ecut=10, kgrid=[1, 1, 1])
Next we set up an initial hydrogen molecule within a box of vacuum. We use the parameters of the equivalent tutorial from ABINIT and DFTK's AtomsBase integration to setup the hydrogen molecule. We employ a simulation box of 10 bohr times 10 bohr times 10 bohr and a pseudodojo pseudopotential.
using LinearAlgebra
using Unitful
using UnitfulAtomic
r0 = 1.4 # Initial bond length in Bohr
a = 10.0 # Box size in Bohr
cell_vectors = [[a, 0, 0]u"bohr", [0, a, 0]u"bohr", [0, 0, a]u"bohr"]
h2_crude = periodic_system([:H => [0, 0, 0.]u"bohr",
:H => [r0, 0, 0]u"bohr"],
cell_vectors)
FlexibleSystem(H₂, periodicity = TTT):
cell_vectors : [ 10 0 0;
0 10 0;
0 0 10]u"a₀"
Atom(H, [ 0, 0, 0]u"a₀")
Atom(H, [ 1.4, 0, 0]u"a₀")
Finally we call minimize_energy!
to start the geometry optimisation. We use verbosity=2
to get some insight into the minimisation. With verbosity=1
only a summarising table would be printed and with verbosity=0
(default) the minimisation would be quiet.
using GeometryOptimization
results = minimize_energy!(h2_crude, calc; tol_forces=2e-6, verbosity=2)
n Energy log10(ΔE) log10(Δρ) α Diag Δtime
--- --------------- --------- --------- ---- ---- ------
1 -1.110418364376 -0.82 0.80 8.0 24.2ms
2 -1.117200053327 -2.17 -1.85 0.80 1.0 17.2ms
3 -1.117250641021 -4.30 -2.70 0.80 1.0 17.2ms
4 -1.117251292712 -6.19 -3.55 0.80 1.0 17.5ms
5 -1.117251308709 -7.80 -3.98 0.80 1.0 17.8ms
6 -1.117251310333 -8.79 -5.10 0.80 1.0 37.6ms
7 -1.117251310381 -10.32 -5.93 0.80 2.0 21.1ms
8 -1.117251310381 -12.90 -6.78 0.80 1.0 19.3ms
9 -1.117251310381 -14.40 -7.42 0.80 1.0 19.3ms
10 -1.117251310381 -14.70 -7.97 0.80 1.0 19.3ms
11 -1.117251310381 + -Inf -9.41 0.80 1.0 19.2ms
n Energy log10(ΔE) log10(Δρ) α Diag Δtime
--- --------------- --------- --------- ---- ---- ------
1 -1.117251310381 -9.57 0.80 1.0 94.0ms
2 -1.117251310381 -14.57 -10.29 0.80 1.0 17.1ms
Geometry optimisation convergence (in atomic units)
┌─────┬─────────────────┬───────────┬────────────┬────────┐
│ n │ Energy │ log10(ΔE) │ max(Force) │ Δtime │
├─────┼─────────────────┼───────────┼────────────┼────────┤
│ 0 │ -1.117251310381 │ │ 0.0269317 │ 1.25s │
└─────┴─────────────────┴───────────┴────────────┴────────┘
n Energy log10(ΔE) log10(Δρ) α Diag Δtime
--- --------------- --------- --------- ---- ---- ------
1 -1.117518115720 -2.46 0.80 1.0 10.6ms
2 -1.117520704463 -5.59 -3.49 0.80 1.0 25.2ms
3 -1.117520731401 -7.57 -4.23 0.80 1.0 17.2ms
4 -1.117520731859 -9.34 -5.15 0.80 1.0 17.6ms
5 -1.117520731874 -10.81 -5.93 0.80 1.0 17.8ms
6 -1.117520731875 -12.16 -6.44 0.80 1.0 21.8ms
7 -1.117520731875 -13.44 -7.45 0.80 1.0 19.0ms
8 -1.117520731875 -14.88 -8.36 0.80 1.0 19.1ms
9 -1.117520731875 -14.51 -8.79 0.80 2.0 24.5ms
n Energy log10(ΔE) log10(Δρ) α Diag Δtime
--- --------------- --------- --------- ---- ---- ------
1 -1.118247378304 -1.69 0.80 1.0 10.5ms
2 -1.118339157212 -4.04 -2.70 0.80 1.0 16.9ms
3 -1.118340124387 -6.01 -3.44 0.80 1.0 22.3ms
4 -1.118340141827 -7.76 -4.36 0.80 1.0 17.7ms
5 -1.118340142412 -9.23 -5.12 0.80 1.0 17.9ms
6 -1.118340142439 -10.57 -5.62 0.80 1.0 21.3ms
7 -1.118340142441 -11.73 -6.68 0.80 1.0 18.8ms
8 -1.118340142441 -13.55 -7.58 0.80 1.0 19.4ms
9 -1.118340142441 -14.70 -8.12 0.80 1.0 19.2ms
10 -1.118340142441 + -14.40 -8.55 0.80 1.0 23.1ms
n Energy log10(ΔE) log10(Δρ) α Diag Δtime
--- --------------- --------- --------- ---- ---- ------
1 -1.118340142441 -9.05 0.80 1.0 10.7ms
2 -1.118340142441 + -14.88 -10.36 0.80 1.0 17.0ms
┌─────┬─────────────────┬───────────┬────────────┬────────┐
│ n │ Energy │ log10(ΔE) │ max(Force) │ Δtime │
├─────┼─────────────────┼───────────┼────────────┼────────┤
│ 1 │ -1.118340142441 │ -2.96 │ 0.00297053 │ 583ms │
└─────┴─────────────────┴───────────┴────────────┴────────┘
n Energy log10(ΔE) log10(Δρ) α Diag Δtime
--- --------------- --------- --------- ---- ---- ------
1 -1.118346834690 -3.09 0.80 1.0 10.7ms
2 -1.118346977940 -6.84 -4.11 0.80 1.0 17.1ms
3 -1.118346979417 -8.83 -4.86 0.80 1.0 17.1ms
4 -1.118346979443 -10.59 -5.78 0.80 1.0 22.7ms
5 -1.118346979444 -12.08 -6.55 0.80 1.0 18.1ms
6 -1.118346979444 -13.45 -7.04 0.80 1.0 18.2ms
7 -1.118346979444 -14.35 -8.13 0.80 1.0 22.1ms
8 -1.118346979444 + -15.35 -8.95 0.80 1.0 18.9ms
n Energy log10(ΔE) log10(Δρ) α Diag Δtime
--- --------------- --------- --------- ---- ---- ------
1 -1.118354837064 -2.61 0.80 1.0 10.6ms
2 -1.118356200096 -5.87 -3.62 0.80 1.0 21.9ms
3 -1.118356214170 -7.85 -4.37 0.80 1.0 17.2ms
4 -1.118356214417 -9.61 -5.29 0.80 1.0 17.5ms
5 -1.118356214425 -11.10 -6.06 0.80 1.0 18.4ms
6 -1.118356214425 -12.45 -6.55 0.80 1.0 21.6ms
7 -1.118356214425 -13.58 -7.65 0.80 1.0 18.8ms
8 -1.118356214425 + -14.75 -8.45 0.80 1.0 18.8ms
n Energy log10(ΔE) log10(Δρ) α Diag Δtime
--- --------------- --------- --------- ---- ---- ------
1 -1.118356214425 -9.24 0.80 1.0 10.7ms
2 -1.118356214425 -14.42 -9.82 0.80 1.0 17.0ms
┌─────┬─────────────────┬───────────┬────────────┬────────┐
│ n │ Energy │ log10(ΔE) │ max(Force) │ Δtime │
├─────┼─────────────────┼───────────┼────────────┼────────┤
│ 2 │ -1.118356214425 │ -4.79 │ 4.4726e-5 │ 500ms │
└─────┴─────────────────┴───────────┴────────────┴────────┘
n Energy log10(ΔE) log10(Δρ) α Diag Δtime
--- --------------- --------- --------- ---- ---- ------
1 -1.118356215887 -4.94 0.80 1.0 15.8ms
2 -1.118356215917 -10.54 -5.96 0.80 1.0 17.2ms
3 -1.118356215917 -12.53 -6.70 0.80 1.0 17.2ms
4 -1.118356215917 -14.15 -7.62 0.80 1.0 17.5ms
5 -1.118356215917 + -14.51 -8.39 0.80 1.0 21.2ms
6 -1.118356215917 + -15.05 -8.89 0.80 1.0 18.3ms
n Energy log10(ΔE) log10(Δρ) α Diag Δtime
--- --------------- --------- --------- ---- ---- ------
1 -1.118356217810 -4.40 0.80 1.0 10.5ms
2 -1.118356218156 -9.46 -5.42 0.80 1.0 21.8ms
3 -1.118356218159 -11.45 -6.17 0.80 1.0 17.4ms
4 -1.118356218159 -13.22 -7.09 0.80 1.0 17.5ms
5 -1.118356218159 -14.70 -7.86 0.80 1.0 17.9ms
6 -1.118356218159 -14.57 -8.35 0.80 1.0 21.5ms
7 -1.118356218159 -14.88 -9.45 0.80 1.0 18.8ms
n Energy log10(ΔE) log10(Δρ) α Diag Δtime
--- --------------- --------- --------- ---- ---- ------
1 -1.118356218159 -10.08 0.80 1.0 10.6ms
2 -1.118356218159 -14.75 -11.02 0.80 1.0 22.0ms
┌─────┬─────────────────┬───────────┬────────────┬────────┐
│ n │ Energy │ log10(ΔE) │ max(Force) │ Δtime │
├─────┼─────────────────┼───────────┼────────────┼────────┤
│ 3 │ -1.118356218159 │ -8.43 │ 1.09319e-8 │ 444ms │
└─────┴─────────────────┴───────────┴────────────┴────────┘
Structure after optimisation (note that the atom has wrapped around)
results.system
FlexibleSystem(H₂, periodicity = TTT):
cell_vectors : [ 10 0 0;
0 10 0;
0 0 10]u"a₀"
Atom(H, [-0.0431828, -1.35915e-11, -1.23661e-10]u"a₀")
Atom(H, [ 1.44318, -1.48236e-11, -1.2246e-10]u"a₀")
Compute final bond length:
rmin = norm(position(results.system[1]) - position(results.system[2]))
println("Optimal bond length: ", rmin)
Optimal bond length: 1.4863655828718727 a₀
Our results (1.486 Bohr) agrees with the equivalent tutorial from ABINIT.