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. By means of ASEconvert it is seamlessly integrated with the AtomsBase ecosystem and thus available to DFTK via our own AtomsBase integration.

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

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 to an AtomsBase-compatible system. These two functions not only support importing ASE atoms into DFTK, but a few more third-party data structures as well. Typically the imported atoms use a bare Coulomb potential, such that appropriate pseudopotentials need to be attached in a post-step:

using DFTK
system = attach_psp(pyconvert(AbstractSystem, surface);
                    Ga="hgh/pbe/ga-q3.hgh",
                    As="hgh/pbe/as-q5.hgh")
FlexibleSystem(As₂Ga₂, periodic = TTT):
    bounding_box      : [ 3.99777        0        0;
                                0  3.99777        0;
                                0        0  21.2014]u"Å"

    Atom(Ga, [       0,        0,  8.48055]u"Å")
    Atom(As, [ 3.99777,  1.99888,  9.89397]u"Å")
    Atom(Ga, [ 1.99888,  1.99888,  11.3074]u"Å")
    Atom(As, [ 1.99888, 6.96512e-16,  12.7208]u"Å")

      .---------.  
     /|         |  
    * |         |  
    | |         |  
    | |         |  
    | |         |  
    | |         |  
    | |         |  
    | |         |  
    | |         |  
    | |         |  
    | |         |  
    | |  As     |  
    | |   Ga    |  
    | |         |  
    | |        As  
    | |         |  
    | |         |  
    Ga|         |  
    | |         |  
    | |         |  
    | |         |  
    | |         |  
    | |         |  
    | |         |  
    | |         |  
    | .---------.  
    |/         /   
    *---------*    

We model this surface with (quite large a) temperature of 0.01 Hartree to ease convergence. Try lowering the SCF convergence tolerance (tol) or the temperature or try mixing=KerkerMixing() to see the full challenge of this system.

model = model_DFT(system, [:gga_x_pbe, :gga_c_pbe],
                  temperature=0.001, smearing=DFTK.Smearing.Gaussian())
basis = PlaneWaveBasis(model; Ecut, kgrid)

scfres = self_consistent_field(basis, tol=1e-4, mixing=LdosMixing());
n     Energy            log10(ΔE)   log10(Δρ)   Diag   Δtime
---   ---------------   ---------   ---------   ----   ------
  1   -16.59000491181                   -0.58    5.7    510ms
  2   -16.72533161465       -0.87       -1.01    1.0    265ms
  3   -16.73065417891       -2.27       -1.58    2.4    313ms
  4   -16.73125912075       -3.22       -2.16    1.0    253ms
  5   -16.73132541540       -4.18       -2.59    1.9    262ms
  6   -16.73133430573       -5.05       -2.89    2.1    292ms
  7   -16.73109586047   +   -3.62       -2.62    2.0    296ms
  8   -16.73111529202       -4.71       -2.60    2.3    300ms
  9   -16.73115350563       -4.42       -2.66    2.0    278ms
 10   -16.73130977858       -3.81       -3.03    1.0    233ms
 11   -16.73133637141       -4.58       -3.43    1.2    234ms
 12   -16.73133925616       -5.54       -3.75    1.4    242ms
 13   -16.73133965690       -6.40       -3.90    2.0    275ms
 14   -16.73134019643       -6.27       -4.60    1.0    246ms
scfres.energies
Energy breakdown (in Ha):
    Kinetic             5.8594138 
    AtomicLocal         -105.6102778
    AtomicNonlocal      2.3494835 
    Ewald               35.5044300
    PspCorrection       0.2016043 
    Hartree             49.5616788
    Xc                  -4.5976693
    Entropy             -0.0000035

    total               -16.731340196430