Toolbox
Usage¶
Default usage¶
Its default usage is very simple:
where archive.h5 is the HDF file that stores the output of KITE. If KITE-tools does not find this output, it will return an error. The output of KITE-tools is a set of .dat files, one for each of the requested quantities. KITE-tools may be executed without any additional parameters; all the unspecified parameters required for the calculation will be set to sensible default values. At the moment, KITE-tools is able to compute the following quantities:
- Local density of states (LDOS)
- Angle-resolved photoemission spectroscopy (experimental) (ARPES)
- Density of states (DOS)
- DC conductivity (CondDC)
- Optical conductivity (CondOpt)
- Second-order optical conductivity (CondOpt2)
The SingleShot DC conductivity does not require the post-processing through KITE-tools.
Advanced usage¶
KITE-tools supports a set of command-line instructions to force it to use user-specified parameters for each of the quantities mentioned in the previous section. The syntax is as following:
./KITE-tools archive.h5 --quantity_to_compute1 -key_1 value_1 -key_2 value_2 --quantity_to_compute2 -key_3 value_3 ...
Each function to compute is specified after the double hyphens — and the parameters of each function is specified after the single hyphen -. The list of available commands is as follows:
Function | Parameter | Description |
---|---|---|
--LDOS |
-N |
Name of the output file |
--LDOS |
-M |
Number of Chebyshev moments |
--LDOS |
-K |
Kernel to use (jackson/green). green requires broadening parameter. Example: -K green 0.01 |
--LDOS |
-X |
Exclusive. Only calculate this quantity |
--ARPES |
-N |
Name of the output file |
--ARPES |
-E |
min max num Number of energy points |
--ARPES |
-F |
Fermi energy |
--ARPES |
-T |
Temperature |
--ARPES |
-V |
Wave vector of the incident wave |
--ARPES |
-O |
Frequency of the incident wave |
--ARPES |
-X |
Exclusive. Only calculate this quantity |
--DOS |
-N |
Name of the output file |
--DOS |
-E |
Number of energy points |
--DOS |
-M |
Number of Chebyshev moments |
--DOS |
-K |
Kernel to use (jackson/green). green requires broadening parameter. Example: -K green 0.01 |
--DOS |
-X |
Exclusive. Only calculate this quantity |
--CondDC |
-N |
Name of the output file |
--CondDC |
-E |
Number of energy points used in the integration |
--CondDC |
-M |
Number of Chebyshev moments |
--CondDC |
-T |
Temperature |
--CondDC |
-S |
Broadening parameter of the Green’s function |
--CondDC |
-d |
Broadening parameter of the Dirac delta |
--CondDC |
-F |
min max numRange of Fermi energies. min and max may be omitted if only one is required |
--CondDC |
-t |
Number of threads |
--CondDC |
-I |
If 0 , CondDC uses the DOS to estimate the integration range |
--CondDC |
-X |
Exclusive. Only calculate this quantity |
--CondOpt |
-N |
Name of the output file |
--CondOpt |
-E |
Number of energy points used in the integration |
--CondOpt |
-M |
Number of Chebyshev moments |
--CondOpt |
-T |
Temperature |
--CondOpt |
-F |
Fermi energy |
--CondOpt |
-S |
Broadening parameter of the Green’s function |
--CondOpt |
-O |
min max num Range of frequencies |
--CondOpt2 |
-N |
Name of the output file |
--CondOpt2 |
-E |
Number of energy points used in the integration |
--CondOpt2 |
-M |
Number of Chebyshev moments |
--CondOpt2 |
-R |
Ratio of the second frequency relative to the first one |
--CondOpt2 |
-P |
If set to 1: writes all the different contributions to separate files |
--CondOpt2 |
-T |
Temperature |
--CondOpt2 |
-F |
Fermi energy |
--CondOpt2 |
-S |
Broadening parameter of the Green’s function |
--CondOpt2 |
-O |
min max num Range of frequencies |
All the values specified in this way are assumed to be in the same units as the ones used in the configuration file. All quantities are double-precision numbers except for the ones representing integers, such as the number of points. This list may be found in KITE-tools, run KITE-tools --help
:
Output¶
In the table below, we specify the name of the files that are created by KITE-tools according to the calculated quantity and the format of the data file.
Quantity | File | Column 1 | Column 2 | Column 3 |
---|---|---|---|---|
Local Density of States | ldos{E}.dat |
lattice position | LDOS (\(Re\)) | |
ARPES | arpes.dat |
k-vector | ARPES (\(Re\)) | |
Density of States | dos.dat |
energy | DOS (\(Re\)) | DOS (\(Im\)) |
Optical Conductivity | optical_cond.dat |
Frequency | Opt. Cond (\(Re\)) | Opt. Cond (\(Im\)) |
DC Conductivity | condDC.dat |
Fermi energy | Cond (\(Re\)) | Cond (\(Im\)) |
Second-order optical conductivity | nonlinear_cond.dat |
Frequency | NL Cond (\(Re\)) | NL Cond (\(Im\)) |
Single-shot DC Conductivity | [HDF5-filename].dat |
Fermi energy | Cond (\(Re\)) | Cond (\(Im\)) |
- All linear conductivities are in units of \(e^2/h\)
- Both Planck’s constant and electron charge are set to 1.
- LDOS outputs one file for each requested energy. The energy is in the E in the file name.
For more details on the type of calculations performed during post-processing, check Resources where we discuss our method.
Processing the single-shot DC conductivity
The single shot DC conductivity does not need any post-processing as it is an energy dependent calculation where the conductivity is calculated on the fly.
In this particular case, the data is extracted directly from the hdf file with the following python script in the kite/tools/
-folder:
The output of this script will be a data-file with name output.dat
or similar, structured as given in the table above.
Examples¶
Example 1¶
Processes the .h5 file as usual but ignores the number of energy points in the density of states present there. Instead, KITE-tools will use the value 1024 as specified in the example.
Example 2¶
Processes the .h5 file but uses 552 points for the energy integration and a broadening parameter of 0.01.
Example 3¶
Calculates the DC conductivity using a temperature of 0.4 and 500 equidistant Fermi energies spanning the spectrum of the Hamiltonian.
Example 4¶
Calculates the DC conductivity using 30 equidistant Fermi energies in the range [-1.2, 2.5]
and the optical conductivity using a temperature of 93.
@@includekite_tools_readme.md