1. Band structures, semicore states, and local orbitals

1.1. Silicon band structure

Perform a self consistency calculation of Si with equilibrium lattice constant (or another test lattic constant). Then modify the inp.xml file in the following way:

  1. Set output/@band to "T". This enables the band structure calculation mode in fleur. With this only a single iteration is performed and no new charge density is generated. Instead some files related to the band structure of the material are written.

  2. Exchange the specification of the k point set by

    <kPointCount count="300" gamma="F"/>

    With this you specify that 300 k points along the high symmetry lines of the band structure are calculated.

  3. Set calculationSetup/cutoffs/@numbands to 25. If numbands is 0 a default number of states is calculated for each k point. This number is adapted to the charge density construction. Setting the parameter to 25 explicitely specifies that we want to calculate 25 states at each k point. With this we make sure that we also obtain a reasonable number of bands above the Fermi energy.

Call fleur on top of this calculation with the new inp.xml file. This will produce a bandstructure ouput, i.e., a band.gnu file with a gnuplot script to visualize the band structure and a bands.1 file with a list of eigenenergies for each k point. Use the gnuplot script and convert the result into a pdf with

gnuplot < band.gnu > bands.ps
ps2pdf bands.ps

Visualize the pdf with some viewer (e.g. evince). Where is the highest occupied state, where is the lowest unoccupied state? How large is the bandgap (grep for bandgap in the out file)? Compare the result with the experimental value? How large is the difference and why is there a difference?

1.2. Strontium band structure

Use this inp.xml file for Strontium together with the sym.out file for fcc Cu to calculate the band structure for Strontium! Does the result look correct to you? Can it be improved? If so: How? Improve it!

Note: To change the description of a semicore state from a core electron description to a valence electron description you have to perform the following steps:

  1. Identify the semicore state, i.e., the main quantum number and the angular momentum quantum number. This is best done by taking a look into the list of "coreStates" in the out.xml file. Semicore states feature energies that are near the valence band. Depending on the angular momentum of the state this may actually be 2 states as the fully-relativistic description for the core electrons yields a splitting of the states due to spin-orbit coupling. The list of core states also provides information on how many electrons there are in this state. This is the "weight".

  2. For each atom (not atom type, group, or species) for which the description of the semicore state has to be changed add the number of related electrons to calculationSetup/bzIntegration@valenceElectrons.

  3. Add the respective local orbital for the state (type is SCLO; n, l as identified; eDeriv 0) to the related atom species section just below the energy parameters.

  4. Reduce the number of core states for the respective atom species by the number of states identified in (1.). This is 1 or 2. The XML attribute to be changed is atomSpecies/species/@coreStates.

2. Exercises

2.1. Proof of orthogonality to core states

Proof under the assumptions and . The function is the wave function of a core state with eigenenergy . is the energy derivative of and thus part of the LAPW basis.

Hint 1: is an energy parameter and not an eigenenergy for the Hamilton operator. and are not eigenfunctions.

Hint 2: The differential equation to calculate is obtained by deriving with respect to . The non-relativistic Hamilton operator has no energy dependence.

Hint 3: You may assume that has already been shown.

2.2. Ne band structure

Note: In the following you have to modify the gnuplot script band.gnu such that bands up to 40 eV above the Fermi energy are displayed. The simplest way to do this is to replace in the line that starts with "plot" the last bracket by "[-10:40]" and the line before that by "set ytics -10,5,40". However the plot will not look beautiful with this single adaption.

  1. Set up an input for a Ne fcc crystal with a lattice constant of 442.9 pm and modify the inp.xml file in the following way:

    Calculate the self-consistent solution and calculate the band structure up to energies 40 eV above the Fermi level.

  2. Copy the input from (1.) into a new directory and modify it in the following way: The difference to the reference calculation is supposed to be the addition of a few local orbitals constructed from the second energy derivative. Add the following line after the energyParameters xml element for both atom species:

    <lo type="SCLO" l="0-3" n="2,2,3,4" eDeriv="2"/>

    Calculate the self-consistent solution and calculate the band structure up to energies 40 eV above the Fermi level.

  3. Copy the input from (1.) into a new directory and modify it in the following way: The difference to the reference calculation is supposed to be the addition of a different set of local orbitals constructed from radial functions evaluated at higher energy parameters. Add the following line after the energyParameters xml element for both atom species:

    <lo type="HELO" l="0-3" n="3,3,4,5" eDeriv="0"/>

    Calculate the self-consistent solution and calculate the band structure up to energies 40 eV above the Fermi level.

How do the results differ? Grep for "EP" in the out.xml file. You obtain a list of the energy parameters with energies relative to the 0 of the potential. Grep for "Fermi" in the out.xml file to obtain the Fermi energy in each iteration, also relative to the 0 of the potential. How far away from the conduction band are the and energy parameters.

3. Last weeks results

3.2. Si

If everything works as it is supposed to it turns out that the default Kmax, lmax, and k point set parameters already yield very well converged total energies. This implies that changes in the lattice constant and the bulk modulus are negligible. Please note that it does not happen often that the default parameters already provide such stringly converged total energies.