Modelling a gallium arsenide surface

This example shows how to use the atomistic simulation environment or ASE for short, to set up and run a particular calculation of a gallium arsenide surface. ASE is a Python package to simplify the process of setting up, running and analysing results from atomistic simulations across different simulation codes. For more details on the integration DFTK provides with ASE, see Atomistic simulation environment.

In this example we will consider modelling the (1, 1, 0) GaAs surface separated by vacuum.

Parameters of the calculation. Since this surface is far from easy to converge, we made the problem simpler by choosing a smaller Ecut and smaller values for n_GaAs and n_vacuum. More interesting settings are Ecut = 15 and n_GaAs = n_vacuum = 20.

miller = (1, 1, 0)   # Surface Miller indices
n_GaAs = 2           # Number of GaAs layers
n_vacuum = 4         # Number of vacuum layers
Ecut = 5             # Hartree
kgrid = (4, 4, 1);   # Monkhorst-Pack mesh

Use ASE to build the structure:

using ASEconvert
using PythonCall

a = 5.6537  # GaAs lattice parameter in Ångström (because ASE uses Å as length unit)
gaas = ase.build.bulk("GaAs", "zincblende"; a)
surface = ase.build.surface(gaas, miller, n_GaAs, 0, periodic=true);

Get the amount of vacuum in Ångström we need to add

d_vacuum = maximum(maximum, surface.cell) / n_GaAs * n_vacuum
surface = ase.build.surface(gaas, miller, n_GaAs, d_vacuum, periodic=true);

Write an image of the surface and embed it as a nice illustration:

ase.io.write("surface.png", surface * pytuple((3, 3, 1)), rotation="-90x, 30y, -75z")
Python: None

Use the pyconvert function from PythonCall to convert the ASE atoms to an AtomsBase-compatible system. This can then be used in the same way as other AtomsBase systems (see AtomsBase integration for details) to construct a DFTK model:

using DFTK

pseudopotentials = Dict(:Ga => "hgh/pbe/ga-q3.hgh",
                        :As => "hgh/pbe/as-q5.hgh")
model = model_DFT(pyconvert(AbstractSystem, surface);
                  functionals=PBE(),
                  temperature=1e-3,
                  smearing=DFTK.Smearing.Gaussian(),
                  pseudopotentials)
Model(gga_x_pbe+gga_c_pbe, 3D):
    lattice (in Bohr)    : [7.55469   , 0         , 0         ]
                           [0         , 7.55469   , 0         ]
                           [0         , 0         , 40.0648   ]
    unit cell volume     : 2286.6 Bohr³

    atoms                : As₂Ga₂
    atom potentials      : ElementPsp(Ga, "hgh/pbe/ga-q3.hgh")
                           ElementPsp(As, "hgh/pbe/as-q5.hgh")
                           ElementPsp(Ga, "hgh/pbe/ga-q3.hgh")
                           ElementPsp(As, "hgh/pbe/as-q5.hgh")

    num. electrons       : 16
    spin polarization    : none
    temperature          : 0.001 Ha
    smearing             : DFTK.Smearing.Gaussian()

    terms                : Kinetic()
                           AtomicLocal()
                           AtomicNonlocal()
                           Ewald(nothing)
                           PspCorrection()
                           Hartree()
                           Xc(gga_x_pbe, gga_c_pbe)
                           Entropy()

In the above we use the pseudopotential keyword argument to assign the respective pseudopotentials to the imported model.atoms. Try lowering the SCF convergence tolerance (tol) or try mixing=KerkerMixing() to see the full challenge of this system.

basis  = PlaneWaveBasis(model; Ecut, kgrid)
scfres = self_consistent_field(basis; tol=1e-6, mixing=LdosMixing());
n     Energy            log10(ΔE)   log10(Δρ)   Diag   Δtime
---   ---------------   ---------   ---------   ----   ------
  1   -16.58910076248                   -0.58    5.3    540ms
  2   -16.72541136005       -0.87       -1.01    1.0    291ms
  3   -16.73067606463       -2.28       -1.58    2.3    319ms
  4   -16.73125746597       -3.24       -2.16    1.0    334ms
  5   -16.73132716966       -4.16       -2.59    2.0    874ms
  6   -16.73133551137       -5.08       -2.89    2.0    277ms
  7   -16.73108772750   +   -3.61       -2.61    2.0    335ms
  8   -16.73114674609       -4.23       -2.63    2.2    291ms
  9   -16.73120738349       -4.22       -2.73    1.9    282ms
 10   -16.73132683688       -3.92       -3.20    1.0    232ms
 11   -16.73133928557       -4.90       -3.68    1.6    286ms
 12   -16.73133974175       -6.34       -3.91    1.6    263ms
 13   -16.73133946446   +   -6.56       -3.84    1.8    274ms
 14   -16.73134019696       -6.14       -4.70    1.0    233ms
 15   -16.73134020016       -8.49       -5.18    2.3    342ms
 16   -16.73134020035       -9.73       -5.50    1.4    270ms
 17   -16.73134020037      -10.74       -5.75    2.0    306ms
 18   -16.73134020041      -10.35       -6.08    1.6    307ms
scfres.energies
Energy breakdown (in Ha):
    Kinetic             5.8593964 
    AtomicLocal         -105.6100060
    AtomicNonlocal      2.3494806 
    Ewald               35.5044300
    PspCorrection       0.2016043 
    Hartree             49.5614213
    Xc                  -4.5976633
    Entropy             -0.0000035

    total               -16.731340200411