Phosphorene
Phosphorene¶
This is a small tutorial to illustrate the use of KITE to investigate materials with anisotropic electrical conductivity. To this end, we consider a simplified tight-binding model for single layer phosphorene[^1]. Even though this model is very simple, it captures the anisotropic band structure of phosphorene, which is Dirac like in one direction and Schrödinger like in the other direction. This behaviour results in highly anisotropic transport properties along the different directions[^2].
We calculate the single energy longitudinal conductivity (singleshot_conductivity_dc
) in the vicinity of the band gap.
This is a fast numerical calculation, that is set to run in a normal laptop for about 3-4 minutes.
It can reproduce qualitatively the expected anisotropic conductivity along xx and yy directions.
Here, we highlight parts of the python scripts. The complete scripts can be downloaded for the xx conductivity and for the yy conductivity.
Lattice¶
After the imports that are necessary for KITE, we define the lattice, with Pybinding:
This model, as defined above, can be used with different number of hoppings. The user can decide the number that is used in the calculation when defining the lattice:
KITE-part¶
Settings¶
To use the large-scale single-shot algorithm for direct evaluation of zero-temperature DC conductivities, the resolvent operator requires a nonzero broadening (resolution) parameter eta
, which is given in eV.
As this type of calculation is energy dependent, it is also necessary to provide a list of desired energy points to the calculation object.
In the single shot calculations, the computational time scales linearly with the energy points.
For this example, that is intended to run in a normal desktop, we consider a small number of points and the energy range is set in the vicinity of the band gap.
The number of points and the list of energy points can be created when calling the calculation, as illustrated here:
Now it is time to save the configuration in a hdf file:
Calculation¶
Visualization¶
After running KITEx no post-processing is required for the singleshot conductivity calculation. The result can be extracted and plotted with the following script:
It is not possible to request the same type of calculation in a single call. In this case, we want to calculate the conductivity in xx and yy directions where the type of the calculation is the same, which means we need another hdf file for yy conductivity.
Let's repeat the procedure for another direction:
The result of this fast calculation can be seen in the figure below, for l1=512
, l2=512
.
To get a feeling of how KITE works, we suggest modifying parameters like eta
and num_random
.
In the next figure, we repeat the calculation for 300 energy points and 10 random vectors and a large energy window.
[^1] Alexander N. Rudenko, Mikhail I. Katsnelson, Phys. Rev. B 89, 201408 (2014).
[^2] H. Liu, A. T. Neal, Z. Zhu, X. Xu , D. Tomanek and P. D. Ye, ACS Nano 8, 4033 (2014)