Questaal Home
Navigation

Building input files for lmf

This tutorial shows how to build an input file (ctrl.ext) for the main DFT code, lmf. The easiest way is to use the input file maker blm. Its primary input is the crystal structure (lattice and basis vectors), and it builds a (nearly) complete input file from the structural information. There is a companion tutorial that provides additional information about blm, not specific to lmf.

blm normally reads from an init file, but it can also read from a site file. This tutorial serves in part as an accompaniment to the blm documentation, explaining its application through examples. You can construct an init file by hand, but there are ways to import data automatically:

blm init.pbte
cp actrl.pbte ctrl.pbte
cp testing/cif2cell.batio3 .
cif2init cif2cell.batio3        # creates an init file from
poscar2init                     # creates an init file from a VASP POSCAR file
poscar2site                     # creates a  site file from a VASP POSCAR file
testing/test.blm 2
poscar2init > init.zn3as2
blm zn3as2 --fixpos:tol=1e-6 > out.zn3as2
testing/test.blm 3
  $ blm bi2te3
cp actrl.bi2te3 ctrl.bi2te3
lmchk bi2te3
cp actrl.bi2te3 ctrl.bi2te3
lmfa bi2te3
      cp basp0.bi2te3 basp.bi2te3
      lmfa bi2te3
blm --gw bi2te3

Table of Contents


Preliminaries

This tutorial assumes you have blm in your path. Additionally, poscar2init, lmchk, lmscell, poscar2site and cif2site may be required for some sections. Also, it uses some files from the Questaal repository. This tutorial assumes ~/lmf is the top-level directory where you keep it.

blm is an input file generator. Usually it reads from init.ext to build the input file (ctrl.ext). You can create the ctrl file from scratch without blm, but most people find going through blm to be easier and faster. You can customize the file once it’s been made.

blm writes a template input file to actrl.ext to avoid overwriting ctrl.ext you might already have. (You can specify otherwise: blm has many command line switches; --ctrl lets you name the file).

Usually, but depending on the switches you use, blm splits off the structural information and writes it to a separate file, site.ext. The Questaal package can read information from either the ctrl file or a site file, or some combination, but site files are very convenient because you can change the structural information without modifying the ctrl file.

blm writes the input file to actrl.ext to avoid overwriting ctrl.ext you might already have. (You can specify otherwise: blm has many command line switches; -\-ctrl lets you name the file).

The init file structure is documented in the blm documentation, and explained here through examples.

1. Importing Crystal Structure

1.1 Supplying Crystal Structure by hand

Classic books like Wyckoff’s Structure of Crystals provide information about crystal structure in a compact form.

Bi2Te3 (and also Bi2Se3) has the space group R3M. R3M is a rhombohedral lattice with hexagonal axes, which has two independent dimensions: the length a=4.3835Å of the basal plane and c=30.487Å of the third (c) axis normal to the basal plane.

Bi2Te3 contains 3 Te and 2 Bi atoms in the primitive unit cell; the two Bi and two of the Te and are equivalent by symmetry. Thus coordinates need be specified for only three atoms. Wykcoff writes them as (0,0,0) and (0,0,0.788) for two inequivalent Te, and (0,0,0.4) for one of the Bi. These coordinates are expressed in terms fractional multiples of the lattice vectors in the conventional cell.

This completely specifies the lattice structure. Enter this information into file init.ext as follows.

# Bi2Te3 from Wyckoff
% const a=4.3835 c=30.487 uTe=0.788 uBi=0.40
LATTICE
   SPCGRP=R-3M
   UNITS=A
   A={a} C={c}
SITE
    ATOM=Te C=0     0    0
    ATOM=Te C=0     0   {uTe}
    ATOM=Bi C=0     0   {uBi}

SITE_C denotes site positions expressed as fractional multiples of the conventional cell. See below for alternatives

We can supply equivalent information through the lattice vectors. The Bravais lattice R3M tells us about the point group operations as well as the lattice vectors. There are 12 rotations in all, which can be generated from the generators  I R3Z MY. The init file below supplies the generators.

