score#
Script interface to the radtools package.
The behaviour of the command line interface is defined by the functions in this module.
The functions are called with the same names as the scripts,
but the prefix "rad-" is removed and "-" are substituted by "_".
Function`s arguments directly correspond to the full names of the
arguments of the script (i.e. the argument -if, --input-filename
of the script rad-extract-tb2j.py is passed to the function extract_tb2j()
as the
argument input_filename
).
Full documentation on the behaviour is available in the Scripts guide.
Example
Identification of Wannier centres from the file "seedname_centres.xyz" with increased span of 0.2, saving the result in the file "identified_centres" of the current directory:
rad-identify-wannier-centres.py seedname_centres.xyz -s 0.2 -on identified_centres
The same result could be achieved by calling the function
identify_wannier_centres()
:
from radtools import identify_wannier_centres
identify_wannier_centres("seedname_centres.xyz",
span = 0.2,
output_name="identified_centres")
Scenarios#
|
rad-identify-wannier-centres.py script. |
|
rad-plot-dos.py script. |
|
rad-plot-fatbands.py script. |
|
rad-make-template.py script. |
|
rad-extract-tb2j.py script. |
|
rad-plot-tb2j.py script. |
|
rad-plot-tb2j-magnons.py script. |