# Bi2Te3 from Wyckoff
% const a=4.3835 c=30.487 uTe=0.788 uBi=0.40
LATTICE
   GENS='I R3Z MY'
   UNITS=A
   ALAT={a/sqrt(3)} 
   PLAT= 1.0 0.0 {c/a/sqrt(3)} -0.5 sqrt(3/4) {c/a/sqrt(3)} -0.5 -sqrt(3/4) {c/a/sqrt(3)}
SITE
    ATOM=Te X=0     0     0
    ATOM=Te X={uTe-1} {uTe-1} {uTe}
    ATOM=Bi X={uBi-1} {uBi-1} {uBi}

Typically when the lattice is designated by a space group as Wyckoff does, the accompanying positions are expressed in terms of the conventional cell (C=). In this mode you must supply the lengths (e.g. A) and angles (e.g. ALPHA) of the lattice vectors that are dictated by symmetry.

When instead the lattice is specified directly through lattice vectors PLAT, site positions are usually expressed in as multiples of the primitive cell (X=), as was done in the second init file, or in Cartesian coordinates (POS=). In this mode you must also supply the lattice constant ALAT (not the same as A, as you can see by comparing the two init files), and possibly the generators of the point group, as discussed above.

  • Lines which begin with ‘#’ are comment lines and are ignored. (More generally, text following a `#’ in any line is ignored).
  • Lines beginning with ‘%’ are directives to the preprocessor. Directives can perform various functions similar to a normal programming language, such as assigning variables, evaluating expressions, conditionally readings some lines, and repeated loops over sections of input.
  • Quantities in brackets {…} are algebraic expressions parsed by the preprocessor, evaluated and the result the contents of brackets replaced by the result.

This line:

% const a=4.3835 c=30.487 uTe=0.788 uBi=0.40

defines preprocessor variables which later appear in curly brackets as expressions.

  • SPCGRP=R-3M tells blm that you are specifying the lattice by its space group.  R3M is entered as R-3M. You can also refer to this group by its number: SPCGRP=166.

  • A={a} C={c}  are the two lengths of this hexagonal lattice. After parsing by the preprocessor, this line gets transformed into A=4.3835 C=30.487.

  • UNITS=A  tells blm that lengths A and C are in Å units. By default blm uses atomic units.

  • The SITE category operates in a tree structured syntax in much the same form as the ctrl file.

    Symbols Te and Bi tell blm that the atoms are Tellurium and Bismuth, with atomic numbers 52 and 83. You can use any symbol for the species name, but if you don’t use a standard one you must specify the atomic number, e.g. write  ATOM=A   Z=52.

    As noted above, the basis vectors can be expressed in three forms:

  ATOM=Te C=0     0    0
  ATOM=Te C=0     0    0.788
  ATOM=Bi C=0     0    0.4
  ATOM=Te X= 0      0         0
  ATOM=Te X=-0.212 -0.2120000 0.788
  ATOM=Bi X= 0.400  0.400    -0.600
  ATOM=Te POS= 0.0000000   0.0000000   0.0000000
  ATOM=Te POS=-0.5000000  -0.8660254   1.4616199
  ATOM=Bi POS= 0.5000000   0.8660254   0.8030878

1.2 Importing a CIF file

Crystallographic Information Files (CIF files for short) is a standard text file format for representing crystallographic information, whose standards are set by the International Union of Crystallography. If you have a CIF file, you can automatically make either an init.ext file, or a site.ext file. The tools in this package do not read CIF files directly, but parse the output of the cif2cell program (version 1.1.0). cif2cell is a very versatile tool, freely available on the web.

To import data from a CIF file you need cif2cell installed and cif2init in your path (cif2init should be automatically compiled with this package). The steps are:

1. Run cif2cell (without any special switches) and capture the output in a file, e.g. cif2cell.out . 2. Run cif2init to generate an init file (called simply ` init ‘). 3. Rename init to init.ext and use the blm tool.

Example : create an init file for the orthorhombic form of BaTiO3:

cp testing/cif2cell.batio3 .
cif2init cif2cell.batio3

Note: cif2cell.batio3 was obtained by running cif2cell on the CIF file supplied with the cif2cell-1.1.0 distribution: cif2cell-1.1.0/cifs/BaTiO3_orthorhombic.cif.

See also this tutorial.

The following init file should be generated:

HEADER Ba (Ti O3) (Barium titanate - nanocrystalline)
LATTICE
#       SPCGRP=38
#       A=4.0094  B=5.6214  C=5.6386   ALPHA=90  BETA=90  GAMMA=90
% const a=4.0094
        ALAT={a}  UNITS=A
        PLAT=    1.0000000    0.0000000    0.0000000
                 0.0000000    0.7010276   -0.7031725
                 0.0000000    0.7010276    0.7031725
SITE
     ATOM=Ba       X=     0.0000000    0.0000000    0.0000000
     ATOM=Ti       X=     0.5000000    0.4900000    0.5100000
     ATOM=O        X=     0.5000000    0.0100000    0.9900000
     ATOM=O        X=     0.5000000    0.0129000    0.4921000
     ATOM=O        X=     0.5000000    0.5079000    0.9871000

If you prefer to make your own input file but import structure information via a site file, use cif2site in place of cif2init. To summarize:

cif2init creates an init file from the output of cif2cell
cif2site creates a  site file from the output of cif2cell

1.3 Importing a POSCAR file

VASP is a very popular electronic structure program which can store structural information in the POSCAR files. If you want to import data from such a file in a form suitable for this program suite, use one of the following commands:

poscar2init creates an init file from a VASP POSCAR file
poscar2site creates a  site file from a VASP POSCAR file

If you already have an input file, use poscar2site to translate structural data from a POSCAR file into site. If you want an input file instead, use poscar2init; then run blm.

Example: create ctrl file for Zn3As2 from a POSCAR file:

~/lmf/testing/test.blm 2

The script has the following steps

poscar2init > init.zn3as2
blm zn3as2 --fixpos:tol=1e-6 > out.zn3as2

which creates an input file template (actrl.zn3as2) from a POSCAR file in two steps.

Example: create a site file for the Kesterite Cu2ZnSnS4:

testing/test.blm 3

It creates file site from file POSCAR.

Warning. POSCAR files are often very imprecise, in the sense that the lattice vectors (or site positions) are close to, but slightly misaligned with ones that have a higher symmetry. This is quite common when VASP is used for structural relaxation. This can cause troubles for some of the symmetry finders in the Questaal package. See this tutorial

2. Running blm

blm will create a template file for the main input file of the Questaal package, ctrl.ext. ext is a name you select; we will use bi2te3 corresponding to the material. blm actually generates actrl.ext, prepending the a so as not to overwrite any file named ctrl.ext.

Almost all programs in this package require the input file ctrl.ext. You can do an entire calculation starting only with this file; but often you supply other files. For example, symmetry line points for plotting energy bands are read from a separate file (e.g. syml.bi2te3). Structural data is typically split off into a separate file (site.bi2te3 in this tutorial); blm will create a site file by default.

2.1 init file

Copy either the first or second form of init files from one of the boxes above into init.bi2te3.

As explained in the blm documentation, init files and ctrl files are styled the same way: data is divided into categories (LATTICE and SITE) — tags which begin in the first column, and tokens (e.g. SPCGRP=, A=, X=) — tags belonging to a particular category.

2.2 ctrl file

To create a template input file invoke blm:

blm bi2te3

Now take a look at the standard output. blm finds the lattice vectors from the crystal symmetry (if you had supplied the lattice vectors, it would have found the symmetry). In this case, the symmetry is given; the corresponding point group has 12 symmetry operations, and two extra atoms had to be added to make the basis compatible with the group. The output snippet below indicates what blm found.

 SGROUP: 12 symmetry operations from 3 generators
 ADDBAS: The basis was enlarged from 3 to 5 sites
         The additional sites are:

        ATOM=Te       POS=   0.0000000   0.0000000   2.5538193
        ATOM=Bi       POS=   0.0000000   0.0000000  -4.8185270

blm automatically determined augmentation sphere radii, which it accomplishes by attempting to find spheres with equal potentials on each sphere surfaces (as well as it can). If you already have an input file, you can run lmchk with –getwsr to determine radii for you (it uses the same algorithm as blm). Particularly in polar compounds, this algorithm probably does a better job than you can do by hand, and it is recommended that you use the radii it finds, or some scaled version of them.

blm creates the file actrl.bi2te3 with these contents:

    # Autogenerated from init.bi2te3
    VERS    LM:7 FP:7
    IO      SHOW=f HELP=f WKP=F IACTIV=f VERBOS=31
    % const pwmode=0 pwemax=3 # Use pwmode=1 or 11 to add APWs
    HAM     AUTOBAS[PNU=1 LOC=1 LMTO=4 MTO=4 GW=0]  GMAX=  # set GMAX by hand
    #       AUTOBAS[PNU=1 LOC=1 LMTO=3 MTO=3 GW=0]  GMAX=  # LMTO=3 for minimal basis
            PWMODE={pwmode} PWEMIN=0 PWEMAX={pwemax} OVEPS=0
    %const nsp=1 so=0 elind=-.7
            NSPIN={nsp} SO={so} FORCES={so==0} ELIND={elind}
    %const lxcf=2 lxcf2=-1 # PBE functional: lxcf=101 lxcf2=130
    %ifdef lxcf & lxcf2>0
            XCFUN=0,{lxcf},{lxcf2}
    %else
            XCFUN={lxcf}
    %endif
    % const nit=1
    ITER    MIX=B2,b=.3  NIT={nit}  CONVC=1e-5
    % const met=5 nk=0
    BZ      NKABC={nk}  METAL={met}  # NKABC requires 1 to 3 positive numbers
    #SYMGRP i r3z my
    % const a=4.782549
    STRUC
      NSPEC=2  NBAS=5  NL=5
      ALAT={a}
      PLAT= 1  0  4.0154392  -0.5  0.8660254  4.0154392  -0.5  -0.8660254  4.0154392
    SPEC
      ATOM=Te         Z= 52  R= 2.870279  LMX=3  LMXA=3
      ATOM=Bi         Z= 83  R= 2.856141  LMX=3  LMXA=4
    SITE
      ATOM=Te         POS=  0.0000000   0.0000000   0.0000000
      ATOM=Te         POS= -0.5000000  -0.8660254   1.4616199
      ATOM=Te         POS=  0.5000000   0.8660254  -1.4616199
      ATOM=Bi         POS=  0.5000000   0.8660254   0.8030878
      ATOM=Bi         POS= -0.5000000  -0.8660254  -0.8030878

Note: The following applies to the FP code lmf. For ASA calculations, ignore the remainder of this section.

This template will not work as is; three essential pieces of information which blm does not supply are missing, to rectify this :

  • You must specify plane-wave cutoff GMAX; see here.
  • You must specify a valid k mesh for Brillouin zone integration; see here.
  • You must define a basis set which can be done manually or automatically, as described next.

blm creates a family of tags belonging to AUTOBAS to enbable other programs to automatically find a basis set for you. We will use this tag, which sets up a standard minimal basis:

AUTOBAS[PNU=1 LOC=1 LMTO=3 MTO=3 GW=0]

(Note that you must modify actrl.bi2te3 a little; the default gives [.. LMTO=4 MTO=4], which makes a double kappa basis.

lmfa calculates wave functions and atomic densities for free atoms. It also has a mode that automatically generates information for basis sets, using tokens in AUTOBAS to guide it. This information is written to a file basp0.ext. AUTOBAS specifies set of conditions that enable lmfa to automatically build the basis set for you, including specification of envelope function parameters RSMH and EH. Alternatively you can define parameters such as EH and RSMH basis by hand, as described in this tutorial.

Tokens in AUTOBAS tell lmfa to do the following:

PNU=1    Calculate logarithmic derivative parameter for the free atom; save P parameters in file         basp0._ext_        .
         Nothing about P is written if         PNU=0        .

LOC=1    Look for shallow cores to be explicitly treated as valence electrons, using [local orbitals](/docs/code/fpoverview/#local-orbitals).
         Shallow cores that meet specific criteria are identified and written to         basp0._ext_         as PZ=.
         No search is made if         LOC=0        .

LMTO=3   Pick a default choice about the size of basis.  LMTO=3 is a standard minimal basis.
         Run lmfa --input and look for HAM_AUTOBAS_LMTO to see what other choices there are.

         Note that _lmfa_{:.exec} will pick some defaults for the _l_-cutoff
         e.g. _spd_ or _spdf_ depending on the value of LMTO.

MTO=1    Choose 1-kappa basis set (single orbital per _l_ channel).
         For better quality calculations, it is recommended you use MTO=2.

GW=0     If GW=1, tailor basis for a GW calculation, e.g. changing the
         criteria for including shallow cores as valence, and the size of basis.

These tokens thus define some reasonable default basis for you. lmfa writes basp0.ext. This file is never read, but lmf will read basp.ext and use this information when assembling the basis set. The two files have the same structure and you can copy basp0.ext to basp.ext. What lmfa generates is not cast in concrete. You are free to adjust the parameters to your liking, e.g. add a local orbital or remove one from the basis.

The AUTOBAS tokens tell lmf what to read from basp.ext. It uses tokens in a manner similar, but not identical, to the way lmfa uses them:

PNU=1    Read parameters P for all species present in         basp._ext_

LOC=1    LOC=1 or 2 tell _lmf_{:.exec} to read local orbital parameters PZ.
         Since these parameters may also be specified by the input file,
         LOC=1 tells lmf to give precedence to parameters specified by ctrl file
         LOC=2 tells lmf to give precedence to parameters specified by basp.

LMTO=    is not used by _lmf_{:.exec}.

MTO=1    RSMH and EH may also be specified by the input file
         LMTO=1 or 3 tells lmf to read 1-kappa parameters specified by basp
         LMTO=2 or 4 tells lmf to read 2-kappa parameters specified by basp
         LMTO=1 or 2 tells lmf that parameters in the ctrl file take precedence
         LMTO=2 or 4 tells lmf that parameters in the basp file take precedence

GW=0     If GW=1, tune basis for a GW calculation: log derivative parameters P
         are floated a little differently in the self-consistency cycle.
         They are weighted to better represent unoccupied states, at a slight cost
         to their representation of occupied states.

3. Checking sphere overlaps

Sphere overlaps can be checked using lmchk. To do this copy the template actrl.bi2te3 to the input file and run lmchk:

cp actrl.bi2te3 ctrl.bi2te3
lmchk bi2te3

By default, blm makes the spheres as large as possible without overlapping, as the output shows. In this case the Bi and Te radii are nearly the same.

4. Making the atomic density

Make the free atom density. If you did not do so already copy actrl.bi2te3 to the input file (changing [.. LMTO=4 MTO=4] to [.. LMTO=3 MTO=3]) and invoke lmfa:

cp actrl.bi2te3 ctrl.bi2te3
lmfa bi2te3

The primary purpose of lmfa is to generate a free atom density. A secondary purpose is to supply additional information about the basis set in an automatic way. All of this information can be supplied manually in the input file, but the autogenerated input file supplies a minimum amount of information. lmfa generates basp0.bi2te3 which contains

BASIS:
Te RSMH= 1.615 1.681 1.914 1.914 EH= -0.888 -0.288 -0.1 -0.1 P= 5.901 5.853 5.419 4.187
Bi RSMH= 1.674 1.867 1.904 1.904 EH= -0.842 -0.21 -0.1 -0.1 P= 6.896 6.817 6.267 5.199 5.089 PZ= 0 0 15.936

Every species gets one line. This file specifies a basis set consisting of spdf orbitals on Te sites, and spdf orbitals on Bi sites, and a local 5d orbital on Bi. The contents of this file are explained above; see also RSMH and EH and PZ.

Note: Remember that lmf reads from basp.ext, not basp0.ext.

3.1 Automatically finding deep states to include as valence electrons

The partitioning between valence and core states is something that requires a judgement call. lmfa has made a default choice for you: the output shows that for Bi, lmfa selected the 6s, 6p, 6d, 5f states, populating them with charges 2, 3, 0, 0. Note that the total sphere charge is Q=0. You can override the default, e.g. choose the 5d over the 6d with SPEC_ATOM_P; override the l channel charges with SPEC_ATOM_Q.

As was explained earlier, when HAM_AUTOBAS_QLOC is set lmfa will look for shallow core levels below 6s, 6p, 6d, 5f states, and as this table shows lmfa selected the 5d orbital which is normally a core state, to be included as a local orbital so that the usual 6d state and the 5d state are simultaneously included in the basis. Even though the 5d state is fairly deep (the output shows it lies at −2 Ry), the criterion of having a charge density outside the smoothing radius greater than 3×10−3 was met. (Use HAM_AUTOBAS_ELOC and HAM_AUTOBAS_QLOC to change these criteria.) lmfa supplies information about this to basp0.bi2te3, in the form PZ=0 0 15.936 (no local orbitals for s or p states). The 0.936 is significant: it tells lmf what boundary condition to use for the 5d radial function.

3.2 Automatically finding linearization energies

Because HAM_AUTOBAS_P is set, lmfa save estimates for logarithmic derivative parameters P into basp0.ext. As is well known from elementary quantum mechanics there is a relation between the energy of a wave function and its logaritmic derivative at some radius. This information is supplied through the parameters P.

lmfa calculates P for the free-atom potential. Since this potential is not so far removed from the crystal potential, these parameters can find the “band center” reasonably well for each partial wave l. In any case, these are only estimates; they normally get “floated” in the self-consistency cycle.

3.3 Automatically finding envelope function parameters

Finally, the input file contains AUTOBAS[MTO=1]. This causes lmfa to envelope function parameters RSMH and EH (RSMH is the most important of the two) that fit the free atom wave functions well, and save the result in basp0.bi2te3. Unfortunately, what is optimum for the free atom is not optimum for the crystal, but the parameters are a reasonable starting point. These parameters are important, as they determine the quality of the basis. Later we discuss ways to optimize them, or improve the basis quality by adding APWs. blm cannot automatically determine every required input from the structural data. But for the following reasons: lmf will not run properly as the situation now stands

  1. The basis set has to be specified. lmfa autogenerated parameters for a basis set, and saved the result to basp0.bi2te3. A decision must be made whether to use lmfa’s choices for RSMH, EH, P, and PZ, to supply your own, or to modify lmfa’s choice. In any case, you can do it in one of two ways:
*   With your text editor pick up the lines in _basp0.bi2te3_{:.path} for Te and Bi, and paste them into _ctrl.bi2te3_{:.path}, e.g.

        ATOM=Te Z= 52  R= 2.870279
        RSMH= 1.615 1.681 1.914 1.914 EH= -0.888 -0.288 -0.1 -0.1 P= 5.901 5.853 5.419 4.187
        ATOM=Bi Z= 83  R= 2.856141
        RSMH= 1.674 1.867 1.904 1.904 EH= -0.842 -0.21 -0.1 -0.1 P= 6.896 6.817 6.267 5.199 PZ= 0 0 15.936

*   Copy _basp0.bi2te3_{:.path} to _basp.bi2te3_{:.path}, and modify it as you like. File basp._ext_ is read after the main input file is read. If basp._ext_ exists, and one or more of the following tokens is present, their corresponding parameters _may_ be read from basp._ext_:
*   AUTOBAS[MTO]: read RSMH,EH (also possibly RSMH2,EH2)
*   AUTOBAS[P]: read P
*   AUTOBAS[PZ]: read PZ

If some this information is given in both the ctrl file and the basp file, the AUTOBAS settings tell _lmf_{:.exec} which to use, as described [here](#basprules).
  1. The atm file was created by lmfa without prior knowledge that the 5d local orbital is to be included as a valence state (via a local orbital). Thus it incorrectly partitioned the core and valence charge. You must do one of the following:

    • Remove PZ=0 0 15.936 from basp.bi2te3. It will no longer be treated as a valence state. Removing it means the remaining envelope functions are much smoother, which allows you to get away with a coarser mesh density, as described below. Whether you need it or not depends on the context.

    • Copy basp0.bi2te3 to basp.bi2te3 and run lmfa over again:

      cp basp0.bi2te3 basp.bi2te3
      lmfa bi2te3
      

    With the latter choice lmfa operates a little differently from before as can be seen by comparing new output with the old. Initially the Bi 5d was part of the core; now is included as part of the valence.

  2. blm does not by default assign any value to the plane wave cutoff for the interstitial density. lmf reads this information through HAM_GMAX. It is a required input; but blm does not pick a value because its proper choice depends on the smoothness of the basis. lmfa will determine a suggested value for HAM_GMAX for you. In the present instance, when the usual 6s, 6p, 6d, 5f states are included lmfa recommends GMAX=4.4 as can be seen by inspecting the first lmfa run. In the second run it recommends GMAX=4.1 from the valence states alone (as before), but because of the 5d state lmfa recommends that GMAX=8.1. The 5d state is strongly peaked at around the atom, and requires more plane waves to represent reasonably, even a smoothed version of it, than the other states. The difference between 8.1 and 4.4 is substantial, and it reflects the additional computational cost of including deep core-like states in the valence. This is the all-electron analog of the “hardness” of the pseudopotential in pseudopotential schemes. If you want high-accuracy calculations (especially in the GW context), you will need to include these states as valence. This particular choice of local orbital is rather overkill for LDA calculations however. If you eliminate the Bi 5d local orbital you can set GMAX=4.4 and significantly speed up the execution time.

  3. blm assigns the initial k-point mesh to zero. Note the following lines in actrl.bi2te3:

    % const met=5 nk=0
    BZ      NKABC={nk}  METAL={met}  # NKABC requires 1 to 3 positive numbers
    

    BZ_NKABC governs the mesh of k-points. An appropriate choice will depend strongly on the context of the calculation and the sytem of interest; the density-of-states at the Fermi level; whether Fermi surface properties are important; whether you want optical properties as well as total energies well described; the precision you need; the integration method, and so on. Any automatic formula can be dangerous, so blm will not choose a default for you. In this case, a 4×4×4 mesh works well. Use your text editor to change nk=0 to nk=4. Alternatively, supply –nk=.. to blm on the command line, as was done in this tutorial.

    Note that as generated, ctrl.bi2te3 will reflect METAL=5. Using METAL=5 with the tetrahedron integration is the recommended way to handle Fermi surface integration in metals. See this tutorial for some discussion.

Input files for GW

GW calculations demand more of the basis set because unuoccupied states are important. To set up a job in preparation for a GW calculation, invoke blm as :

blm --gw bi2te3

Compare actrl.bi2te3 generated with the –gw switch to one without. One important difference will be that the default basis parameters are modified because AUTOBAS becomes:

AUTOBAS[PNU=1 LOC=1 LMTO=5 MTO=4 GW=1]

The basis is similar to LMTO=4 but EH has been set a little deeper. This helps the QS_GW_ implementation interpolate between k-points. The larger basis makes a minor difference to the valence bands; but the conduction bands change, especially the higher in energy you go.

Look also at this QS_GW_ demo for Silicon.

*Note The GW implementation allows you to use plane waves, but the QS_GW_ part of it does not, as yet.