diff --git a/docs/.buildinfo b/docs/.buildinfo index 268c4899..64f7eff1 100644 --- a/docs/.buildinfo +++ b/docs/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: bbb46bcc16cfe3131c0a094bc7b914a0 +config: aea0b65a1ad033aad36b6b9855be25ff tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/docs/_downloads/bc82bea3a5dd7bdba60b65220891d9e5/examples_python.zip b/docs/_downloads/bc82bea3a5dd7bdba60b65220891d9e5/examples_python.zip index d0fa3d3d..4fdc2b9f 100644 Binary files a/docs/_downloads/bc82bea3a5dd7bdba60b65220891d9e5/examples_python.zip and b/docs/_downloads/bc82bea3a5dd7bdba60b65220891d9e5/examples_python.zip differ diff --git a/docs/_downloads/cc4da0ee3820da1d1048c855e1a3d8c1/plot_2d_bands.ipynb b/docs/_downloads/cc4da0ee3820da1d1048c855e1a3d8c1/plot_2d_bands.ipynb new file mode 100644 index 00000000..134bf9be --- /dev/null +++ b/docs/_downloads/cc4da0ee3820da1d1048c855e1a3d8c1/plot_2d_bands.ipynb @@ -0,0 +1,122 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Plotting 2D band structure {#ref_plotting_2d_bands}\r\n\r\nPlotting 2D band structure example.\r\n\r\nFirst, specify the data directory where the band structure data is\r\nlocated.\r\n\r\n``` {caption=\"Downloading example\"}\r\ndata_dir = pyprocar.download_example(save_dir='', \r\n material='graphene',\r\n code='vasp', \r\n spin_calc_type='non-spin-polarized',\r\n calc_type='2d_bands')\r\n```\r\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "importing pyprocar and specifying local data_dir\r\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "import os\nimport pyprocar\n\ndata_dir = f\"{pyprocar.utils.ROOT}{os.sep}data{os.sep}examples{os.sep}graphene{os.sep}vasp{os.sep}non-spin-polarized{os.sep}2d_bands\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Plain mode\r\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "spins=[0]\nhandler = pyprocar.BandStructure2DHandler(code='vasp',dirname=data_dir,apply_symmetry=False)\nhandler.plot_band_structure(mode='plain',\n add_fermi_plane=True,\n bands=[3,4],\n fermi_plane_size=4,\n energy_lim=[-2.5,0.8],\n extended_zone_directions=[[1,0,0],[0,1,0],[-1,0,0],[0,-1,0],[1,-1,0],[-1,1,0],[-1,-1,0],[[1,1,0]]],\n spins=spins)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Parametric mode\r\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "atoms=[0,1]\norbitals=[1,2,3]\nspins=[0]\nhandler = pyprocar.BandStructure2DHandler(code='vasp',dirname=data_dir,apply_symmetry=False)\nhandler.plot_band_structure(mode='parametric',\n atoms=atoms,\n orbitals=orbitals,\n spins=spins)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Property Projection mode\r\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "handler = pyprocar.BandStructure2DHandler(code='vasp',dirname=data_dir,apply_symmetry=False)\nhandler.plot_band_structure(mode='property_projection',\n property_name='band_velocity',\n bands=[3,4],\n fermi_plane_size=4,\n scalar_bar_position_x=0.3,\n energy_lim=[-2.5,0.8],\n scalar_bar_title=r'Band Velocity ($\\frac{m}{s}$)',\n add_fermi_plane=True,)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Spin Texture mode\r\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "data_dir = os.path.join(pyprocar.utils.ROOT,'data','examples','BiSb_monolayer','vasp','non-colinear','fermi')\n\n\natoms=[0]\norbitals=[4,5,6,7,8]\nhandler = pyprocar.BandStructure2DHandler(code='vasp',dirname=data_dir,apply_symmetry=False)\nhandler.plot_band_structure(mode='spin_texture',\n spin_texture=True,\n atoms=atoms,\n orbitals=orbitals,\n add_fermi_plane=True,\n fermi_plane_size=2,\n energy_lim=[-2,2],\n fermi_text_position=[0,0.5,0],\n scalar_bar_position_x=0.3,\n\n clip_brillouin_zone_factor=1,\n surface_clim=[-0.5,0.5])" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.17" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} \ No newline at end of file diff --git a/docs/_downloads/fb15cc3f1cf9cfdc4c42fd1b26bacdef/plot_2d_bands.py b/docs/_downloads/fb15cc3f1cf9cfdc4c42fd1b26bacdef/plot_2d_bands.py new file mode 100644 index 00000000..6ce45d85 --- /dev/null +++ b/docs/_downloads/fb15cc3f1cf9cfdc4c42fd1b26bacdef/plot_2d_bands.py @@ -0,0 +1,94 @@ +""" + +.. _ref_plotting_2d_bands: + +Plotting 2D band structure +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Plotting 2D band structure example. + +First, specify the data directory where the band structure data is located. + +.. code-block:: + :caption: Downloading example + + data_dir = pyprocar.download_example(save_dir='', + material='graphene', + code='vasp', + spin_calc_type='non-spin-polarized', + calc_type='2d_bands') + +""" + + +############################################################################### +# importing pyprocar and specifying local data_dir +import os +import pyprocar + +data_dir = f"{pyprocar.utils.ROOT}{os.sep}data{os.sep}examples{os.sep}graphene{os.sep}vasp{os.sep}non-spin-polarized{os.sep}2d_bands" + + + +############################################################################### +# Plain mode +# +++++++++++++++++++++++++++++++++++++++ +spins=[0] +handler = pyprocar.BandStructure2DHandler(code='vasp',dirname=data_dir,apply_symmetry=False) +handler.plot_band_structure(mode='plain', + add_fermi_plane=True, + bands=[3,4], + fermi_plane_size=4, + energy_lim=[-2.5,0.8], + extended_zone_directions=[[1,0,0],[0,1,0],[-1,0,0],[0,-1,0],[1,-1,0],[-1,1,0],[-1,-1,0],[[1,1,0]]], + spins=spins) + +############################################################################### +# Parametric mode +# +++++++++++++++++++++++++++++++++++++++ + +atoms=[0,1] +orbitals=[1,2,3] +spins=[0] +handler = pyprocar.BandStructure2DHandler(code='vasp',dirname=data_dir,apply_symmetry=False) +handler.plot_band_structure(mode='parametric', + atoms=atoms, + orbitals=orbitals, + spins=spins) + +############################################################################### +# Property Projection mode +# +++++++++++++++++++++++++++++++++++++++ +handler = pyprocar.BandStructure2DHandler(code='vasp',dirname=data_dir,apply_symmetry=False) +handler.plot_band_structure(mode='property_projection', + property_name='band_velocity', + bands=[3,4], + fermi_plane_size=4, + scalar_bar_position_x=0.3, + energy_lim=[-2.5,0.8], + scalar_bar_title=r'Band Velocity ($\frac{m}{s}$)', + add_fermi_plane=True,) + +############################################################################### +# Spin Texture mode +# +++++++++++++++++++++++++++++++++++++++ + +data_dir = os.path.join(pyprocar.utils.ROOT,'data','examples','BiSb_monolayer','vasp','non-colinear','fermi') + + +atoms=[0] +orbitals=[4,5,6,7,8] +handler = pyprocar.BandStructure2DHandler(code='vasp',dirname=data_dir,apply_symmetry=False) +handler.plot_band_structure(mode='spin_texture', + spin_texture=True, + atoms=atoms, + orbitals=orbitals, + add_fermi_plane=True, + fermi_plane_size=2, + energy_lim=[-2,2], + fermi_text_position=[0,0.5,0], + scalar_bar_position_x=0.3, + + clip_brillouin_zone_factor=1, + surface_clim=[-0.5,0.5]) + diff --git a/docs/_downloads/fb625db3c50d423b1b7881136ffdeec8/examples_jupyter.zip b/docs/_downloads/fb625db3c50d423b1b7881136ffdeec8/examples_jupyter.zip index 706d77b7..b0ecdb9e 100644 Binary files a/docs/_downloads/fb625db3c50d423b1b7881136ffdeec8/examples_jupyter.zip and b/docs/_downloads/fb625db3c50d423b1b7881136ffdeec8/examples_jupyter.zip differ diff --git a/docs/_images/2nd_publication.png b/docs/_images/2nd_publication.png new file mode 100644 index 00000000..72b1f86e Binary files /dev/null and b/docs/_images/2nd_publication.png differ diff --git a/docs/_images/sphx_glr_plot_2d_bands_001.png b/docs/_images/sphx_glr_plot_2d_bands_001.png new file mode 100644 index 00000000..62380715 Binary files /dev/null and b/docs/_images/sphx_glr_plot_2d_bands_001.png differ diff --git a/docs/_images/sphx_glr_plot_2d_bands_002.png b/docs/_images/sphx_glr_plot_2d_bands_002.png new file mode 100644 index 00000000..cc7e02cc Binary files /dev/null and b/docs/_images/sphx_glr_plot_2d_bands_002.png differ diff --git a/docs/_images/sphx_glr_plot_2d_bands_003.png b/docs/_images/sphx_glr_plot_2d_bands_003.png new file mode 100644 index 00000000..454abce4 Binary files /dev/null and b/docs/_images/sphx_glr_plot_2d_bands_003.png differ diff --git a/docs/_images/sphx_glr_plot_2d_bands_004.png b/docs/_images/sphx_glr_plot_2d_bands_004.png new file mode 100644 index 00000000..6bc51575 Binary files /dev/null and b/docs/_images/sphx_glr_plot_2d_bands_004.png differ diff --git a/docs/_images/sphx_glr_plot_2d_bands_thumb.png b/docs/_images/sphx_glr_plot_2d_bands_thumb.png new file mode 100644 index 00000000..d872f9fc Binary files /dev/null and b/docs/_images/sphx_glr_plot_2d_bands_thumb.png differ diff --git a/docs/_images/sphx_glr_plot_atomic_levels_001.png b/docs/_images/sphx_glr_plot_atomic_levels_001.png index 0376479c..86fb1c4c 100644 Binary files a/docs/_images/sphx_glr_plot_atomic_levels_001.png and b/docs/_images/sphx_glr_plot_atomic_levels_001.png differ diff --git a/docs/_images/sphx_glr_plot_atomic_levels_thumb.png b/docs/_images/sphx_glr_plot_atomic_levels_thumb.png index 9e58d2ce..5af5a752 100644 Binary files a/docs/_images/sphx_glr_plot_atomic_levels_thumb.png and b/docs/_images/sphx_glr_plot_atomic_levels_thumb.png differ diff --git a/docs/_images/sphx_glr_plot_autobands_001.png b/docs/_images/sphx_glr_plot_autobands_001.png index a7ddb2ab..c46b2fb4 100644 Binary files a/docs/_images/sphx_glr_plot_autobands_001.png and b/docs/_images/sphx_glr_plot_autobands_001.png differ diff --git a/docs/_images/sphx_glr_plot_autobands_002.png b/docs/_images/sphx_glr_plot_autobands_002.png index ee221f44..da0624c4 100644 Binary files a/docs/_images/sphx_glr_plot_autobands_002.png and b/docs/_images/sphx_glr_plot_autobands_002.png differ diff --git a/docs/_images/sphx_glr_plot_autobands_thumb.png b/docs/_images/sphx_glr_plot_autobands_thumb.png index eecd7014..290ae713 100644 Binary files a/docs/_images/sphx_glr_plot_autobands_thumb.png and b/docs/_images/sphx_glr_plot_autobands_thumb.png differ diff --git a/docs/_images/sphx_glr_plot_bandsdosplot_configurations_002.png b/docs/_images/sphx_glr_plot_bandsdosplot_configurations_002.png index fa7c6a45..0d297059 100644 Binary files a/docs/_images/sphx_glr_plot_bandsdosplot_configurations_002.png and b/docs/_images/sphx_glr_plot_bandsdosplot_configurations_002.png differ diff --git a/docs/_images/sphx_glr_plot_bandsdosplot_configurations_003.png b/docs/_images/sphx_glr_plot_bandsdosplot_configurations_003.png index ee08d648..bef228dd 100644 Binary files a/docs/_images/sphx_glr_plot_bandsdosplot_configurations_003.png and b/docs/_images/sphx_glr_plot_bandsdosplot_configurations_003.png differ diff --git a/docs/_images/sphx_glr_plot_bandsplot_configurations_002.png b/docs/_images/sphx_glr_plot_bandsplot_configurations_002.png index 30f37783..cf4f504a 100644 Binary files a/docs/_images/sphx_glr_plot_bandsplot_configurations_002.png and b/docs/_images/sphx_glr_plot_bandsplot_configurations_002.png differ diff --git a/docs/_images/sphx_glr_plot_bandsplot_configurations_003.png b/docs/_images/sphx_glr_plot_bandsplot_configurations_003.png index 84b62fd3..63f9ab53 100644 Binary files a/docs/_images/sphx_glr_plot_bandsplot_configurations_003.png and b/docs/_images/sphx_glr_plot_bandsplot_configurations_003.png differ diff --git a/docs/_images/sphx_glr_plot_bandsplot_configurations_004.png b/docs/_images/sphx_glr_plot_bandsplot_configurations_004.png index ccea7176..63ec1efd 100644 Binary files a/docs/_images/sphx_glr_plot_bandsplot_configurations_004.png and b/docs/_images/sphx_glr_plot_bandsplot_configurations_004.png differ diff --git a/docs/_images/sphx_glr_plot_colinear_002.png b/docs/_images/sphx_glr_plot_colinear_002.png index 02044318..ce14d047 100644 Binary files a/docs/_images/sphx_glr_plot_colinear_002.png and b/docs/_images/sphx_glr_plot_colinear_002.png differ diff --git a/docs/_images/sphx_glr_plot_colinear_003.png b/docs/_images/sphx_glr_plot_colinear_003.png index 02044318..ce14d047 100644 Binary files a/docs/_images/sphx_glr_plot_colinear_003.png and b/docs/_images/sphx_glr_plot_colinear_003.png differ diff --git a/docs/_images/sphx_glr_plot_colinear_004.png b/docs/_images/sphx_glr_plot_colinear_004.png index d38b030e..61151506 100644 Binary files a/docs/_images/sphx_glr_plot_colinear_004.png and b/docs/_images/sphx_glr_plot_colinear_004.png differ diff --git a/docs/_images/sphx_glr_plot_colinear_005.png b/docs/_images/sphx_glr_plot_colinear_005.png index 74d4fadf..b3f5ec0a 100644 Binary files a/docs/_images/sphx_glr_plot_colinear_005.png and b/docs/_images/sphx_glr_plot_colinear_005.png differ diff --git a/docs/_images/sphx_glr_plot_colinear_006.png b/docs/_images/sphx_glr_plot_colinear_006.png index 5a1b4c81..7fd211ba 100644 Binary files a/docs/_images/sphx_glr_plot_colinear_006.png and b/docs/_images/sphx_glr_plot_colinear_006.png differ diff --git a/docs/_images/sphx_glr_plot_colinear_007.png b/docs/_images/sphx_glr_plot_colinear_007.png index a993f35e..e33a515c 100644 Binary files a/docs/_images/sphx_glr_plot_colinear_007.png and b/docs/_images/sphx_glr_plot_colinear_007.png differ diff --git a/docs/_images/sphx_glr_plot_colinear_008.png b/docs/_images/sphx_glr_plot_colinear_008.png index 9ae4e84f..b0c32b1c 100644 Binary files a/docs/_images/sphx_glr_plot_colinear_008.png and b/docs/_images/sphx_glr_plot_colinear_008.png differ diff --git a/docs/_images/sphx_glr_plot_colinear_dos_002.png b/docs/_images/sphx_glr_plot_colinear_dos_002.png index 7384003f..cb2c52b6 100644 Binary files a/docs/_images/sphx_glr_plot_colinear_dos_002.png and b/docs/_images/sphx_glr_plot_colinear_dos_002.png differ diff --git a/docs/_images/sphx_glr_plot_colinear_dos_003.png b/docs/_images/sphx_glr_plot_colinear_dos_003.png index 46833752..dd479fce 100644 Binary files a/docs/_images/sphx_glr_plot_colinear_dos_003.png and b/docs/_images/sphx_glr_plot_colinear_dos_003.png differ diff --git a/docs/_images/sphx_glr_plot_compare_bands_001.png b/docs/_images/sphx_glr_plot_compare_bands_001.png index a5810b45..4f9e4dfe 100644 Binary files a/docs/_images/sphx_glr_plot_compare_bands_001.png and b/docs/_images/sphx_glr_plot_compare_bands_001.png differ diff --git a/docs/_images/sphx_glr_plot_compare_bands_thumb.png b/docs/_images/sphx_glr_plot_compare_bands_thumb.png index caa2b255..02590e3e 100644 Binary files a/docs/_images/sphx_glr_plot_compare_bands_thumb.png and b/docs/_images/sphx_glr_plot_compare_bands_thumb.png differ diff --git a/docs/_images/sphx_glr_plot_dosplot_configurations_002.png b/docs/_images/sphx_glr_plot_dosplot_configurations_002.png index 37ef323c..2abc05bd 100644 Binary files a/docs/_images/sphx_glr_plot_dosplot_configurations_002.png and b/docs/_images/sphx_glr_plot_dosplot_configurations_002.png differ diff --git a/docs/_images/sphx_glr_plot_dosplot_configurations_003.png b/docs/_images/sphx_glr_plot_dosplot_configurations_003.png index f77065f6..7a0092a2 100644 Binary files a/docs/_images/sphx_glr_plot_dosplot_configurations_003.png and b/docs/_images/sphx_glr_plot_dosplot_configurations_003.png differ diff --git a/docs/_images/sphx_glr_plot_ipr_001.png b/docs/_images/sphx_glr_plot_ipr_001.png index 2b596436..dd6dae6b 100644 Binary files a/docs/_images/sphx_glr_plot_ipr_001.png and b/docs/_images/sphx_glr_plot_ipr_001.png differ diff --git a/docs/_images/sphx_glr_plot_ipr_002.png b/docs/_images/sphx_glr_plot_ipr_002.png index 2adcc19a..35e69555 100644 Binary files a/docs/_images/sphx_glr_plot_ipr_002.png and b/docs/_images/sphx_glr_plot_ipr_002.png differ diff --git a/docs/_images/sphx_glr_plot_ipr_thumb.png b/docs/_images/sphx_glr_plot_ipr_thumb.png index 219ff9c4..81084530 100644 Binary files a/docs/_images/sphx_glr_plot_ipr_thumb.png and b/docs/_images/sphx_glr_plot_ipr_thumb.png differ diff --git a/docs/_images/sphx_glr_plot_noncolinear_dos_qe_001.png b/docs/_images/sphx_glr_plot_noncolinear_dos_qe_001.png index 1928366c..dd54088c 100644 Binary files a/docs/_images/sphx_glr_plot_noncolinear_dos_qe_001.png and b/docs/_images/sphx_glr_plot_noncolinear_dos_qe_001.png differ diff --git a/docs/_images/sphx_glr_plot_noncolinear_dos_qe_thumb.png b/docs/_images/sphx_glr_plot_noncolinear_dos_qe_thumb.png index 1606849b..57bfae8c 100644 Binary files a/docs/_images/sphx_glr_plot_noncolinear_dos_qe_thumb.png and b/docs/_images/sphx_glr_plot_noncolinear_dos_qe_thumb.png differ diff --git a/docs/_images/sphx_glr_plot_noncolinear_dos_vasp_001.png b/docs/_images/sphx_glr_plot_noncolinear_dos_vasp_001.png index 3aa074c5..338a7f5e 100644 Binary files a/docs/_images/sphx_glr_plot_noncolinear_dos_vasp_001.png and b/docs/_images/sphx_glr_plot_noncolinear_dos_vasp_001.png differ diff --git a/docs/_images/sphx_glr_plot_noncolinear_dos_vasp_thumb.png b/docs/_images/sphx_glr_plot_noncolinear_dos_vasp_thumb.png index 78a3d028..665c44e8 100644 Binary files a/docs/_images/sphx_glr_plot_noncolinear_dos_vasp_thumb.png and b/docs/_images/sphx_glr_plot_noncolinear_dos_vasp_thumb.png differ diff --git a/docs/_images/sphx_glr_plot_noncolinear_qe_002.png b/docs/_images/sphx_glr_plot_noncolinear_qe_002.png index bc93dc0a..247477a1 100644 Binary files a/docs/_images/sphx_glr_plot_noncolinear_qe_002.png and b/docs/_images/sphx_glr_plot_noncolinear_qe_002.png differ diff --git a/docs/_images/sphx_glr_plot_noncolinear_qe_thumb.png b/docs/_images/sphx_glr_plot_noncolinear_qe_thumb.png index 685cec40..c92c69b1 100644 Binary files a/docs/_images/sphx_glr_plot_noncolinear_qe_thumb.png and b/docs/_images/sphx_glr_plot_noncolinear_qe_thumb.png differ diff --git a/docs/_images/sphx_glr_plot_noncolinear_vasp_002.png b/docs/_images/sphx_glr_plot_noncolinear_vasp_002.png index a19dfe53..92f1d2a4 100644 Binary files a/docs/_images/sphx_glr_plot_noncolinear_vasp_002.png and b/docs/_images/sphx_glr_plot_noncolinear_vasp_002.png differ diff --git a/docs/_images/sphx_glr_plot_spin_polarized_003.png b/docs/_images/sphx_glr_plot_spin_polarized_003.png index 65c0b4d3..c460ffac 100644 Binary files a/docs/_images/sphx_glr_plot_spin_polarized_003.png and b/docs/_images/sphx_glr_plot_spin_polarized_003.png differ diff --git a/docs/_images/sphx_glr_plot_spin_polarized_004.png b/docs/_images/sphx_glr_plot_spin_polarized_004.png index 9f29ad4c..35a3ec0d 100644 Binary files a/docs/_images/sphx_glr_plot_spin_polarized_004.png and b/docs/_images/sphx_glr_plot_spin_polarized_004.png differ diff --git a/docs/_images/sphx_glr_plot_spin_polarized_dos_003.png b/docs/_images/sphx_glr_plot_spin_polarized_dos_003.png index 8d96dd95..2eaec921 100644 Binary files a/docs/_images/sphx_glr_plot_spin_polarized_dos_003.png and b/docs/_images/sphx_glr_plot_spin_polarized_dos_003.png differ diff --git a/docs/_images/sphx_glr_plot_spin_polarized_dos_004.png b/docs/_images/sphx_glr_plot_spin_polarized_dos_004.png index f5dfd381..92fb449c 100644 Binary files a/docs/_images/sphx_glr_plot_spin_polarized_dos_004.png and b/docs/_images/sphx_glr_plot_spin_polarized_dos_004.png differ diff --git a/docs/_images/sphx_glr_plot_unfolding_002.png b/docs/_images/sphx_glr_plot_unfolding_002.png index c6e94649..412c812e 100644 Binary files a/docs/_images/sphx_glr_plot_unfolding_002.png and b/docs/_images/sphx_glr_plot_unfolding_002.png differ diff --git a/docs/_modules/index.html b/docs/_modules/index.html index 4fee396a..214c5cf3 100644 --- a/docs/_modules/index.html +++ b/docs/_modules/index.html @@ -7,7 +7,7 @@ - Overview: module code — PyProcar 6.1.5 documentation + Overview: module code — PyProcar 6.1.7 documentation @@ -39,7 +39,7 @@ - + @@ -109,7 +109,7 @@ -

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

diff --git a/docs/_modules/pyprocar/core/brillouin_zone.html b/docs/_modules/pyprocar/core/brillouin_zone.html index 78ce17f3..be16b298 100644 --- a/docs/_modules/pyprocar/core/brillouin_zone.html +++ b/docs/_modules/pyprocar/core/brillouin_zone.html @@ -7,7 +7,7 @@ - pyprocar.core.brillouin_zone — PyProcar 6.1.5 documentation + pyprocar.core.brillouin_zone — PyProcar 6.1.7 documentation @@ -39,7 +39,7 @@ - + @@ -109,7 +109,7 @@ -

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

@@ -441,7 +441,6 @@

Source code for pyprocar.core.brillouin_zone

from .surface import Surface
 
-
 class Lines:
     def __init__(self, 
                 verts:np.ndarray=None, 
@@ -604,11 +603,11 @@ 

Source code for pyprocar.core.brillouin_zone

for vert in verts:
             vert_z=vert[2]
-            if np.isclose(vert_z,min_val):
+            if np.isclose(vert_z,min_val,atol=1e-2):
                 vert[2]=e_min
-            if np.isclose(vert_z,max_val):
+            if np.isclose(vert_z,max_val,atol=1e-2):
                 vert[2]=e_max
-        
+
         new_faces = []
         for iface in faces:
             new_faces.append(len(iface))
diff --git a/docs/_modules/pyprocar/core/dos.html b/docs/_modules/pyprocar/core/dos.html
index 2fc23aaf..180c95c6 100644
--- a/docs/_modules/pyprocar/core/dos.html
+++ b/docs/_modules/pyprocar/core/dos.html
@@ -7,7 +7,7 @@
   
     
     
-    pyprocar.core.dos — PyProcar 6.1.5 documentation
+    pyprocar.core.dos — PyProcar 6.1.7 documentation
   
   
   
@@ -39,7 +39,7 @@
   
 
 
-    
+    
     
     
     
@@ -109,7 +109,7 @@
   
   
   
-    

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

@@ -441,12 +441,9 @@

Source code for pyprocar.core.dos

 
 from typing import List
 
-from typing import List
-
-from scipy.interpolate import CubicSpline
 import numpy as np
 import numpy.typing as npt
-
+from scipy.interpolate import CubicSpline
 from sympy.physics.quantum.cg import CG
 
 
diff --git a/docs/_modules/pyprocar/core/ebs.html b/docs/_modules/pyprocar/core/ebs.html
index 702f1967..3bbf145b 100644
--- a/docs/_modules/pyprocar/core/ebs.html
+++ b/docs/_modules/pyprocar/core/ebs.html
@@ -7,7 +7,7 @@
   
     
     
-    pyprocar.core.ebs — PyProcar 6.1.5 documentation
+    pyprocar.core.ebs — PyProcar 6.1.7 documentation
   
   
   
@@ -39,7 +39,7 @@
   
 
 
-    
+    
     
     
     
@@ -109,7 +109,7 @@
   
   
   
-    

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

@@ -436,7 +436,6 @@

Source code for pyprocar.core.ebs

 
 """
 
-# from . import Structure
 from typing import List
 import itertools
 import copy
@@ -477,7 +476,7 @@ 

Source code for pyprocar.core.ebs

         weights : np.ndarray, optional
             The weights of the kpoints. Will have the shape (n_kpoints, 1), defaults to None
         labels : List, optional
-            A list of orbital names, defaults to None
+
         reciprocal_lattice : np.ndarray, optional
             The reciprocal lattice vector matrix. Will have the shape (3, 3), defaults to None
         shifted_to_efermi : bool, optional
@@ -1317,7 +1316,6 @@ 

Source code for pyprocar.core.ebs

             ret = np.sum(ret[:, :, spins], axis=-1).reshape(
                 self.nkpoints, self.nbands, 1
             )
-        print('ret.shape', ret.shape)
         return ret
[docs] def unfold(self, transformation_matrix=None, structure=None): @@ -1535,8 +1533,44 @@

Source code for pyprocar.core.ebs

         ret += 'Total number of bands    = {}\n'.format(self.nbands)
         ret += 'Total number of atoms    = {}\n'.format(self.natoms)
         ret += 'Total number of orbitals = {}\n'.format(self.norbitals)
-        return ret
+ return ret + +
[docs] def fix_collinear_spin(self): + """ + Converts data from two spin channels to a single channel, adjusting the spin down values to negatives. This is typically used for plotting the Density of States (DOS). + + Parameters + ---------- + No parameters are required for this function. + Returns + ------- + bool + Returns True if the function changed the data, False otherwise. + """ + + print('old bands.shape', self.bands.shape) + if self.bands.shape[2] != 2: + return False + shape = list(self.bands.shape) + shape[1] = shape[1]*2 + shape[-1] = 1 + self.bands.shape = shape + print('new bands.shape', self.bands.shape) + + + if self.projected is not None: + print('old projected.shape', self.projected.shape) + self.projected[... , -1] = -self.projected[... , -1] + shape = list(self.projected.shape) + shape[1] = shape[1]*2 + shape[-1] = 1 + self.projected.shape = shape + print('new projected.shape', self.projected.shape) + + + return True
+ def harmonic_average_effective_mass(tensor): inv_effective_mass_tensor = tensor e_mass = 3*(inv_effective_mass_tensor[0,0] + inv_effective_mass_tensor[1,1] + inv_effective_mass_tensor[2,2])**-1 /FREE_ELECTRON_MASS @@ -1682,7 +1716,7 @@

Source code for pyprocar.core.ebs

                 
     #     # # self.bands = new_bands
     #     # # self.projected = new_projected
-    #     return 
+    #     return
 
diff --git a/docs/_modules/pyprocar/core/fermisurface.html b/docs/_modules/pyprocar/core/fermisurface.html index 04466f48..57a746ad 100644 --- a/docs/_modules/pyprocar/core/fermisurface.html +++ b/docs/_modules/pyprocar/core/fermisurface.html @@ -7,7 +7,7 @@ - pyprocar.core.fermisurface — PyProcar 6.1.5 documentation + pyprocar.core.fermisurface — PyProcar 6.1.7 documentation @@ -39,7 +39,7 @@ - + @@ -109,7 +109,7 @@ -

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

diff --git a/docs/_modules/pyprocar/core/fermisurface3D.html b/docs/_modules/pyprocar/core/fermisurface3D.html index eee8a419..cd15d806 100644 --- a/docs/_modules/pyprocar/core/fermisurface3D.html +++ b/docs/_modules/pyprocar/core/fermisurface3D.html @@ -7,7 +7,7 @@ - pyprocar.core.fermisurface3D — PyProcar 6.1.5 documentation + pyprocar.core.fermisurface3D — PyProcar 6.1.7 documentation @@ -39,7 +39,7 @@ - + @@ -109,7 +109,7 @@ -

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

diff --git a/docs/_modules/pyprocar/core/isosurface.html b/docs/_modules/pyprocar/core/isosurface.html index 521c8707..785241a7 100644 --- a/docs/_modules/pyprocar/core/isosurface.html +++ b/docs/_modules/pyprocar/core/isosurface.html @@ -7,7 +7,7 @@ - pyprocar.core.isosurface — PyProcar 6.1.5 documentation + pyprocar.core.isosurface — PyProcar 6.1.7 documentation @@ -39,7 +39,7 @@ - + @@ -109,7 +109,7 @@ -

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

@@ -433,6 +433,7 @@

Source code for pyprocar.core.isosurface

 __date__ = "March 31, 2020"
 
 from typing import List
+
 import numpy as np
 from scipy import interpolate
 from skimage import measure
diff --git a/docs/_modules/pyprocar/core/kpath.html b/docs/_modules/pyprocar/core/kpath.html
index abca9e88..3a854ed9 100644
--- a/docs/_modules/pyprocar/core/kpath.html
+++ b/docs/_modules/pyprocar/core/kpath.html
@@ -7,7 +7,7 @@
   
     
     
-    pyprocar.core.kpath — PyProcar 6.1.5 documentation
+    pyprocar.core.kpath — PyProcar 6.1.7 documentation
   
   
   
@@ -39,7 +39,7 @@
   
 
 
-    
+    
     
     
     
@@ -109,7 +109,7 @@
   
   
   
-    

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

@@ -435,6 +435,7 @@

Source code for pyprocar.core.kpath

 
 import numpy as np
 import pyvista
+
 from ..utils import mathematics
 
 # TODO Add fmt option to other codes in write_to_file
diff --git a/docs/_modules/pyprocar/core/structure.html b/docs/_modules/pyprocar/core/structure.html
index 32dff511..047a42e5 100644
--- a/docs/_modules/pyprocar/core/structure.html
+++ b/docs/_modules/pyprocar/core/structure.html
@@ -7,7 +7,7 @@
   
     
     
-    pyprocar.core.structure — PyProcar 6.1.5 documentation
+    pyprocar.core.structure — PyProcar 6.1.7 documentation
   
   
   
@@ -39,7 +39,7 @@
   
 
 
-    
+    
     
     
     
@@ -109,7 +109,7 @@
   
   
   
-    

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

@@ -471,7 +471,7 @@

Source code for pyprocar.core.structure

         fractional_coordinates=None,
         lattice=None,
         rotations=None
-    ):
+        ):
         
         if fractional_coordinates is not None:
             self.fractional_coordinates = np.array(fractional_coordinates)
diff --git a/docs/_modules/pyprocar/core/surface.html b/docs/_modules/pyprocar/core/surface.html
index 473e1209..4253f765 100644
--- a/docs/_modules/pyprocar/core/surface.html
+++ b/docs/_modules/pyprocar/core/surface.html
@@ -7,7 +7,7 @@
   
     
     
-    pyprocar.core.surface — PyProcar 6.1.5 documentation
+    pyprocar.core.surface — PyProcar 6.1.7 documentation
   
   
   
@@ -39,7 +39,7 @@
   
 
 
-    
+    
     
     
     
@@ -109,7 +109,7 @@
   
   
   
-    

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

diff --git a/docs/_modules/pyprocar/io/abinit.html b/docs/_modules/pyprocar/io/abinit.html index a115dc0b..54bf4ad1 100644 --- a/docs/_modules/pyprocar/io/abinit.html +++ b/docs/_modules/pyprocar/io/abinit.html @@ -7,7 +7,7 @@ - pyprocar.io.abinit — PyProcar 6.1.5 documentation + pyprocar.io.abinit — PyProcar 6.1.7 documentation @@ -39,7 +39,7 @@ - + @@ -109,7 +109,7 @@ -

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

@@ -428,16 +428,16 @@

Source code for pyprocar.io.abinit

 import re
-from numpy import array
-from ..core import Structure, DensityOfStates, ElectronicBandStructure, KPath
-from ..utils import elements
-from .vasp import Procar, Kpoints
-import numpy as np
 import glob
 import collections
 import os
-import sys
 
+from numpy import array
+import numpy as np
+
+from ..core import Structure, DensityOfStates, ElectronicBandStructure, KPath
+from ..utils import elements
+from .vasp import Procar, Kpoints
 
 
[docs]class Output(collections.abc.Mapping): """This class contains methods to parse the fermi energy, reciprocal diff --git a/docs/_modules/pyprocar/io/bxsf.html b/docs/_modules/pyprocar/io/bxsf.html index fd9ebf04..f3d46539 100644 --- a/docs/_modules/pyprocar/io/bxsf.html +++ b/docs/_modules/pyprocar/io/bxsf.html @@ -7,7 +7,7 @@ - pyprocar.io.bxsf — PyProcar 6.1.5 documentation + pyprocar.io.bxsf — PyProcar 6.1.7 documentation @@ -39,7 +39,7 @@ - + @@ -109,7 +109,7 @@ -

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

@@ -434,6 +434,7 @@

Source code for pyprocar.io.bxsf

 
 import re
 import numpy as np
+
 from pyprocar.core import ElectronicBandStructure
 
 
[docs]class BxsfParser: diff --git a/docs/_modules/pyprocar/io/lobster.html b/docs/_modules/pyprocar/io/lobster.html index c82e340d..5919eb2c 100644 --- a/docs/_modules/pyprocar/io/lobster.html +++ b/docs/_modules/pyprocar/io/lobster.html @@ -7,7 +7,7 @@ - pyprocar.io.lobster — PyProcar 6.1.5 documentation + pyprocar.io.lobster — PyProcar 6.1.7 documentation @@ -39,7 +39,7 @@ - + @@ -109,7 +109,7 @@ -

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

@@ -428,8 +428,7 @@

Source code for pyprocar.io.lobster

 import re
-import os 
-import math
+import os
 
 import numpy as np
 import xml.etree.ElementTree as ET
diff --git a/docs/_modules/pyprocar/io/qe.html b/docs/_modules/pyprocar/io/qe.html
index 862929cd..b86a1bfa 100644
--- a/docs/_modules/pyprocar/io/qe.html
+++ b/docs/_modules/pyprocar/io/qe.html
@@ -7,7 +7,7 @@
   
     
     
-    pyprocar.io.qe — PyProcar 6.1.5 documentation
+    pyprocar.io.qe — PyProcar 6.1.7 documentation
   
   
   
@@ -39,7 +39,7 @@
   
 
 
-    
+    
     
     
     
@@ -109,7 +109,7 @@
   
   
   
-    

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

@@ -436,9 +436,10 @@

Source code for pyprocar.io.qe

 import copy
 import os 
 import math
-import xml.etree.ElementTree as ET
 
+import xml.etree.ElementTree as ET
 import numpy as np
+
 from pyprocar.core import DensityOfStates, Structure, ElectronicBandStructure, KPath
 
 
diff --git a/docs/_modules/pyprocar/io/siesta.html b/docs/_modules/pyprocar/io/siesta.html
index 1ae4d7e1..ff2b6ad6 100644
--- a/docs/_modules/pyprocar/io/siesta.html
+++ b/docs/_modules/pyprocar/io/siesta.html
@@ -7,7 +7,7 @@
   
     
     
-    pyprocar.io.siesta — PyProcar 6.1.5 documentation
+    pyprocar.io.siesta — PyProcar 6.1.7 documentation
   
   
   
@@ -39,7 +39,7 @@
   
 
 
-    
+    
     
     
     
@@ -109,7 +109,7 @@
   
   
   
-    

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

@@ -436,9 +436,10 @@

Source code for pyprocar.io.siesta

 import copy
 import os 
 import math
-import xml.etree.ElementTree as ET
 
+import xml.etree.ElementTree as ET
 import numpy as np
+
 from pyprocar.core import DensityOfStates, Structure, ElectronicBandStructure, KPath
 
 
diff --git a/docs/_modules/pyprocar/io/vasp.html b/docs/_modules/pyprocar/io/vasp.html
index 0c93df63..647bf4dc 100644
--- a/docs/_modules/pyprocar/io/vasp.html
+++ b/docs/_modules/pyprocar/io/vasp.html
@@ -7,7 +7,7 @@
   
     
     
-    pyprocar.io.vasp — PyProcar 6.1.5 documentation
+    pyprocar.io.vasp — PyProcar 6.1.7 documentation
   
   
   
@@ -39,7 +39,7 @@
   
 
 
-    
+    
     
     
     
@@ -109,7 +109,7 @@
   
   
   
-    

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

@@ -429,18 +429,19 @@

Source code for pyprocar.io.vasp

 import os
 import re
-import xml.etree.ElementTree as ET
 import collections
 import gzip
 from typing import List, Tuple, Union, Dict, Any, Optional
 from pathlib import Path
 from functools import cached_property
+import warnings
 
 import numpy as np
 from numpy import array
+import xml.etree.ElementTree as ET
 
 from ..core import Structure, DensityOfStates, ElectronicBandStructure, KPath
-
+from ..utils.strings import remove_comment
 
 
[docs]class Outcar(collections.abc.Mapping): """ @@ -704,16 +705,16 @@

Source code for pyprocar.io.vasp

     filename : str, optional
         The POSCAR filename, by default "POSCAR"
     """
-
[docs] def __init__(self, filename="POSCAR",rotations = None): +
[docs] def __init__(self, filename:Union[str, Path]="POSCAR", rotations = None): self.variables = {} - self.filename = filename + self.filename = Path(filename) self.atoms, self.coordinates, self.lattice = self._parse_poscar() self.structure = Structure( atoms=self.atoms, fractional_coordinates=self.coordinates, lattice=self.lattice,rotations=rotations )
- + def _parse_poscar(self): """ Reads VASP POSCAR file-type and returns the pyprocar structure @@ -733,10 +734,11 @@

Source code for pyprocar.io.vasp

 
         comment = lines[0]
         self.comment = comment
-        scale = float(lines[1])
+        scale = float(remove_comment(lines[1]))
+        
         lattice = np.zeros(shape=(3, 3))
         for i in range(3):
-            lattice[i, :] = [float(x) for x in lines[i + 2].split()[:3]]
+            lattice[i, :] = [float(x) for x in remove_comment(lines[i + 2]).split()[:3]]
         lattice *= scale
         if any([char.isalpha() for char in lines[5]]):
             species = [x for x in lines[5].split()]
@@ -744,13 +746,10 @@ 

Source code for pyprocar.io.vasp

         else:
             shift = 0
 
-            base_dir = self.filename.replace(
-                self.filename.split(os.sep)[-1], "")
-            if base_dir == "":
-                base_dir = "."
-            potcar=os.path.join(base_dir,"POTCAR")
-            if os.path.exists(potcar):
-                with open(base_dir + os.sep + "POTCAR", "r") as rf:
+            base_dir = self.filename.parent
+            potcar_path = base_dir/"POTCAR"
+            if potcar_path.exists():
+                with open(potcar_path, "r") as rf:
                     potcar = rf.read()
 
                 species = re.findall(
@@ -758,8 +757,7 @@ 

Source code for pyprocar.io.vasp

                     potcar,
                 )[::2]
 
-                print(species)
-        composition = [int(x) for x in lines[5 + shift].split()]
+        composition = [int(x) for x in remove_comment(lines[5 + shift].strip()).split()]
         atoms = []
         for i in range(len(composition)):
             for x in composition[i] * [species[i]]:
@@ -774,20 +772,15 @@ 

Source code for pyprocar.io.vasp

         if match[0] == "d":
             direct = True
         elif match[0] == "c":
-            print("haven't implemented conversion to cartesian yet")
+            warnings.warn("Warning the POSCAR is not in Direct coordinates.")
             direct = False
         else:
-            raise RuntimeError('The POSCAR is not in Direct or Cartesian coordinates ')
+            raise RuntimeError('The POSCAR is not in Direct or Cartesian coordinates.')
         coordinates = np.zeros(shape=(natom, 3))
         for i in range(natom):
             coordinates[i, :] = [float(x)
                                  for x in lines[i + 7 + shift].split()[:3]]
-        # print(direct)
-        if direct:
-            return atoms, coordinates, lattice
-        # else:
-        #     direct_coords=np.dot(coordinates, lattice)
-        #     print(direct_coords)
+        return atoms, coordinates, lattice
 
     def __contains__(self, x):
         return x in self.variables
diff --git a/docs/_modules/pyprocar/plotter/dos_plot.html b/docs/_modules/pyprocar/plotter/dos_plot.html
index 5eff22ab..f47f7380 100644
--- a/docs/_modules/pyprocar/plotter/dos_plot.html
+++ b/docs/_modules/pyprocar/plotter/dos_plot.html
@@ -7,7 +7,7 @@
   
     
     
-    pyprocar.plotter.dos_plot — PyProcar 6.1.5 documentation
+    pyprocar.plotter.dos_plot — PyProcar 6.1.7 documentation
   
   
   
@@ -39,7 +39,7 @@
   
 
 
-    
+    
     
     
     
@@ -109,7 +109,7 @@
   
   
   
-    

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

@@ -606,8 +606,12 @@

Source code for pyprocar.plotter.dos_plot

         cmap = mpl.cm.get_cmap(cmap)
         if self.config['plot_bar']['value']:
             norm = mpl.colors.Normalize(vmin=vmin, vmax=vmax)
-            self.fig.colorbar(mpl.cm.ScalarMappable(norm=norm, cmap=cmap), ax=self.ax)
-
+            cb = self.fig.colorbar(mpl.cm.ScalarMappable(norm=norm, cmap=cmap), ax=self.ax)
+            cb.ax.tick_params(labelsize=self.config['colorbar_tick_labelsize']['value'])
+            cb.set_label(self.config['colorbar_title']['value'], 
+                         size=self.config['colorbar_title_size']['value'],
+                         rotation=270,
+                         labelpad=self.config['colorbar_title_padding']['value'])
 
         if orientation == 'horizontal':
             self.set_xlabel(self.config['x_label']['value'])
@@ -763,7 +767,12 @@ 

Source code for pyprocar.plotter.dos_plot

             vmax = (dos_projected.max() / dos_total_projected.max())
         if self.config['plot_bar']['value']:
             norm = mpl.colors.Normalize(vmin=vmin, vmax=vmax)
-            self.fig.colorbar(mpl.cm.ScalarMappable(norm=norm, cmap=cmap), ax=self.ax)
+            cb = self.fig.colorbar(mpl.cm.ScalarMappable(norm=norm, cmap=cmap), ax=self.ax)
+            cb.ax.tick_params(labelsize=self.config['colorbar_tick_labelsize']['value'])
+            cb.set_label(self.config['colorbar_title']['value'], 
+                         size=self.config['colorbar_title_size']['value'],
+                         rotation=270,
+                         labelpad=self.config['colorbar_title_padding']['value'])
 
         if orientation == 'horizontal':
 
diff --git a/docs/_modules/pyprocar/plotter/ebs_plot.html b/docs/_modules/pyprocar/plotter/ebs_plot.html
index 3ac4a4f2..7566e407 100644
--- a/docs/_modules/pyprocar/plotter/ebs_plot.html
+++ b/docs/_modules/pyprocar/plotter/ebs_plot.html
@@ -7,7 +7,7 @@
   
     
     
-    pyprocar.plotter.ebs_plot — PyProcar 6.1.5 documentation
+    pyprocar.plotter.ebs_plot — PyProcar 6.1.7 documentation
   
   
   
@@ -39,7 +39,7 @@
   
 
 
-    
+    
     
     
     
@@ -109,7 +109,7 @@
   
   
   
-    

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

@@ -473,7 +473,8 @@

Source code for pyprocar.plotter.ebs_plot

                     ebs:ElectronicBandStructure, 
                     kpath:KPath=None, 
                     ax:mpl.axes.Axes=None, 
-                    spins:List[int]=None, 
+                    spins:List[int]=None,
+                    kdirect:bool=True,
                     **kwargs):
         config_manager=ConfigManager(os.path.join(ROOT,'pyprocar','cfg','band_structure.yml'))
         config_manager.update_config(kwargs)  
@@ -482,6 +483,7 @@ 

Source code for pyprocar.plotter.ebs_plot

         self.ebs = ebs
         self.kpath = kpath
         self.spins = spins
+        self.kdirect=kdirect
         if self.spins is None:
             self.spins = range(self.ebs.nspins)
         self.nspins = len(self.spins)
@@ -525,8 +527,12 @@ 

Source code for pyprocar.plotter.ebs_plot

         """
         pos = 0
         if self.kpath is not None and self.kpath.nsegments == len(self.kpath.ngrids):
+  
             for isegment in range(self.kpath.nsegments):
                 kstart, kend = self.kpath.special_kpoints[isegment]
+                if self.kdirect is False:
+                    kstart=np.dot(self.ebs.reciprocal_lattice,kstart)
+                    kend=np.dot(self.ebs.reciprocal_lattice,kend)
 
                 distance = np.linalg.norm(kend - kstart)
                 if isegment == 0:
@@ -665,8 +671,7 @@ 

Source code for pyprocar.plotter.ebs_plot

                         alpha=self.config['opacity']['value'][ispin],
                     )
         if self.config['plot_color_bar']['value'] and color_weights is not None:
-            cb = self.fig.colorbar(sc, ax=self.ax)
-            cb.ax.tick_params(labelsize=20)
+ self.cb = self.fig.colorbar(sc, ax=self.ax)
[docs] def plot_parameteric( self, @@ -675,6 +680,7 @@

Source code for pyprocar.plotter.ebs_plot

         color_mask:np.ndarray=None,
         width_weights:np.ndarray=None,
         color_weights:np.ndarray=None,
+        elimit:List[float]=None
         ):
         """A method to plot a scatter plot
 
@@ -690,6 +696,8 @@ 

Source code for pyprocar.plotter.ebs_plot

             The width weight of each point, by default None
         color_weights : np.ndarray, optional
             The color weights at each point, by default None
+        elimit : List[float], optional
+            Energy range to plot. Only useful if the band index is written
         """
 
         # if there is only a single k-point the method for atomic
@@ -701,7 +709,8 @@ 

Source code for pyprocar.plotter.ebs_plot

                                   width_weights=width_weights,
                                   color_mask=color_mask,
                                   width_mask=width_mask,
-                                  spins=spins)
+                                  spins=spins,
+                                  elimit=elimit)
           return
         
         if width_weights is None:
@@ -734,7 +743,7 @@ 

Source code for pyprocar.plotter.ebs_plot

             if vmax is None:
                 vmax = color_weights[:,:,spins].max()
             norm = mpl.colors.Normalize(vmin, vmax)
-        # print(self.ebs.nbands)
+            
         for ispin in spins:
             for iband in range(self.ebs.nbands):
                 if len(self.spins)==1:
@@ -767,9 +776,8 @@ 

Source code for pyprocar.plotter.ebs_plot

             self.handles.append(handle)
 
         if self.config['plot_color_bar']['value'] and color_weights is not None:
-            cb = self.fig.colorbar(lc, ax=self.ax)
-            cb.ax.tick_params(labelsize=20)
- + self.cb = self.fig.colorbar(lc, ax=self.ax)
+
[docs] def plot_parameteric_overlay(self, spins:List[int]=None, weights:np.ndarray=None, @@ -824,15 +832,15 @@

Source code for pyprocar.plotter.ebs_plot

             self.handles.append(handle)
 
             if self.config['plot_color_bar']['value']:
-                cb = self.fig.colorbar(lc, ax=self.ax)
-                cb.ax.tick_params(labelsize=20)
+ self.cb = self.fig.colorbar(lc, ax=self.ax)
[docs] def plot_atomic_levels(self, spins:List[int]=None, width_mask:np.ndarray=None, color_mask:np.ndarray=None, width_weights:np.ndarray=None, - color_weights:np.ndarray=None + color_weights:np.ndarray=None, + elimit:List[float]=None ): """A method to plot a scatter plot @@ -848,6 +856,8 @@

Source code for pyprocar.plotter.ebs_plot

             The width weight of each point, by default None
         color_weights : np.ndarray, optional
             The color weights at each point, by default None
+        elimit : List[float], optional
+            The energy range to plot. 
         """
         self.ebs.bands = np.vstack((self.ebs.bands, self.ebs.bands))
         self.ebs.projected = np.vstack((self.ebs.projected, self.ebs.projected))
@@ -860,14 +870,64 @@ 

Source code for pyprocar.plotter.ebs_plot

         self.ax.xaxis.set_major_locator(plt.NullLocator())
         # labels on each band
 
+
+        if elimit:
+            emin, emax = elimit[0], elimit[1]
+        else:
+            emin, emax = np.min(self.ebs.bands), np.max(self.ebs.bands)
+        # print('Energy range', emin, emax)
+        
         if spins is None:
             spins = range(self.ebs.nspins)
         if self.ebs.is_non_collinear:
             spins = [0]
+        # cointainers for the bounding boxes of the text elements
+        Nspin = len(spins)
+        texts = []
         for ispin in spins:
             for i in range(len(self.ebs.bands[0,:,ispin])):
-                self.ax.text(0, self.ebs.bands[0,i,ispin], f"spin-{ispin} : "+"band-"+str(i + 1))
-
+                energy = self.ebs.bands[0,i,ispin]
+                if energy > emin and energy < emax:
+                    txt = [0, energy, f"s-{ispin} : "+"b-"+str(i + 1)]
+                    texts.append(txt)
+        # sorting the texts
+        texts.sort(key=lambda x: x[1])
+
+        # I need to set the energy limits
+        self.set_ylim(elimit)
+        self.set_xlim()
+        
+        # knowing the text size
+        txt = texts[-1]
+        txt = plt.text(*txt)
+        bbox = txt.get_window_extent()
+        bbox_data = self.ax.transData.inverted().transform_bbox(bbox)
+        w, h = bbox_data.width, bbox_data.height
+        txt.remove()
+        # print('Width, ', w, '. Height,', h)
+        
+        shift = 0
+        txt = texts[0]
+        self.ax.text(*txt)            
+        for i in range(1, len(texts)):
+            txt = texts[i]
+            last = texts[i-1]
+            y, y0 = txt[1], last[1]
+            # if there there is vertical overlap
+            if y < y0 + h:
+                # print('overlap', y, y0+h)
+                # I shift it laterally (the shift can be 0)
+                shift +=1
+                if shift == 2:
+                    shift = 0
+
+                txt[0] = txt[0] + w*1.5*shift
+            else:
+                shift = 0    
+                
+            # print(txt)
+            self.ax.text(*txt)            
+                
         self.plot_parameteric(color_weights=color_weights,
                             width_weights=width_weights,
                             color_mask=color_mask,
@@ -1019,6 +1079,25 @@ 

Source code for pyprocar.plotter.ebs_plot

         if self.config['title']['value']:
             self.ax.set_title(label=self.config['title']['value'])
+
[docs] def set_colorbar_title(self, title:str=None): + """A method to set the title of the color bar + + Parameters + ---------- + title : str, optional + String for the title, by default "Atomic Orbital Projections" + """ + if title: + title=title + else: + title=self.config['colorbar_title']['value'] + self.cb.ax.tick_params(labelsize=self.config['colorbar_tick_labelsize']['value']) + self.cb.set_label(title, + size=self.config['colorbar_title_size']['value'], + rotation=270, + labelpad=self.config['colorbar_title_padding']['value'])
+ +
[docs] def legend(self, labels:List[str]=None): """A methdo to plot the legend diff --git a/docs/_modules/pyprocar/plotter/procarplot.html b/docs/_modules/pyprocar/plotter/procarplot.html index 4e2a8237..3c554195 100644 --- a/docs/_modules/pyprocar/plotter/procarplot.html +++ b/docs/_modules/pyprocar/plotter/procarplot.html @@ -7,7 +7,7 @@ - pyprocar.plotter.procarplot — PyProcar 6.1.5 documentation + pyprocar.plotter.procarplot — PyProcar 6.1.7 documentation @@ -39,7 +39,7 @@ - + @@ -109,7 +109,7 @@ -

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

@@ -427,12 +427,12 @@

Source code for pyprocar.plotter.procarplot

-import numpy as np
+import sys
 import re
 import logging
-import matplotlib.pyplot as plt
-import sys
 
+import numpy as np
+import matplotlib.pyplot as plt
 
 
[docs]class ProcarPlot: """A depeciated class ot plot the band structure @@ -828,8 +828,8 @@

Source code for pyprocar.plotter.procarplot

         print("Atomic plot: bands.shape  :", self.bands.shape)
         print("Atomic plot: spd.shape    :", self.spd.shape)
         print("Atomic plot: kpoints.shape:", self.kpoints.shape)
-
-        #        print(self.kpoints)
+        
+        print("Foooooooooooooooooo", self.kpoints)
 
         fig, ax1 = self.parametricPlot(cmap, vmin, vmax, ax=ax)
 
@@ -839,7 +839,8 @@ 

Source code for pyprocar.plotter.procarplot

         for i in range(len(self.bands[:, 0])):
             # print i, self.bands[i]
             ax1.text(0, self.bands[i, 0], str(i + 1))
-
+            bbox = txt.get_window_extent()
+            print('bbox', bbox)
         return fig, ax1
diff --git a/docs/_modules/pyprocar/pyposcar/poscar.html b/docs/_modules/pyprocar/pyposcar/poscar.html index f0dac54d..6e30c046 100644 --- a/docs/_modules/pyprocar/pyposcar/poscar.html +++ b/docs/_modules/pyprocar/pyposcar/poscar.html @@ -7,7 +7,7 @@ - pyprocar.pyposcar.poscar — PyProcar 6.1.5 documentation + pyprocar.pyposcar.poscar — PyProcar 6.1.7 documentation @@ -39,7 +39,7 @@ - + @@ -109,7 +109,7 @@ -

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

diff --git a/docs/_modules/pyprocar/pyposcar/poscarUtils.html b/docs/_modules/pyprocar/pyposcar/poscarUtils.html index 2ed30d21..bcff0014 100644 --- a/docs/_modules/pyprocar/pyposcar/poscarUtils.html +++ b/docs/_modules/pyprocar/pyposcar/poscarUtils.html @@ -7,7 +7,7 @@ - pyprocar.pyposcar.poscarUtils — PyProcar 6.1.5 documentation + pyprocar.pyposcar.poscarUtils — PyProcar 6.1.7 documentation @@ -39,7 +39,7 @@ - + @@ -109,7 +109,7 @@ -

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

diff --git a/docs/_modules/pyprocar/scripts/scriptBandGap.html b/docs/_modules/pyprocar/scripts/scriptBandGap.html index 9b3c86af..7f001877 100644 --- a/docs/_modules/pyprocar/scripts/scriptBandGap.html +++ b/docs/_modules/pyprocar/scripts/scriptBandGap.html @@ -7,7 +7,7 @@ - pyprocar.scripts.scriptBandGap — PyProcar 6.1.5 documentation + pyprocar.scripts.scriptBandGap — PyProcar 6.1.7 documentation @@ -39,7 +39,7 @@ - + @@ -109,7 +109,7 @@ -

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

diff --git a/docs/_modules/pyprocar/scripts/scriptBandsDosplot.html b/docs/_modules/pyprocar/scripts/scriptBandsDosplot.html index 5b153687..0a7b6bb0 100644 --- a/docs/_modules/pyprocar/scripts/scriptBandsDosplot.html +++ b/docs/_modules/pyprocar/scripts/scriptBandsDosplot.html @@ -7,7 +7,7 @@ - pyprocar.scripts.scriptBandsDosplot — PyProcar 6.1.5 documentation + pyprocar.scripts.scriptBandsDosplot — PyProcar 6.1.7 documentation @@ -39,7 +39,7 @@ - + @@ -109,7 +109,7 @@ -

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

@@ -605,7 +605,7 @@

Source code for pyprocar.scripts.scriptBandsDosplot

dos_position = list(fig.axes[1].get_position().bounds) color_bar_position = list(fig.axes[2].get_position().bounds) - color_bar_position[0] = dos_position[0] + dos_position[3] + 0.025 + color_bar_position[0] = dos_position[0] + dos_position[3] - 0.1 fig.axes[2].set_position(color_bar_position) return fig.axes[0],fig.axes[1] diff --git a/docs/_modules/pyprocar/scripts/scriptBandsplot.html b/docs/_modules/pyprocar/scripts/scriptBandsplot.html index e858dbee..1fb15d12 100644 --- a/docs/_modules/pyprocar/scripts/scriptBandsplot.html +++ b/docs/_modules/pyprocar/scripts/scriptBandsplot.html @@ -7,7 +7,7 @@ - pyprocar.scripts.scriptBandsplot — PyProcar 6.1.5 documentation + pyprocar.scripts.scriptBandsplot — PyProcar 6.1.7 documentation @@ -39,7 +39,7 @@ - + @@ -109,7 +109,7 @@ -

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

@@ -427,7 +427,7 @@

Source code for pyprocar.scripts.scriptBandsplot

-__author__ = "Pedram Tavadze and Logan Lang"
+_author__ = "Pedram Tavadze and Logan Lang"
 __maintainer__ = "Pedram Tavadze and Logan Lang"
 __email__ = "petavazohi@mail.wvu.edu, lllang@mix.wvu.edu"
 __date__ = "March 31, 2020"
@@ -462,6 +462,7 @@ 

Source code for pyprocar.scripts.scriptBandsplot

projection_mask:np.ndarray=None, kticks=None, knames=None, + kdirect:bool=True, elimit: List[float]=None, ax:plt.Axes=None, show:bool=True, @@ -541,7 +542,13 @@

Source code for pyprocar.scripts.scriptBandsplot

else: fermi_level = 0 - ebs_plot = EBSPlot(ebs, kpath, ax, spins ,**kwargs) + + # fixing the spin, to plot two channels into one (down is negative) + if np.array_equal(spins, [-1,1]) or np.array_equal(spins, [1,-1]): + if ebs.fix_collinear_spin(): + spins = [0] + + ebs_plot = EBSPlot(ebs, kpath, ax, spins, kdirect=kdirect ,**kwargs) labels = [] @@ -566,8 +573,10 @@

Source code for pyprocar.scripts.scriptBandsplot

width_weights=width_weights, color_mask=color_mask, width_mask=width_mask, - spins=spins + spins=spins, + elimit=elimit, ) + ebs_plot.set_colorbar_title(title='Inverse Participation Ratio') elif mode in ["overlay", "overlay_species", "overlay_orbitals"]: @@ -658,6 +667,7 @@

Source code for pyprocar.scripts.scriptBandsplot

width_mask=width_mask, spins=spins ) + ebs_plot.set_colorbar_title() elif mode == "scatter": ebs_plot.plot_scatter( color_weights=color_weights, @@ -666,6 +676,7 @@

Source code for pyprocar.scripts.scriptBandsplot

width_mask=width_mask, spins=spins ) + ebs_plot.set_colorbar_title() elif mode == "atomic": if ebs.kpoints.shape[0]!=1: raise Value('Must use a single kpoint') @@ -676,9 +687,11 @@

Source code for pyprocar.scripts.scriptBandsplot

width_weights=width_weights, color_mask=color_mask, width_mask=width_mask, - spins=spins) + spins=spins, + elimit=elimit) ebs_plot.set_xlabel(label='') + ebs_plot.set_colorbar_title() else: print("Selected mode %s not valid. Please check the spelling " % mode) diff --git a/docs/_modules/pyprocar/scripts/scriptBandsplot_2d.html b/docs/_modules/pyprocar/scripts/scriptBandsplot_2d.html index cb5731c3..4ba0e6b3 100644 --- a/docs/_modules/pyprocar/scripts/scriptBandsplot_2d.html +++ b/docs/_modules/pyprocar/scripts/scriptBandsplot_2d.html @@ -7,7 +7,7 @@ - pyprocar.scripts.scriptBandsplot_2d — PyProcar 6.1.5 documentation + pyprocar.scripts.scriptBandsplot_2d — PyProcar 6.1.7 documentation @@ -39,7 +39,7 @@ - + @@ -109,7 +109,7 @@ -

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

diff --git a/docs/_modules/pyprocar/scripts/scriptCat.html b/docs/_modules/pyprocar/scripts/scriptCat.html index 01b55518..ee77821a 100644 --- a/docs/_modules/pyprocar/scripts/scriptCat.html +++ b/docs/_modules/pyprocar/scripts/scriptCat.html @@ -7,7 +7,7 @@ - pyprocar.scripts.scriptCat — PyProcar 6.1.5 documentation + pyprocar.scripts.scriptCat — PyProcar 6.1.7 documentation @@ -39,7 +39,7 @@ - + @@ -109,7 +109,7 @@ -

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

@@ -442,7 +442,7 @@

Source code for pyprocar.scripts.scriptCat

 
 from ..utils import welcome
 from ..utils import UtilsProcar
-from ..io import AbinitParser
+from ..io.abinit import Output
 
 
[docs]def cat( inFiles:List[str]=None, @@ -528,7 +528,7 @@

Source code for pyprocar.scripts.scriptCat

 
     # creating an instance of the AbinitParser class
     if abinit_output:
-        abinitparserobject = AbinitParser(abinit_output=abinit_output)
+        abinitparserobject = Output(abinit_output=abinit_output)
         nspin = int(abinitparserobject.nspin)
     else:
         nspin = int(nspin)
diff --git a/docs/_modules/pyprocar/scripts/scriptDosplot.html b/docs/_modules/pyprocar/scripts/scriptDosplot.html
index bdd4806a..50357a47 100644
--- a/docs/_modules/pyprocar/scripts/scriptDosplot.html
+++ b/docs/_modules/pyprocar/scripts/scriptDosplot.html
@@ -7,7 +7,7 @@
   
     
     
-    pyprocar.scripts.scriptDosplot — PyProcar 6.1.5 documentation
+    pyprocar.scripts.scriptDosplot — PyProcar 6.1.7 documentation
   
   
   
@@ -39,7 +39,7 @@
   
 
 
-    
+    
     
     
     
@@ -109,7 +109,7 @@
   
   
   
-    

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

diff --git a/docs/_modules/pyprocar/scripts/scriptFermi2D.html b/docs/_modules/pyprocar/scripts/scriptFermi2D.html index d2fddddc..afa95597 100644 --- a/docs/_modules/pyprocar/scripts/scriptFermi2D.html +++ b/docs/_modules/pyprocar/scripts/scriptFermi2D.html @@ -7,7 +7,7 @@ - pyprocar.scripts.scriptFermi2D — PyProcar 6.1.5 documentation + pyprocar.scripts.scriptFermi2D — PyProcar 6.1.7 documentation @@ -39,7 +39,7 @@ - + @@ -109,7 +109,7 @@ -

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

diff --git a/docs/_modules/pyprocar/scripts/scriptFermi3D.html b/docs/_modules/pyprocar/scripts/scriptFermi3D.html index cc01b4d0..6a9cab3d 100644 --- a/docs/_modules/pyprocar/scripts/scriptFermi3D.html +++ b/docs/_modules/pyprocar/scripts/scriptFermi3D.html @@ -7,7 +7,7 @@ - pyprocar.scripts.scriptFermi3D — PyProcar 6.1.5 documentation + pyprocar.scripts.scriptFermi3D — PyProcar 6.1.7 documentation @@ -39,7 +39,7 @@ - + @@ -109,7 +109,7 @@ -

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

@@ -447,9 +447,6 @@

Source code for pyprocar.scripts.scriptFermi3D

from ..core import FermiSurface3D from ..utils import welcome from ..utils import UtilsProcar -from ..io.procarparser import ProcarParser -from ..io.lobsterparser import LobsterFermiParser -from ..io.abinitparser import AbinitParser from .. import io np.set_printoptions(threshold=sys.maxsize) diff --git a/docs/_modules/pyprocar/scripts/scriptFermiHandler.html b/docs/_modules/pyprocar/scripts/scriptFermiHandler.html index 9f003064..a85b61ec 100644 --- a/docs/_modules/pyprocar/scripts/scriptFermiHandler.html +++ b/docs/_modules/pyprocar/scripts/scriptFermiHandler.html @@ -7,7 +7,7 @@ - pyprocar.scripts.scriptFermiHandler — PyProcar 6.1.5 documentation + pyprocar.scripts.scriptFermiHandler — PyProcar 6.1.7 documentation @@ -39,7 +39,7 @@ - + @@ -109,7 +109,7 @@ -

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

diff --git a/docs/_modules/pyprocar/scripts/scriptFilter.html b/docs/_modules/pyprocar/scripts/scriptFilter.html index 0e988cee..dcaf717e 100644 --- a/docs/_modules/pyprocar/scripts/scriptFilter.html +++ b/docs/_modules/pyprocar/scripts/scriptFilter.html @@ -7,7 +7,7 @@ - pyprocar.scripts.scriptFilter — PyProcar 6.1.5 documentation + pyprocar.scripts.scriptFilter — PyProcar 6.1.7 documentation @@ -39,7 +39,7 @@ - + @@ -109,7 +109,7 @@ -

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

diff --git a/docs/_modules/pyprocar/scripts/scriptKmesh2D.html b/docs/_modules/pyprocar/scripts/scriptKmesh2D.html index e1734a0e..7536dc2f 100644 --- a/docs/_modules/pyprocar/scripts/scriptKmesh2D.html +++ b/docs/_modules/pyprocar/scripts/scriptKmesh2D.html @@ -7,7 +7,7 @@ - pyprocar.scripts.scriptKmesh2D — PyProcar 6.1.5 documentation + pyprocar.scripts.scriptKmesh2D — PyProcar 6.1.7 documentation @@ -39,7 +39,7 @@ - + @@ -109,7 +109,7 @@ -

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

diff --git a/docs/_modules/pyprocar/scripts/scriptKpath.html b/docs/_modules/pyprocar/scripts/scriptKpath.html index 739a7b17..04de68bf 100644 --- a/docs/_modules/pyprocar/scripts/scriptKpath.html +++ b/docs/_modules/pyprocar/scripts/scriptKpath.html @@ -7,7 +7,7 @@ - pyprocar.scripts.scriptKpath — PyProcar 6.1.5 documentation + pyprocar.scripts.scriptKpath — PyProcar 6.1.7 documentation @@ -39,7 +39,7 @@ - + @@ -109,7 +109,7 @@ -

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

diff --git a/docs/_modules/pyprocar/scripts/scriptRepair.html b/docs/_modules/pyprocar/scripts/scriptRepair.html index 66a829b5..745f0cd3 100644 --- a/docs/_modules/pyprocar/scripts/scriptRepair.html +++ b/docs/_modules/pyprocar/scripts/scriptRepair.html @@ -7,7 +7,7 @@ - pyprocar.scripts.scriptRepair — PyProcar 6.1.5 documentation + pyprocar.scripts.scriptRepair — PyProcar 6.1.7 documentation @@ -39,7 +39,7 @@ - + @@ -109,7 +109,7 @@ -

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

diff --git a/docs/_modules/pyprocar/scripts/scriptUnfold.html b/docs/_modules/pyprocar/scripts/scriptUnfold.html index d453d6b7..ae9c49b2 100644 --- a/docs/_modules/pyprocar/scripts/scriptUnfold.html +++ b/docs/_modules/pyprocar/scripts/scriptUnfold.html @@ -7,7 +7,7 @@ - pyprocar.scripts.scriptUnfold — PyProcar 6.1.5 documentation + pyprocar.scripts.scriptUnfold — PyProcar 6.1.7 documentation @@ -39,7 +39,7 @@ - + @@ -109,7 +109,7 @@ -

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

diff --git a/docs/_sources/api/cfg/band_structure.rst.txt b/docs/_sources/api/cfg/band_structure.rst.txt index 0bf2e5ec..6cd2c848 100644 --- a/docs/_sources/api/cfg/band_structure.rst.txt +++ b/docs/_sources/api/cfg/band_structure.rst.txt @@ -16,6 +16,38 @@ color :value: black +colorbar_title +-------------- + +:description: Title of the colorbar. + +:value: Atomic Orbital Projections + + +colorbar_title_size +------------------- + +:description: Font size of the title of the colorbar. + +:value: 15 + + +colorbar_title_padding +---------------------- + +:description: Padding of the title of the colorbar. + +:value: 20 + + +colorbar_tick_labelsize +----------------------- + +:description: Size of the title of the colorbar ticks + +:value: 10 + + cmap ---- diff --git a/docs/_sources/api/cfg/band_structure_2d.rst.txt b/docs/_sources/api/cfg/band_structure_2d.rst.txt index 63bbc603..045aa379 100644 --- a/docs/_sources/api/cfg/band_structure_2d.rst.txt +++ b/docs/_sources/api/cfg/band_structure_2d.rst.txt @@ -163,7 +163,7 @@ add_axes energy_lim ---------- -:value: [None, None] +:value: [-2, 2] :description: Controls the limits of the energy axis @@ -216,6 +216,14 @@ add_scalar_bar :description: Controls if there is a colorbar +scalar_bar_title +---------------- + +:value: None + +:description: Controls scalar bar title font size + + scalar_bar_labels ----------------- @@ -325,7 +333,7 @@ clip_brillouin_zone :value: True -:description: Control to show a grid +:description: Control clip the brillouin zone clip_brillouin_zone_factor diff --git a/docs/_sources/api/cfg/dos.rst.txt b/docs/_sources/api/cfg/dos.rst.txt index 2b498d23..97b33b9a 100644 --- a/docs/_sources/api/cfg/dos.rst.txt +++ b/docs/_sources/api/cfg/dos.rst.txt @@ -16,6 +16,38 @@ colors :value: ['red', 'green', 'blue', 'cyan', 'magenta', 'yellow', 'orange', 'purple', 'brown', 'navy', 'maroon', 'olive'] +colorbar_title +-------------- + +:description: Title of the colorbar. + +:value: Atomic Orbital Projections + + +colorbar_title_size +------------------- + +:description: Font size of the title of the colorbar. + +:value: 15 + + +colorbar_title_padding +---------------------- + +:description: Padding of the title of the colorbar. + +:value: 20 + + +colorbar_tick_labelsize +----------------------- + +:description: Size of the title of the colorbar ticks + +:value: 10 + + fermi_color ----------- diff --git a/docs/_sources/api/cfg/fermi_surface_3d.rst.txt b/docs/_sources/api/cfg/fermi_surface_3d.rst.txt index ee3c8d7c..9521aaf7 100644 --- a/docs/_sources/api/cfg/fermi_surface_3d.rst.txt +++ b/docs/_sources/api/cfg/fermi_surface_3d.rst.txt @@ -232,6 +232,14 @@ scalar_bar_bold :description: Controls the label bold style +scalar_bar_title +---------------- + +:value: None + +:description: Controls scalar bar title font size + + scalar_bar_title_font_size -------------------------- diff --git a/docs/_sources/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.fix_collinear_spin.rst.txt b/docs/_sources/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.fix_collinear_spin.rst.txt new file mode 100644 index 00000000..3f94d6f5 --- /dev/null +++ b/docs/_sources/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.fix_collinear_spin.rst.txt @@ -0,0 +1,6 @@ +fix\_collinear\_spin +==================== + +.. currentmodule:: pyprocar.core + +.. automethod:: ElectronicBandStructure.fix_collinear_spin \ No newline at end of file diff --git a/docs/_sources/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.rst.txt b/docs/_sources/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.rst.txt index dcd6d138..a510b37e 100644 --- a/docs/_sources/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.rst.txt +++ b/docs/_sources/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.rst.txt @@ -60,6 +60,11 @@ + ElectronicBandStructure.fix_collinear_spin + + + + ElectronicBandStructure.ibz2fbz diff --git a/docs/_sources/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.rst.txt b/docs/_sources/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.rst.txt index 9f1c267c..25e9a2f8 100644 --- a/docs/_sources/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.rst.txt +++ b/docs/_sources/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.rst.txt @@ -65,6 +65,11 @@ + EBSPlot.set_colorbar_title + + + + EBSPlot.set_title diff --git a/docs/_sources/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_colorbar_title.rst.txt b/docs/_sources/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_colorbar_title.rst.txt new file mode 100644 index 00000000..0aedd46f --- /dev/null +++ b/docs/_sources/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_colorbar_title.rst.txt @@ -0,0 +1,6 @@ +set\_colorbar\_title +==================== + +.. currentmodule:: pyprocar.plotter + +.. automethod:: EBSPlot.set_colorbar_title \ No newline at end of file diff --git a/docs/_sources/examples/00-band_structure/index.rst.txt b/docs/_sources/examples/00-band_structure/index.rst.txt index 5aae0538..45d477a1 100644 --- a/docs/_sources/examples/00-band_structure/index.rst.txt +++ b/docs/_sources/examples/00-band_structure/index.rst.txt @@ -166,6 +166,23 @@ These examples demonstrate the band structure plotting capabilities.
+.. raw:: html + +
+ +.. only:: html + + .. image:: /examples/00-band_structure/images/thumb/sphx_glr_plot_2d_bands_thumb.png + :alt: + + :ref:`sphx_glr_examples_00-band_structure_plot_2d_bands.py` + +.. raw:: html + +
Plotting 2D band structure
+
+ + .. raw:: html
@@ -200,5 +217,6 @@ These examples demonstrate the band structure plotting capabilities. /examples/00-band_structure/plot_unfolding /examples/00-band_structure/plot_spin_polarized /examples/00-band_structure/plot_colinear + /examples/00-band_structure/plot_2d_bands /examples/00-band_structure/plot_bandsplot_configurations diff --git a/docs/_sources/examples/00-band_structure/plot_2d_bands.rst.txt b/docs/_sources/examples/00-band_structure/plot_2d_bands.rst.txt new file mode 100644 index 00000000..de11f316 --- /dev/null +++ b/docs/_sources/examples/00-band_structure/plot_2d_bands.rst.txt @@ -0,0 +1,291 @@ + +.. DO NOT EDIT. +.. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. +.. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: +.. "examples\00-band_structure\plot_2d_bands.py" +.. LINE NUMBERS ARE GIVEN BELOW. + +.. only:: html + + .. note:: + :class: sphx-glr-download-link-note + + :ref:`Go to the end ` + to download the full example code + +.. rst-class:: sphx-glr-example-title + +.. _sphx_glr_examples_00-band_structure_plot_2d_bands.py: + + +.. _ref_plotting_2d_bands: + +Plotting 2D band structure +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Plotting 2D band structure example. + +First, specify the data directory where the band structure data is located. + +.. code-block:: + :caption: Downloading example + + data_dir = pyprocar.download_example(save_dir='', + material='graphene', + code='vasp', + spin_calc_type='non-spin-polarized', + calc_type='2d_bands') + +.. GENERATED FROM PYTHON SOURCE LINES 25-26 + +importing pyprocar and specifying local data_dir + +.. GENERATED FROM PYTHON SOURCE LINES 26-33 + +.. code-block:: default + + import os + import pyprocar + + data_dir = f"{pyprocar.utils.ROOT}{os.sep}data{os.sep}examples{os.sep}graphene{os.sep}vasp{os.sep}non-spin-polarized{os.sep}2d_bands" + + + + + + + + + + +.. GENERATED FROM PYTHON SOURCE LINES 34-36 + +Plain mode ++++++++++++++++++++++++++++++++++++++++ + +.. GENERATED FROM PYTHON SOURCE LINES 36-46 + +.. code-block:: default + + spins=[0] + handler = pyprocar.BandStructure2DHandler(code='vasp',dirname=data_dir,apply_symmetry=False) + handler.plot_band_structure(mode='plain', + add_fermi_plane=True, + bands=[3,4], + fermi_plane_size=4, + energy_lim=[-2.5,0.8], + extended_zone_directions=[[1,0,0],[0,1,0],[-1,0,0],[0,-1,0],[1,-1,0],[-1,1,0],[-1,-1,0],[[1,1,0]]], + spins=spins) + + + + +.. image-sg:: /examples/00-band_structure/images/sphx_glr_plot_2d_bands_001.png + :alt: plot 2d bands + :srcset: /examples/00-band_structure/images/sphx_glr_plot_2d_bands_001.png + :class: sphx-glr-single-img + + +.. rst-class:: sphx-glr-script-out + + .. code-block:: none + + + -------------------------------------------------------- + There are additional plot options that are defined in a configuration file. + You can change these configurations by passing the keyword argument to the function + To print a list of plot options set print_plot_opts=True + + Here is a list modes : plain , parametric , spin_texture , overlay + Here is a list of properties: fermi_speed , fermi_velocity , harmonic_effective_mass + -------------------------------------------------------- + + Bands used in the plotting: [3, 4] + Z:\Research Projects\pyprocar\venv_docs\lib\site-packages\pyvista\core\utilities\points.py:52: UserWarning: Points is not a float type. This can cause issues when transforming or applying filters. Casting to ``np.float32``. Disable this by passing ``force_float=False``. + warnings.warn( + + + + +.. GENERATED FROM PYTHON SOURCE LINES 47-49 + +Parametric mode ++++++++++++++++++++++++++++++++++++++++ + +.. GENERATED FROM PYTHON SOURCE LINES 49-59 + +.. code-block:: default + + + atoms=[0,1] + orbitals=[1,2,3] + spins=[0] + handler = pyprocar.BandStructure2DHandler(code='vasp',dirname=data_dir,apply_symmetry=False) + handler.plot_band_structure(mode='parametric', + atoms=atoms, + orbitals=orbitals, + spins=spins) + + + + +.. image-sg:: /examples/00-band_structure/images/sphx_glr_plot_2d_bands_002.png + :alt: plot 2d bands + :srcset: /examples/00-band_structure/images/sphx_glr_plot_2d_bands_002.png + :class: sphx-glr-single-img + + +.. rst-class:: sphx-glr-script-out + + .. code-block:: none + + + -------------------------------------------------------- + There are additional plot options that are defined in a configuration file. + You can change these configurations by passing the keyword argument to the function + To print a list of plot options set print_plot_opts=True + + Here is a list modes : plain , parametric , spin_texture , overlay + Here is a list of properties: fermi_speed , fermi_velocity , harmonic_effective_mass + -------------------------------------------------------- + + Bands used in the plotting: [3, 4] + + + + +.. GENERATED FROM PYTHON SOURCE LINES 60-62 + +Property Projection mode ++++++++++++++++++++++++++++++++++++++++ + +.. GENERATED FROM PYTHON SOURCE LINES 62-72 + +.. code-block:: default + + handler = pyprocar.BandStructure2DHandler(code='vasp',dirname=data_dir,apply_symmetry=False) + handler.plot_band_structure(mode='property_projection', + property_name='band_velocity', + bands=[3,4], + fermi_plane_size=4, + scalar_bar_position_x=0.3, + energy_lim=[-2.5,0.8], + scalar_bar_title=r'Band Velocity ($\frac{m}{s}$)', + add_fermi_plane=True,) + + + + +.. image-sg:: /examples/00-band_structure/images/sphx_glr_plot_2d_bands_003.png + :alt: plot 2d bands + :srcset: /examples/00-band_structure/images/sphx_glr_plot_2d_bands_003.png + :class: sphx-glr-single-img + + +.. rst-class:: sphx-glr-script-out + + .. code-block:: none + + + -------------------------------------------------------- + There are additional plot options that are defined in a configuration file. + You can change these configurations by passing the keyword argument to the function + To print a list of plot options set print_plot_opts=True + + Here is a list modes : plain , parametric , spin_texture , overlay + Here is a list of properties: fermi_speed , fermi_velocity , harmonic_effective_mass + -------------------------------------------------------- + + Bands used in the plotting: [3, 4] + Z:\Research Projects\pyprocar\venv_docs\lib\site-packages\pyvista\core\utilities\points.py:52: UserWarning: Points is not a float type. This can cause issues when transforming or applying filters. Casting to ``np.float32``. Disable this by passing ``force_float=False``. + warnings.warn( + + + + +.. GENERATED FROM PYTHON SOURCE LINES 73-75 + +Spin Texture mode ++++++++++++++++++++++++++++++++++++++++ + +.. GENERATED FROM PYTHON SOURCE LINES 75-95 + +.. code-block:: default + + + data_dir = os.path.join(pyprocar.utils.ROOT,'data','examples','BiSb_monolayer','vasp','non-colinear','fermi') + + + atoms=[0] + orbitals=[4,5,6,7,8] + handler = pyprocar.BandStructure2DHandler(code='vasp',dirname=data_dir,apply_symmetry=False) + handler.plot_band_structure(mode='spin_texture', + spin_texture=True, + atoms=atoms, + orbitals=orbitals, + add_fermi_plane=True, + fermi_plane_size=2, + energy_lim=[-2,2], + fermi_text_position=[0,0.5,0], + scalar_bar_position_x=0.3, + + clip_brillouin_zone_factor=1, + surface_clim=[-0.5,0.5]) + + + + +.. image-sg:: /examples/00-band_structure/images/sphx_glr_plot_2d_bands_004.png + :alt: plot 2d bands + :srcset: /examples/00-band_structure/images/sphx_glr_plot_2d_bands_004.png + :class: sphx-glr-single-img + + +.. rst-class:: sphx-glr-script-out + + .. code-block:: none + + + -------------------------------------------------------- + There are additional plot options that are defined in a configuration file. + You can change these configurations by passing the keyword argument to the function + To print a list of plot options set print_plot_opts=True + + Here is a list modes : plain , parametric , spin_texture , overlay + Here is a list of properties: fermi_speed , fermi_velocity , harmonic_effective_mass + -------------------------------------------------------- + + Bands used in the plotting: [16, 17, 18, 19, 20, 21] + + + + + +.. rst-class:: sphx-glr-timing + + **Total running time of the script:** ( 3 minutes 31.780 seconds) + + +.. _sphx_glr_download_examples_00-band_structure_plot_2d_bands.py: + +.. only:: html + + .. container:: sphx-glr-footer sphx-glr-footer-example + + + + + .. container:: sphx-glr-download sphx-glr-download-python + + :download:`Download Python source code: plot_2d_bands.py ` + + .. container:: sphx-glr-download sphx-glr-download-jupyter + + :download:`Download Jupyter notebook: plot_2d_bands.ipynb ` + + +.. only:: html + + .. rst-class:: sphx-glr-signature + + `Gallery generated by Sphinx-Gallery `_ diff --git a/docs/_sources/examples/00-band_structure/plot_atomic_levels.rst.txt b/docs/_sources/examples/00-band_structure/plot_atomic_levels.rst.txt index 8eb7a42e..8911b23f 100644 --- a/docs/_sources/examples/00-band_structure/plot_atomic_levels.rst.txt +++ b/docs/_sources/examples/00-band_structure/plot_atomic_levels.rst.txt @@ -113,9 +113,8 @@ The plot will display energy levels for specific atoms in the range of -6 to 6 e Here is a list modes : plain , parametric , scatter , atomic , overlay , overlay_species , overlay_orbitals , ipr -------------------------------------------------------- - z:\research projects\pyprocar\pyprocar\plotter\ebs_plot.py:547: UserWarning: Attempting to set identical low and high xlims makes transformation singular; automatically expanding. + z:\research projects\pyprocar\pyprocar\plotter\ebs_plot.py:607: UserWarning: Attempting to set identical low and high xlims makes transformation singular; automatically expanding. self.ax.set_xlim(interval) - ret.shape (1, 246, 2) Atomic plot: bands.shape : (2, 246, 2) Atomic plot: spd.shape : (2, 246, 98, 1, 9, 2) Atomic plot: kpoints.shape: (2, 3) @@ -127,7 +126,7 @@ The plot will display energy levels for specific atoms in the range of -6 to 6 e .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 1.900 seconds) + **Total running time of the script:** ( 0 minutes 1.468 seconds) .. _sphx_glr_download_examples_00-band_structure_plot_atomic_levels.py: diff --git a/docs/_sources/examples/00-band_structure/plot_autobands.rst.txt b/docs/_sources/examples/00-band_structure/plot_autobands.rst.txt index 2ce9caad..894929d3 100644 --- a/docs/_sources/examples/00-band_structure/plot_autobands.rst.txt +++ b/docs/_sources/examples/00-band_structure/plot_autobands.rst.txt @@ -132,8 +132,6 @@ and the associated localized states. .. code-block:: none 2 orbitals. (Some of) They are unknow (if you did 'filter' them it is OK). - ret.shape (100, 206, 1) - ret.shape (100, 206, 1) [[0, 0.953], [0, 0.956]] [] @@ -146,7 +144,6 @@ and the associated localized states. -------------------------------------------------------- 2 orbitals. (Some of) They are unknow (if you did 'filter' them it is OK). - ret.shape (100, 206, 1) -------------------------------------------------------- There are additional plot options that are defined in a configuration file. @@ -157,7 +154,6 @@ and the associated localized states. -------------------------------------------------------- 2 orbitals. (Some of) They are unknow (if you did 'filter' them it is OK). - ret.shape (100, 206, 1) @@ -165,7 +161,7 @@ and the associated localized states. .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 27.777 seconds) + **Total running time of the script:** ( 0 minutes 26.997 seconds) .. _sphx_glr_download_examples_00-band_structure_plot_autobands.py: diff --git a/docs/_sources/examples/00-band_structure/plot_bandsplot_configurations.rst.txt b/docs/_sources/examples/00-band_structure/plot_bandsplot_configurations.rst.txt index 4ac5f982..ca131f27 100644 --- a/docs/_sources/examples/00-band_structure/plot_bandsplot_configurations.rst.txt +++ b/docs/_sources/examples/00-band_structure/plot_bandsplot_configurations.rst.txt @@ -107,6 +107,10 @@ Before diving into plotting, we need to download the example files. Use the foll spin_colors : {'description': 'The colors for the plot lines.', 'value': ['blue', 'red']} color : {'description': 'The colors for the plot lines.', 'value': 'black'} + colorbar_title : {'description': 'Title of the colorbar.', 'value': 'Atomic Orbital Projections'} + colorbar_title_size : {'description': 'Font size of the title of the colorbar.', 'value': 15} + colorbar_title_padding : {'description': 'Padding of the title of the colorbar.', 'value': 20} + colorbar_tick_labelsize : {'description': 'Size of the title of the colorbar ticks', 'value': 10} cmap : {'description': 'The colormap used for the plot.', 'value': 'jet'} clim : {'description': 'The color scale for the color bar', 'value': [None, None]} fermi_color : {'description': 'The color of the Fermi line.', 'value': 'blue'} @@ -185,7 +189,6 @@ Before diving into plotting, we need to download the example files. Use the foll Here is a list modes : plain , parametric , scatter , atomic , overlay , overlay_species , overlay_orbitals , ipr -------------------------------------------------------- - ret.shape (300, 12, 2) (
, ) @@ -234,7 +237,6 @@ Before diving into plotting, we need to download the example files. Use the foll Here is a list modes : plain , parametric , scatter , atomic , overlay , overlay_species , overlay_orbitals , ipr -------------------------------------------------------- - ret.shape (300, 12, 2) (
, ) @@ -283,7 +285,6 @@ Before diving into plotting, we need to download the example files. Use the foll Here is a list modes : plain , parametric , scatter , atomic , overlay , overlay_species , overlay_orbitals , ipr -------------------------------------------------------- - ret.shape (300, 12, 2) (
, ) @@ -292,7 +293,7 @@ Before diving into plotting, we need to download the example files. Use the foll .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 2.895 seconds) + **Total running time of the script:** ( 0 minutes 2.839 seconds) .. _sphx_glr_download_examples_00-band_structure_plot_bandsplot_configurations.py: diff --git a/docs/_sources/examples/00-band_structure/plot_colinear.rst.txt b/docs/_sources/examples/00-band_structure/plot_colinear.rst.txt index 2794f720..99ab26db 100644 --- a/docs/_sources/examples/00-band_structure/plot_colinear.rst.txt +++ b/docs/_sources/examples/00-band_structure/plot_colinear.rst.txt @@ -147,7 +147,6 @@ For details on the meaning of the indices of the atomic projection please refer Here is a list modes : plain , parametric , scatter , atomic , overlay , overlay_species , overlay_orbitals , ipr -------------------------------------------------------- - ret.shape (300, 10, 1) (
, ) @@ -203,7 +202,6 @@ For details on the meaning of the indices of the atomic projection please refer Here is a list modes : plain , parametric , scatter , atomic , overlay , overlay_species , overlay_orbitals , ipr -------------------------------------------------------- - ret.shape (300, 10, 1) (
, ) @@ -256,7 +254,6 @@ Scatter mode Here is a list modes : plain , parametric , scatter , atomic , overlay , overlay_species , overlay_orbitals , ipr -------------------------------------------------------- - ret.shape (300, 10, 1) (
, ) @@ -306,7 +303,6 @@ overlay_species mode Here is a list modes : plain , parametric , scatter , atomic , overlay , overlay_species , overlay_orbitals , ipr -------------------------------------------------------- - ret.shape (300, 10, 1) (
, ) @@ -356,9 +352,6 @@ overlay_orbtials mode Here is a list modes : plain , parametric , scatter , atomic , overlay , overlay_species , overlay_orbitals , ipr -------------------------------------------------------- - ret.shape (300, 10, 1) - ret.shape (300, 10, 1) - ret.shape (300, 10, 1) (
, ) @@ -406,7 +399,6 @@ overlay mode Here is a list modes : plain , parametric , scatter , atomic , overlay , overlay_species , overlay_orbitals , ipr -------------------------------------------------------- - ret.shape (300, 10, 1) (
, ) @@ -452,7 +444,6 @@ overlay mode by orbital names Here is a list modes : plain , parametric , scatter , atomic , overlay , overlay_species , overlay_orbitals , ipr -------------------------------------------------------- - ret.shape (300, 10, 1) (
, ) @@ -461,7 +452,7 @@ overlay mode by orbital names .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 3.390 seconds) + **Total running time of the script:** ( 0 minutes 3.591 seconds) .. _sphx_glr_download_examples_00-band_structure_plot_colinear.py: diff --git a/docs/_sources/examples/00-band_structure/plot_compare_bands.rst.txt b/docs/_sources/examples/00-band_structure/plot_compare_bands.rst.txt index 9602220f..88a20474 100644 --- a/docs/_sources/examples/00-band_structure/plot_compare_bands.rst.txt +++ b/docs/_sources/examples/00-band_structure/plot_compare_bands.rst.txt @@ -99,7 +99,6 @@ When show is equal to False, bandsplot will return a maplotlib.Figure and maplot Here is a list modes : plain , parametric , scatter , atomic , overlay , overlay_species , overlay_orbitals , ipr -------------------------------------------------------- - ret.shape (300, 10, 1) -------------------------------------------------------- There are additional plot options that are defined in a configuration file. @@ -117,7 +116,7 @@ When show is equal to False, bandsplot will return a maplotlib.Figure and maplot .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 0.515 seconds) + **Total running time of the script:** ( 0 minutes 1.747 seconds) .. _sphx_glr_download_examples_00-band_structure_plot_compare_bands.py: diff --git a/docs/_sources/examples/00-band_structure/plot_ipr.rst.txt b/docs/_sources/examples/00-band_structure/plot_ipr.rst.txt index 6f81766b..3f5b5495 100644 --- a/docs/_sources/examples/00-band_structure/plot_ipr.rst.txt +++ b/docs/_sources/examples/00-band_structure/plot_ipr.rst.txt @@ -191,7 +191,7 @@ The pyprocar code is: Here is a list modes : plain , parametric , scatter , atomic , overlay , overlay_species , overlay_orbitals , ipr -------------------------------------------------------- - z:\research projects\pyprocar\pyprocar\plotter\ebs_plot.py:547: UserWarning: Attempting to set identical low and high xlims makes transformation singular; automatically expanding. + z:\research projects\pyprocar\pyprocar\plotter\ebs_plot.py:607: UserWarning: Attempting to set identical low and high xlims makes transformation singular; automatically expanding. self.ax.set_xlim(interval) Atomic plot: bands.shape : (2, 540, 2) Atomic plot: spd.shape : (2, 540, 215, 1, 9, 2) @@ -204,7 +204,7 @@ The pyprocar code is: .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 24.654 seconds) + **Total running time of the script:** ( 0 minutes 24.965 seconds) .. _sphx_glr_download_examples_00-band_structure_plot_ipr.py: diff --git a/docs/_sources/examples/00-band_structure/plot_noncolinear_qe.rst.txt b/docs/_sources/examples/00-band_structure/plot_noncolinear_qe.rst.txt index 2c1ef483..f0d4d9f8 100644 --- a/docs/_sources/examples/00-band_structure/plot_noncolinear_qe.rst.txt +++ b/docs/_sources/examples/00-band_structure/plot_noncolinear_qe.rst.txt @@ -162,7 +162,6 @@ For details on the meaning of the indices of the atomic projection please refer Here is a list modes : plain , parametric , scatter , atomic , overlay , overlay_species , overlay_orbitals , ipr -------------------------------------------------------- - ret.shape (91, 24, 1) (
, ) @@ -171,7 +170,7 @@ For details on the meaning of the indices of the atomic projection please refer .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 1.621 seconds) + **Total running time of the script:** ( 0 minutes 1.651 seconds) .. _sphx_glr_download_examples_00-band_structure_plot_noncolinear_qe.py: diff --git a/docs/_sources/examples/00-band_structure/plot_noncolinear_vasp.rst.txt b/docs/_sources/examples/00-band_structure/plot_noncolinear_vasp.rst.txt index 67b92dc2..6b1c670d 100644 --- a/docs/_sources/examples/00-band_structure/plot_noncolinear_vasp.rst.txt +++ b/docs/_sources/examples/00-band_structure/plot_noncolinear_vasp.rst.txt @@ -148,7 +148,6 @@ For details on the meaning of the indices of the atomic projection please refer Here is a list modes : plain , parametric , scatter , atomic , overlay , overlay_species , overlay_orbitals , ipr -------------------------------------------------------- - ret.shape (300, 20, 1) (
, ) @@ -157,7 +156,7 @@ For details on the meaning of the indices of the atomic projection please refer .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 2.164 seconds) + **Total running time of the script:** ( 0 minutes 2.116 seconds) .. _sphx_glr_download_examples_00-band_structure_plot_noncolinear_vasp.py: diff --git a/docs/_sources/examples/00-band_structure/plot_spin_polarized.rst.txt b/docs/_sources/examples/00-band_structure/plot_spin_polarized.rst.txt index d4fdc178..50741d35 100644 --- a/docs/_sources/examples/00-band_structure/plot_spin_polarized.rst.txt +++ b/docs/_sources/examples/00-band_structure/plot_spin_polarized.rst.txt @@ -193,7 +193,6 @@ For details on the meaning of the indices of the atomic projection please refer Here is a list modes : plain , parametric , scatter , atomic , overlay , overlay_species , overlay_orbitals , ipr -------------------------------------------------------- - ret.shape (300, 12, 2) (
, ) @@ -245,7 +244,6 @@ Scatter mode Here is a list modes : plain , parametric , scatter , atomic , overlay , overlay_species , overlay_orbitals , ipr -------------------------------------------------------- - ret.shape (300, 12, 2) (
, ) @@ -254,7 +252,7 @@ Scatter mode .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 2.706 seconds) + **Total running time of the script:** ( 0 minutes 3.518 seconds) .. _sphx_glr_download_examples_00-band_structure_plot_spin_polarized.py: diff --git a/docs/_sources/examples/00-band_structure/plot_unfolding.rst.txt b/docs/_sources/examples/00-band_structure/plot_unfolding.rst.txt index 27e53af8..5c93de76 100644 --- a/docs/_sources/examples/00-band_structure/plot_unfolding.rst.txt +++ b/docs/_sources/examples/00-band_structure/plot_unfolding.rst.txt @@ -154,7 +154,7 @@ For the KPOINTS, the paths need to be changed to reflect the change in the unitc |___/ A Python library for electronic structure pre/post-processing. - Version 6.1.5 created on Jun 10th, 2021 + Version 6.1.6 created on Jun 10th, 2021 Please cite: Uthpala Herath, Pedram Tavadze, Xu He, Eric Bousquet, Sobhit Singh, Francisco Muñoz and Aldo Romero., @@ -183,7 +183,7 @@ For the KPOINTS, the paths need to be changed to reflect the change in the unitc Here is a list modes : plain , parametric , scatter , atomic , overlay , overlay_species , overlay_orbitals , ipr -------------------------------------------------------- - z:\research projects\pyprocar\pyprocar\plotter\ebs_plot.py:605: UserWarning: Legend does not support handles for list instances. + z:\research projects\pyprocar\pyprocar\plotter\ebs_plot.py:684: UserWarning: Legend does not support handles for list instances. A proxy artist may be used instead. See: https://matplotlib.org/stable/tutorials/intermediate/legend_guide.html#controlling-the-legend-entries self.ax.legend(self.handles, labels) @@ -195,7 +195,7 @@ For the KPOINTS, the paths need to be changed to reflect the change in the unitc .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 23.498 seconds) + **Total running time of the script:** ( 0 minutes 23.457 seconds) .. _sphx_glr_download_examples_00-band_structure_plot_unfolding.py: diff --git a/docs/_sources/examples/00-band_structure/sg_execution_times.rst.txt b/docs/_sources/examples/00-band_structure/sg_execution_times.rst.txt index 409e937d..c49fcad6 100644 --- a/docs/_sources/examples/00-band_structure/sg_execution_times.rst.txt +++ b/docs/_sources/examples/00-band_structure/sg_execution_times.rst.txt @@ -6,26 +6,28 @@ Computation times ================= -**01:31.121** total execution time for **examples_00-band_structure** files: +**05:04.130** total execution time for **examples_00-band_structure** files: +--------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_00-band_structure_plot_autobands.py` (``plot_autobands.py``) | 00:27.777 | 0.0 MB | +| :ref:`sphx_glr_examples_00-band_structure_plot_2d_bands.py` (``plot_2d_bands.py``) | 03:31.780 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_00-band_structure_plot_ipr.py` (``plot_ipr.py``) | 00:24.654 | 0.0 MB | +| :ref:`sphx_glr_examples_00-band_structure_plot_autobands.py` (``plot_autobands.py``) | 00:26.997 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_00-band_structure_plot_unfolding.py` (``plot_unfolding.py``) | 00:23.498 | 0.0 MB | +| :ref:`sphx_glr_examples_00-band_structure_plot_ipr.py` (``plot_ipr.py``) | 00:24.965 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_00-band_structure_plot_colinear.py` (``plot_colinear.py``) | 00:03.390 | 0.0 MB | +| :ref:`sphx_glr_examples_00-band_structure_plot_unfolding.py` (``plot_unfolding.py``) | 00:23.457 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_00-band_structure_plot_bandsplot_configurations.py` (``plot_bandsplot_configurations.py``) | 00:02.895 | 0.0 MB | +| :ref:`sphx_glr_examples_00-band_structure_plot_colinear.py` (``plot_colinear.py``) | 00:03.591 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_00-band_structure_plot_spin_polarized.py` (``plot_spin_polarized.py``) | 00:02.706 | 0.0 MB | +| :ref:`sphx_glr_examples_00-band_structure_plot_spin_polarized.py` (``plot_spin_polarized.py``) | 00:03.518 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_00-band_structure_plot_noncolinear_vasp.py` (``plot_noncolinear_vasp.py``) | 00:02.164 | 0.0 MB | +| :ref:`sphx_glr_examples_00-band_structure_plot_bandsplot_configurations.py` (``plot_bandsplot_configurations.py``) | 00:02.839 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_00-band_structure_plot_atomic_levels.py` (``plot_atomic_levels.py``) | 00:01.900 | 0.0 MB | +| :ref:`sphx_glr_examples_00-band_structure_plot_noncolinear_vasp.py` (``plot_noncolinear_vasp.py``) | 00:02.116 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_00-band_structure_plot_noncolinear_qe.py` (``plot_noncolinear_qe.py``) | 00:01.621 | 0.0 MB | +| :ref:`sphx_glr_examples_00-band_structure_plot_compare_bands.py` (``plot_compare_bands.py``) | 00:01.747 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_00-band_structure_plot_compare_bands.py` (``plot_compare_bands.py``) | 00:00.515 | 0.0 MB | +| :ref:`sphx_glr_examples_00-band_structure_plot_noncolinear_qe.py` (``plot_noncolinear_qe.py``) | 00:01.651 | 0.0 MB | ++--------------------------------------------------------------------------------------------------------------------+-----------+--------+ +| :ref:`sphx_glr_examples_00-band_structure_plot_atomic_levels.py` (``plot_atomic_levels.py``) | 00:01.468 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/docs/_sources/examples/01-dos/plot_colinear_dos.rst.txt b/docs/_sources/examples/01-dos/plot_colinear_dos.rst.txt index f0149563..5ad9ab03 100644 --- a/docs/_sources/examples/01-dos/plot_colinear_dos.rst.txt +++ b/docs/_sources/examples/01-dos/plot_colinear_dos.rst.txt @@ -357,7 +357,7 @@ overlay mode .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 27.759 seconds) + **Total running time of the script:** ( 0 minutes 29.245 seconds) .. _sphx_glr_download_examples_01-dos_plot_colinear_dos.py: diff --git a/docs/_sources/examples/01-dos/plot_dosplot_configurations.rst.txt b/docs/_sources/examples/01-dos/plot_dosplot_configurations.rst.txt index 37644410..5c59886b 100644 --- a/docs/_sources/examples/01-dos/plot_dosplot_configurations.rst.txt +++ b/docs/_sources/examples/01-dos/plot_dosplot_configurations.rst.txt @@ -107,6 +107,10 @@ Before diving into plotting, we need to download the example files. Use the foll cmap : {'description': 'The colormap used for the plot.', 'value': 'jet'} colors : {'description': 'List of colors for the plot lines.', 'value': ['red', 'green', 'blue', 'cyan', 'magenta', 'yellow', 'orange', 'purple', 'brown', 'navy', 'maroon', 'olive']} + colorbar_title : {'description': 'Title of the colorbar.', 'value': 'Atomic Orbital Projections'} + colorbar_title_size : {'description': 'Font size of the title of the colorbar.', 'value': 15} + colorbar_title_padding : {'description': 'Padding of the title of the colorbar.', 'value': 20} + colorbar_tick_labelsize : {'description': 'Size of the title of the colorbar ticks', 'value': 10} fermi_color : {'description': 'The color of the Fermi line.', 'value': 'black'} fermi_linestyle : {'description': 'The linestyle of the Fermi line.', 'value': 'dotted'} fermi_linewidth : {'description': 'The linewidth of the Fermi line.', 'value': 1} @@ -248,7 +252,7 @@ Before diving into plotting, we need to download the example files. Use the foll .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 1.731 seconds) + **Total running time of the script:** ( 0 minutes 1.965 seconds) .. _sphx_glr_download_examples_01-dos_plot_dosplot_configurations.py: diff --git a/docs/_sources/examples/01-dos/plot_noncolinear_dos_qe.rst.txt b/docs/_sources/examples/01-dos/plot_noncolinear_dos_qe.rst.txt index 680cf0eb..1f662cbb 100644 --- a/docs/_sources/examples/01-dos/plot_noncolinear_dos_qe.rst.txt +++ b/docs/_sources/examples/01-dos/plot_noncolinear_dos_qe.rst.txt @@ -112,7 +112,7 @@ For details on the meaning of the indices of the atomic projection please refer .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 22.943 seconds) + **Total running time of the script:** ( 0 minutes 24.813 seconds) .. _sphx_glr_download_examples_01-dos_plot_noncolinear_dos_qe.py: diff --git a/docs/_sources/examples/01-dos/plot_noncolinear_dos_vasp.rst.txt b/docs/_sources/examples/01-dos/plot_noncolinear_dos_vasp.rst.txt index 28a89096..57f56cdb 100644 --- a/docs/_sources/examples/01-dos/plot_noncolinear_dos_vasp.rst.txt +++ b/docs/_sources/examples/01-dos/plot_noncolinear_dos_vasp.rst.txt @@ -111,7 +111,7 @@ For details on the meaning of the indices of the atomic projection please refer .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 5.284 seconds) + **Total running time of the script:** ( 0 minutes 5.803 seconds) .. _sphx_glr_download_examples_01-dos_plot_noncolinear_dos_vasp.py: diff --git a/docs/_sources/examples/01-dos/plot_spin_polarized_dos.rst.txt b/docs/_sources/examples/01-dos/plot_spin_polarized_dos.rst.txt index a0d9379d..46986e6e 100644 --- a/docs/_sources/examples/01-dos/plot_spin_polarized_dos.rst.txt +++ b/docs/_sources/examples/01-dos/plot_spin_polarized_dos.rst.txt @@ -404,7 +404,7 @@ stack mode .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 3.244 seconds) + **Total running time of the script:** ( 0 minutes 4.501 seconds) .. _sphx_glr_download_examples_01-dos_plot_spin_polarized_dos.py: diff --git a/docs/_sources/examples/01-dos/sg_execution_times.rst.txt b/docs/_sources/examples/01-dos/sg_execution_times.rst.txt index 6373e29a..06fc8113 100644 --- a/docs/_sources/examples/01-dos/sg_execution_times.rst.txt +++ b/docs/_sources/examples/01-dos/sg_execution_times.rst.txt @@ -6,16 +6,16 @@ Computation times ================= -**01:00.961** total execution time for **examples_01-dos** files: +**01:06.328** total execution time for **examples_01-dos** files: +-----------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_01-dos_plot_colinear_dos.py` (``plot_colinear_dos.py``) | 00:27.759 | 0.0 MB | +| :ref:`sphx_glr_examples_01-dos_plot_colinear_dos.py` (``plot_colinear_dos.py``) | 00:29.245 | 0.0 MB | +-----------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_01-dos_plot_noncolinear_dos_qe.py` (``plot_noncolinear_dos_qe.py``) | 00:22.943 | 0.0 MB | +| :ref:`sphx_glr_examples_01-dos_plot_noncolinear_dos_qe.py` (``plot_noncolinear_dos_qe.py``) | 00:24.813 | 0.0 MB | +-----------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_01-dos_plot_noncolinear_dos_vasp.py` (``plot_noncolinear_dos_vasp.py``) | 00:05.284 | 0.0 MB | +| :ref:`sphx_glr_examples_01-dos_plot_noncolinear_dos_vasp.py` (``plot_noncolinear_dos_vasp.py``) | 00:05.803 | 0.0 MB | +-----------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_01-dos_plot_spin_polarized_dos.py` (``plot_spin_polarized_dos.py``) | 00:03.244 | 0.0 MB | +| :ref:`sphx_glr_examples_01-dos_plot_spin_polarized_dos.py` (``plot_spin_polarized_dos.py``) | 00:04.501 | 0.0 MB | +-----------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_01-dos_plot_dosplot_configurations.py` (``plot_dosplot_configurations.py``) | 00:01.731 | 0.0 MB | +| :ref:`sphx_glr_examples_01-dos_plot_dosplot_configurations.py` (``plot_dosplot_configurations.py``) | 00:01.965 | 0.0 MB | +-----------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/docs/_sources/examples/02-bands_dos/plot_bandsdosplot.rst.txt b/docs/_sources/examples/02-bands_dos/plot_bandsdosplot.rst.txt index 722111d3..ffa5cca0 100644 --- a/docs/_sources/examples/02-bands_dos/plot_bandsdosplot.rst.txt +++ b/docs/_sources/examples/02-bands_dos/plot_bandsdosplot.rst.txt @@ -108,7 +108,7 @@ These keyword arguments can be set in bands_settings and dos_settings as done be |___/ A Python library for electronic structure pre/post-processing. - Version 6.1.5 created on Jun 10th, 2021 + Version 6.1.6 created on Jun 10th, 2021 Please cite: Uthpala Herath, Pedram Tavadze, Xu He, Eric Bousquet, Sobhit Singh, Francisco Muñoz and Aldo Romero., @@ -154,7 +154,7 @@ These keyword arguments can be set in bands_settings and dos_settings as done be .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 0.401 seconds) + **Total running time of the script:** ( 0 minutes 0.509 seconds) .. _sphx_glr_download_examples_02-bands_dos_plot_bandsdosplot.py: diff --git a/docs/_sources/examples/02-bands_dos/plot_bandsdosplot_configurations.rst.txt b/docs/_sources/examples/02-bands_dos/plot_bandsdosplot_configurations.rst.txt index 9d89f990..4d41208a 100644 --- a/docs/_sources/examples/02-bands_dos/plot_bandsdosplot_configurations.rst.txt +++ b/docs/_sources/examples/02-bands_dos/plot_bandsdosplot_configurations.rst.txt @@ -107,7 +107,7 @@ Before diving into plotting, we need to download the example files. Use the foll |___/ A Python library for electronic structure pre/post-processing. - Version 6.1.5 created on Jun 10th, 2021 + Version 6.1.6 created on Jun 10th, 2021 Please cite: Uthpala Herath, Pedram Tavadze, Xu He, Eric Bousquet, Sobhit Singh, Francisco Muñoz and Aldo Romero., @@ -211,7 +211,7 @@ Before diving into plotting, we need to download the example files. Use the foll |___/ A Python library for electronic structure pre/post-processing. - Version 6.1.5 created on Jun 10th, 2021 + Version 6.1.6 created on Jun 10th, 2021 Please cite: Uthpala Herath, Pedram Tavadze, Xu He, Eric Bousquet, Sobhit Singh, Francisco Muñoz and Aldo Romero., @@ -240,7 +240,6 @@ Before diving into plotting, we need to download the example files. Use the foll Here is a list modes : plain , parametric , scatter , atomic , overlay , overlay_species , overlay_orbitals , ipr -------------------------------------------------------- - ret.shape (300, 10, 1) -------------------------------------------------------- There are additional plot options that are defined in a configuration file. @@ -304,7 +303,7 @@ Before diving into plotting, we need to download the example files. Use the foll |___/ A Python library for electronic structure pre/post-processing. - Version 6.1.5 created on Jun 10th, 2021 + Version 6.1.6 created on Jun 10th, 2021 Please cite: Uthpala Herath, Pedram Tavadze, Xu He, Eric Bousquet, Sobhit Singh, Francisco Muñoz and Aldo Romero., @@ -333,7 +332,6 @@ Before diving into plotting, we need to download the example files. Use the foll Here is a list modes : plain , parametric , scatter , atomic , overlay , overlay_species , overlay_orbitals , ipr -------------------------------------------------------- - ret.shape (300, 10, 1) -------------------------------------------------------- There are additional plot options that are defined in a configuration file. @@ -351,7 +349,7 @@ Before diving into plotting, we need to download the example files. Use the foll .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 2.470 seconds) + **Total running time of the script:** ( 0 minutes 2.862 seconds) .. _sphx_glr_download_examples_02-bands_dos_plot_bandsdosplot_configurations.py: diff --git a/docs/_sources/examples/02-bands_dos/sg_execution_times.rst.txt b/docs/_sources/examples/02-bands_dos/sg_execution_times.rst.txt index 18dfdeb6..fa2c2bae 100644 --- a/docs/_sources/examples/02-bands_dos/sg_execution_times.rst.txt +++ b/docs/_sources/examples/02-bands_dos/sg_execution_times.rst.txt @@ -6,10 +6,10 @@ Computation times ================= -**00:02.871** total execution time for **examples_02-bands_dos** files: +**00:03.371** total execution time for **examples_02-bands_dos** files: +---------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_02-bands_dos_plot_bandsdosplot_configurations.py` (``plot_bandsdosplot_configurations.py``) | 00:02.470 | 0.0 MB | +| :ref:`sphx_glr_examples_02-bands_dos_plot_bandsdosplot_configurations.py` (``plot_bandsdosplot_configurations.py``) | 00:02.862 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_02-bands_dos_plot_bandsdosplot.py` (``plot_bandsdosplot.py``) | 00:00.401 | 0.0 MB | +| :ref:`sphx_glr_examples_02-bands_dos_plot_bandsdosplot.py` (``plot_bandsdosplot.py``) | 00:00.509 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/docs/_sources/examples/03-fermi2d/plot_fermi2d.rst.txt b/docs/_sources/examples/03-fermi2d/plot_fermi2d.rst.txt index 13f0cf4b..c8ee21a6 100644 --- a/docs/_sources/examples/03-fermi2d/plot_fermi2d.rst.txt +++ b/docs/_sources/examples/03-fermi2d/plot_fermi2d.rst.txt @@ -95,7 +95,7 @@ Plain mode |___/ A Python library for electronic structure pre/post-processing. - Version 6.1.5 created on Jun 10th, 2021 + Version 6.1.6 created on Jun 10th, 2021 Please cite: Uthpala Herath, Pedram Tavadze, Xu He, Eric Bousquet, Sobhit Singh, Francisco Muñoz and Aldo Romero., @@ -138,7 +138,6 @@ Plain mode _____________________________________________________ Useful band indices for spin-0 : [2 3 4 5] Useful band indices for spin-1 : [2 3] - ret.shape (225, 12, 2) @@ -185,7 +184,7 @@ plain_bands mode |___/ A Python library for electronic structure pre/post-processing. - Version 6.1.5 created on Jun 10th, 2021 + Version 6.1.6 created on Jun 10th, 2021 Please cite: Uthpala Herath, Pedram Tavadze, Xu He, Eric Bousquet, Sobhit Singh, Francisco Muñoz and Aldo Romero., @@ -228,7 +227,6 @@ plain_bands mode _____________________________________________________ Useful band indices for spin-0 : [2 3 4 5] Useful band indices for spin-1 : [2 3] - ret.shape (225, 12, 2) @@ -280,7 +278,7 @@ Does not work. Contact developers |___/ A Python library for electronic structure pre/post-processing. - Version 6.1.5 created on Jun 10th, 2021 + Version 6.1.6 created on Jun 10th, 2021 Please cite: Uthpala Herath, Pedram Tavadze, Xu He, Eric Bousquet, Sobhit Singh, Francisco Muñoz and Aldo Romero., @@ -323,7 +321,6 @@ Does not work. Contact developers _____________________________________________________ Useful band indices for spin-0 : [2 3 4 5] Useful band indices for spin-1 : [2 3] - ret.shape (225, 12, 2) @@ -369,7 +366,7 @@ Also you can specify the colors of the bands as well with band_colors |___/ A Python library for electronic structure pre/post-processing. - Version 6.1.5 created on Jun 10th, 2021 + Version 6.1.6 created on Jun 10th, 2021 Please cite: Uthpala Herath, Pedram Tavadze, Xu He, Eric Bousquet, Sobhit Singh, Francisco Muñoz and Aldo Romero., @@ -412,7 +409,6 @@ Also you can specify the colors of the bands as well with band_colors _____________________________________________________ Useful band indices for spin-0 : [2 3 4 5] Useful band indices for spin-1 : [2 3] - ret.shape (225, 12, 2) @@ -420,7 +416,7 @@ Also you can specify the colors of the bands as well with band_colors .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 7.104 seconds) + **Total running time of the script:** ( 0 minutes 7.541 seconds) .. _sphx_glr_download_examples_03-fermi2d_plot_fermi2d.py: diff --git a/docs/_sources/examples/03-fermi2d/plot_fermi2d_configurations.rst.txt b/docs/_sources/examples/03-fermi2d/plot_fermi2d_configurations.rst.txt index ade1f808..39332afa 100644 --- a/docs/_sources/examples/03-fermi2d/plot_fermi2d_configurations.rst.txt +++ b/docs/_sources/examples/03-fermi2d/plot_fermi2d_configurations.rst.txt @@ -96,7 +96,7 @@ Before diving into plotting, we need to download the example files. Use the foll |___/ A Python library for electronic structure pre/post-processing. - Version 6.1.5 created on Jun 10th, 2021 + Version 6.1.6 created on Jun 10th, 2021 Please cite: Uthpala Herath, Pedram Tavadze, Xu He, Eric Bousquet, Sobhit Singh, Francisco Muñoz and Aldo Romero., @@ -155,7 +155,6 @@ Before diving into plotting, we need to download the example files. Use the foll y_label : {'description': 'The x label of the plot', 'value': '$k_{y}$ ($\\AA^{-1}$)'} _____________________________________________________ Useful band indices for spin-0 : [4 5 6 7 8 9] - ret.shape (225, 20, 4) @@ -204,7 +203,7 @@ Before diving into plotting, we need to download the example files. Use the foll |___/ A Python library for electronic structure pre/post-processing. - Version 6.1.5 created on Jun 10th, 2021 + Version 6.1.6 created on Jun 10th, 2021 Please cite: Uthpala Herath, Pedram Tavadze, Xu He, Eric Bousquet, Sobhit Singh, Francisco Muñoz and Aldo Romero., @@ -246,10 +245,6 @@ Before diving into plotting, we need to download the example files. Use the foll _____________________________________________________ Useful band indices for spin-0 : [4 5 6 7 8 9] - ret.shape (225, 20, 4) - ret.shape (225, 20, 4) - ret.shape (225, 20, 4) - ret.shape (225, 20, 4) @@ -298,7 +293,7 @@ Before diving into plotting, we need to download the example files. Use the foll |___/ A Python library for electronic structure pre/post-processing. - Version 6.1.5 created on Jun 10th, 2021 + Version 6.1.6 created on Jun 10th, 2021 Please cite: Uthpala Herath, Pedram Tavadze, Xu He, Eric Bousquet, Sobhit Singh, Francisco Muñoz and Aldo Romero., @@ -340,10 +335,6 @@ Before diving into plotting, we need to download the example files. Use the foll _____________________________________________________ Useful band indices for spin-0 : [4 5 6 7 8 9] - ret.shape (225, 20, 4) - ret.shape (225, 20, 4) - ret.shape (225, 20, 4) - ret.shape (225, 20, 4) @@ -351,7 +342,7 @@ Before diving into plotting, we need to download the example files. Use the foll .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 20.284 seconds) + **Total running time of the script:** ( 0 minutes 20.442 seconds) .. _sphx_glr_download_examples_03-fermi2d_plot_fermi2d_configurations.py: diff --git a/docs/_sources/examples/03-fermi2d/plot_fermi2d_spin_texture.rst.txt b/docs/_sources/examples/03-fermi2d/plot_fermi2d_spin_texture.rst.txt index a1f2a510..3653f811 100644 --- a/docs/_sources/examples/03-fermi2d/plot_fermi2d_spin_texture.rst.txt +++ b/docs/_sources/examples/03-fermi2d/plot_fermi2d_spin_texture.rst.txt @@ -102,7 +102,7 @@ But you can change this by setting arrow_projection to one of the following |___/ A Python library for electronic structure pre/post-processing. - Version 6.1.5 created on Jun 10th, 2021 + Version 6.1.6 created on Jun 10th, 2021 Please cite: Uthpala Herath, Pedram Tavadze, Xu He, Eric Bousquet, Sobhit Singh, Francisco Muñoz and Aldo Romero., @@ -144,10 +144,6 @@ But you can change this by setting arrow_projection to one of the following _____________________________________________________ Useful band indices for spin-0 : [4 5 6 7 8 9] - ret.shape (225, 20, 4) - ret.shape (225, 20, 4) - ret.shape (225, 20, 4) - ret.shape (225, 20, 4) @@ -194,7 +190,7 @@ Spin Texture single color |___/ A Python library for electronic structure pre/post-processing. - Version 6.1.5 created on Jun 10th, 2021 + Version 6.1.6 created on Jun 10th, 2021 Please cite: Uthpala Herath, Pedram Tavadze, Xu He, Eric Bousquet, Sobhit Singh, Francisco Muñoz and Aldo Romero., @@ -236,10 +232,6 @@ Spin Texture single color _____________________________________________________ Useful band indices for spin-0 : [4 5 6 7 8 9] - ret.shape (225, 20, 4) - ret.shape (225, 20, 4) - ret.shape (225, 20, 4) - ret.shape (225, 20, 4) @@ -288,7 +280,7 @@ Also you can specify the colors of the bands as well with band_colors |___/ A Python library for electronic structure pre/post-processing. - Version 6.1.5 created on Jun 10th, 2021 + Version 6.1.6 created on Jun 10th, 2021 Please cite: Uthpala Herath, Pedram Tavadze, Xu He, Eric Bousquet, Sobhit Singh, Francisco Muñoz and Aldo Romero., @@ -330,10 +322,6 @@ Also you can specify the colors of the bands as well with band_colors _____________________________________________________ Useful band indices for spin-0 : [4 5 6 7 8 9] - ret.shape (225, 20, 4) - ret.shape (225, 20, 4) - ret.shape (225, 20, 4) - ret.shape (225, 20, 4) @@ -341,7 +329,7 @@ Also you can specify the colors of the bands as well with band_colors .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 19.870 seconds) + **Total running time of the script:** ( 0 minutes 20.464 seconds) .. _sphx_glr_download_examples_03-fermi2d_plot_fermi2d_spin_texture.py: diff --git a/docs/_sources/examples/03-fermi2d/plot_rashba_spin_spliting.rst.txt b/docs/_sources/examples/03-fermi2d/plot_rashba_spin_spliting.rst.txt index 5a42aa81..fa07e83c 100644 --- a/docs/_sources/examples/03-fermi2d/plot_rashba_spin_spliting.rst.txt +++ b/docs/_sources/examples/03-fermi2d/plot_rashba_spin_spliting.rst.txt @@ -98,7 +98,7 @@ energy = 0.60 sx projection no arrows |___/ A Python library for electronic structure pre/post-processing. - Version 6.1.5 created on Jun 10th, 2021 + Version 6.1.6 created on Jun 10th, 2021 Please cite: Uthpala Herath, Pedram Tavadze, Xu He, Eric Bousquet, Sobhit Singh, Francisco Muñoz and Aldo Romero., @@ -140,10 +140,6 @@ energy = 0.60 sx projection no arrows _____________________________________________________ Useful band indices for spin-0 : [20 21] - ret.shape (961, 32, 4) - ret.shape (961, 32, 4) - ret.shape (961, 32, 4) - ret.shape (961, 32, 4) @@ -189,7 +185,7 @@ energy = 0.60 sy projection no arrows |___/ A Python library for electronic structure pre/post-processing. - Version 6.1.5 created on Jun 10th, 2021 + Version 6.1.6 created on Jun 10th, 2021 Please cite: Uthpala Herath, Pedram Tavadze, Xu He, Eric Bousquet, Sobhit Singh, Francisco Muñoz and Aldo Romero., @@ -231,10 +227,6 @@ energy = 0.60 sy projection no arrows _____________________________________________________ Useful band indices for spin-0 : [20 21] - ret.shape (961, 32, 4) - ret.shape (961, 32, 4) - ret.shape (961, 32, 4) - ret.shape (961, 32, 4) @@ -279,7 +271,7 @@ energy = 0.60 sz projection no arrows |___/ A Python library for electronic structure pre/post-processing. - Version 6.1.5 created on Jun 10th, 2021 + Version 6.1.6 created on Jun 10th, 2021 Please cite: Uthpala Herath, Pedram Tavadze, Xu He, Eric Bousquet, Sobhit Singh, Francisco Muñoz and Aldo Romero., @@ -321,10 +313,6 @@ energy = 0.60 sz projection no arrows _____________________________________________________ Useful band indices for spin-0 : [20 21] - ret.shape (961, 32, 4) - ret.shape (961, 32, 4) - ret.shape (961, 32, 4) - ret.shape (961, 32, 4) @@ -369,7 +357,7 @@ energy = -0.90 sx projection no arrows |___/ A Python library for electronic structure pre/post-processing. - Version 6.1.5 created on Jun 10th, 2021 + Version 6.1.6 created on Jun 10th, 2021 Please cite: Uthpala Herath, Pedram Tavadze, Xu He, Eric Bousquet, Sobhit Singh, Francisco Muñoz and Aldo Romero., @@ -411,10 +399,6 @@ energy = -0.90 sx projection no arrows _____________________________________________________ Useful band indices for spin-0 : [16 17 18 19] - ret.shape (961, 32, 4) - ret.shape (961, 32, 4) - ret.shape (961, 32, 4) - ret.shape (961, 32, 4) @@ -460,7 +444,7 @@ energy = -0.90 sy projection no arrows |___/ A Python library for electronic structure pre/post-processing. - Version 6.1.5 created on Jun 10th, 2021 + Version 6.1.6 created on Jun 10th, 2021 Please cite: Uthpala Herath, Pedram Tavadze, Xu He, Eric Bousquet, Sobhit Singh, Francisco Muñoz and Aldo Romero., @@ -502,10 +486,6 @@ energy = -0.90 sy projection no arrows _____________________________________________________ Useful band indices for spin-0 : [16 17 18 19] - ret.shape (961, 32, 4) - ret.shape (961, 32, 4) - ret.shape (961, 32, 4) - ret.shape (961, 32, 4) @@ -551,7 +531,7 @@ energy = -0.90 sz projection no arrows |___/ A Python library for electronic structure pre/post-processing. - Version 6.1.5 created on Jun 10th, 2021 + Version 6.1.6 created on Jun 10th, 2021 Please cite: Uthpala Herath, Pedram Tavadze, Xu He, Eric Bousquet, Sobhit Singh, Francisco Muñoz and Aldo Romero., @@ -593,10 +573,6 @@ energy = -0.90 sz projection no arrows _____________________________________________________ Useful band indices for spin-0 : [16 17 18 19] - ret.shape (961, 32, 4) - ret.shape (961, 32, 4) - ret.shape (961, 32, 4) - ret.shape (961, 32, 4) @@ -642,7 +618,7 @@ energy = 0.60 sx projection with arrows |___/ A Python library for electronic structure pre/post-processing. - Version 6.1.5 created on Jun 10th, 2021 + Version 6.1.6 created on Jun 10th, 2021 Please cite: Uthpala Herath, Pedram Tavadze, Xu He, Eric Bousquet, Sobhit Singh, Francisco Muñoz and Aldo Romero., @@ -684,10 +660,6 @@ energy = 0.60 sx projection with arrows _____________________________________________________ Useful band indices for spin-0 : [20 21] - ret.shape (961, 32, 4) - ret.shape (961, 32, 4) - ret.shape (961, 32, 4) - ret.shape (961, 32, 4) @@ -732,7 +704,7 @@ energy = -0.90 sx projection with arrows |___/ A Python library for electronic structure pre/post-processing. - Version 6.1.5 created on Jun 10th, 2021 + Version 6.1.6 created on Jun 10th, 2021 Please cite: Uthpala Herath, Pedram Tavadze, Xu He, Eric Bousquet, Sobhit Singh, Francisco Muñoz and Aldo Romero., @@ -774,10 +746,6 @@ energy = -0.90 sx projection with arrows _____________________________________________________ Useful band indices for spin-0 : [16 17 18 19] - ret.shape (961, 32, 4) - ret.shape (961, 32, 4) - ret.shape (961, 32, 4) - ret.shape (961, 32, 4) @@ -785,7 +753,7 @@ energy = -0.90 sx projection with arrows .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 51.294 seconds) + **Total running time of the script:** ( 0 minutes 51.878 seconds) .. _sphx_glr_download_examples_03-fermi2d_plot_rashba_spin_spliting.py: diff --git a/docs/_sources/examples/03-fermi2d/sg_execution_times.rst.txt b/docs/_sources/examples/03-fermi2d/sg_execution_times.rst.txt index 04d1c059..2295e6c6 100644 --- a/docs/_sources/examples/03-fermi2d/sg_execution_times.rst.txt +++ b/docs/_sources/examples/03-fermi2d/sg_execution_times.rst.txt @@ -6,14 +6,14 @@ Computation times ================= -**01:38.552** total execution time for **examples_03-fermi2d** files: +**01:40.326** total execution time for **examples_03-fermi2d** files: +---------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_03-fermi2d_plot_rashba_spin_spliting.py` (``plot_rashba_spin_spliting.py``) | 00:51.294 | 0.0 MB | +| :ref:`sphx_glr_examples_03-fermi2d_plot_rashba_spin_spliting.py` (``plot_rashba_spin_spliting.py``) | 00:51.878 | 0.0 MB | +---------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_03-fermi2d_plot_fermi2d_configurations.py` (``plot_fermi2d_configurations.py``) | 00:20.284 | 0.0 MB | +| :ref:`sphx_glr_examples_03-fermi2d_plot_fermi2d_spin_texture.py` (``plot_fermi2d_spin_texture.py``) | 00:20.464 | 0.0 MB | +---------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_03-fermi2d_plot_fermi2d_spin_texture.py` (``plot_fermi2d_spin_texture.py``) | 00:19.870 | 0.0 MB | +| :ref:`sphx_glr_examples_03-fermi2d_plot_fermi2d_configurations.py` (``plot_fermi2d_configurations.py``) | 00:20.442 | 0.0 MB | +---------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_03-fermi2d_plot_fermi2d.py` (``plot_fermi2d.py``) | 00:07.104 | 0.0 MB | +| :ref:`sphx_glr_examples_03-fermi2d_plot_fermi2d.py` (``plot_fermi2d.py``) | 00:07.541 | 0.0 MB | +---------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/docs/_sources/examples/04-fermi3d/plot_de_hass_van_alphen.rst.txt b/docs/_sources/examples/04-fermi3d/plot_de_hass_van_alphen.rst.txt index 928059cc..0984a1f0 100644 --- a/docs/_sources/examples/04-fermi3d/plot_de_hass_van_alphen.rst.txt +++ b/docs/_sources/examples/04-fermi3d/plot_de_hass_van_alphen.rst.txt @@ -159,7 +159,6 @@ Maximal cross sectional area along the (0,0,1) -------------------------------------------------------- Bands Near Fermi : [5] - ret.shape (3375, 20, 1) Bands being used if bands=None: [0] @@ -217,7 +216,6 @@ Minimal cross sectional area along the (0,0,1) -------------------------------------------------------- Bands Near Fermi : [5] - ret.shape (3375, 20, 1) Bands being used if bands=None: [0] @@ -277,7 +275,6 @@ Extremal cross sectional area along the (0,1,1) -------------------------------------------------------- Bands Near Fermi : [5] - ret.shape (3375, 20, 1) Bands being used if bands=None: [0] @@ -294,7 +291,7 @@ In the above figure we can see the cross section area is :math:`A = 4.3956 Ang^{ .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 14.712 seconds) + **Total running time of the script:** ( 0 minutes 13.452 seconds) .. _sphx_glr_download_examples_04-fermi3d_plot_de_hass_van_alphen.py: diff --git a/docs/_sources/examples/04-fermi3d/plot_fermi3d_configurations.rst.txt b/docs/_sources/examples/04-fermi3d/plot_fermi3d_configurations.rst.txt index 91a5e3ce..26b7e555 100644 --- a/docs/_sources/examples/04-fermi3d/plot_fermi3d_configurations.rst.txt +++ b/docs/_sources/examples/04-fermi3d/plot_fermi3d_configurations.rst.txt @@ -148,6 +148,7 @@ Before diving into plotting, we need to download the example files. Use the foll scalar_bar_labels : {'value': 6, 'description': 'Controls the scalar bar labels'} scalar_bar_italic : {'value': False, 'description': 'Controls the label italic style'} scalar_bar_bold : {'value': False, 'description': 'Controls the label bold style'} + scalar_bar_title : {'value': None, 'description': 'Controls scalar bar title font size'} scalar_bar_title_font_size : {'value': None, 'description': 'Controls scalar bar title font size'} scalar_bar_label_font_size : {'value': None, 'description': 'Controls scalar bar label font size'} scalar_bar_position_x : {'value': 0.4, 'description': 'Controls scalar bar x position'} @@ -215,7 +216,6 @@ Before diving into plotting, we need to download the example files. Use the foll -------------------------------------------------------- Bands Near Fermi : [2, 3, 4, 5] - ret.shape (3375, 8, 1) @@ -223,7 +223,7 @@ Before diving into plotting, we need to download the example files. Use the foll .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 16.685 seconds) + **Total running time of the script:** ( 0 minutes 17.454 seconds) .. _sphx_glr_download_examples_04-fermi3d_plot_fermi3d_configurations.py: diff --git a/docs/_sources/examples/04-fermi3d/plot_fermi3d_cross_section.rst.txt b/docs/_sources/examples/04-fermi3d/plot_fermi3d_cross_section.rst.txt index 5264e571..62b7cc90 100644 --- a/docs/_sources/examples/04-fermi3d/plot_fermi3d_cross_section.rst.txt +++ b/docs/_sources/examples/04-fermi3d/plot_fermi3d_cross_section.rst.txt @@ -162,7 +162,6 @@ Cross section -------------------------------------------------------- Bands Near Fermi : [4, 5, 6, 7, 8, 9] - ret.shape (3375, 20, 4) @@ -232,7 +231,6 @@ Cross section. Save slice -------------------------------------------------------- Bands Near Fermi : [4, 5, 6, 7, 8, 9] - ret.shape (3375, 20, 4) @@ -240,7 +238,7 @@ Cross section. Save slice .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 2 minutes 7.134 seconds) + **Total running time of the script:** ( 2 minutes 14.053 seconds) .. _sphx_glr_download_examples_04-fermi3d_plot_fermi3d_cross_section.py: diff --git a/docs/_sources/examples/04-fermi3d/plot_fermi3d_isoslider.rst.txt b/docs/_sources/examples/04-fermi3d/plot_fermi3d_isoslider.rst.txt index df8a9b13..3f13676a 100644 --- a/docs/_sources/examples/04-fermi3d/plot_fermi3d_isoslider.rst.txt +++ b/docs/_sources/examples/04-fermi3d/plot_fermi3d_isoslider.rst.txt @@ -158,7 +158,7 @@ Plain mode .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 32.204 seconds) + **Total running time of the script:** ( 0 minutes 33.821 seconds) .. _sphx_glr_download_examples_04-fermi3d_plot_fermi3d_isoslider.py: diff --git a/docs/_sources/examples/04-fermi3d/plot_fermi3d_isovalue_gif.rst.txt b/docs/_sources/examples/04-fermi3d/plot_fermi3d_isovalue_gif.rst.txt index 9efaa0a1..e20734e0 100644 --- a/docs/_sources/examples/04-fermi3d/plot_fermi3d_isovalue_gif.rst.txt +++ b/docs/_sources/examples/04-fermi3d/plot_fermi3d_isovalue_gif.rst.txt @@ -159,7 +159,7 @@ Plain mode .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 33.309 seconds) + **Total running time of the script:** ( 0 minutes 34.508 seconds) .. _sphx_glr_download_examples_04-fermi3d_plot_fermi3d_isovalue_gif.py: diff --git a/docs/_sources/examples/04-fermi3d/plot_fermi3d_plain.rst.txt b/docs/_sources/examples/04-fermi3d/plot_fermi3d_plain.rst.txt index 343d2d53..36f7f9d8 100644 --- a/docs/_sources/examples/04-fermi3d/plot_fermi3d_plain.rst.txt +++ b/docs/_sources/examples/04-fermi3d/plot_fermi3d_plain.rst.txt @@ -188,7 +188,6 @@ Parametric mode -------------------------------------------------------- Bands Near Fermi : [2, 3, 4, 5] - ret.shape (3375, 8, 1) @@ -196,7 +195,7 @@ Parametric mode .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 15.921 seconds) + **Total running time of the script:** ( 0 minutes 16.667 seconds) .. _sphx_glr_download_examples_04-fermi3d_plot_fermi3d_plain.py: diff --git a/docs/_sources/examples/04-fermi3d/plot_fermi3d_spin-polarized.rst.txt b/docs/_sources/examples/04-fermi3d/plot_fermi3d_spin-polarized.rst.txt index 1ac285b8..ac4d752b 100644 --- a/docs/_sources/examples/04-fermi3d/plot_fermi3d_spin-polarized.rst.txt +++ b/docs/_sources/examples/04-fermi3d/plot_fermi3d_spin-polarized.rst.txt @@ -217,7 +217,6 @@ Parametric mode -------------------------------------------------------- Bands Near Fermi : [2, 3, 4, 5] - ret.shape (3375, 12, 2) -------------------------------------------------------- There are additional plot options that are defined in a configuration file. @@ -229,7 +228,6 @@ Parametric mode -------------------------------------------------------- Bands Near Fermi : [2, 3, 4, 5] - ret.shape (3375, 12, 2) @@ -237,7 +235,7 @@ Parametric mode .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 29.106 seconds) + **Total running time of the script:** ( 0 minutes 27.690 seconds) .. _sphx_glr_download_examples_04-fermi3d_plot_fermi3d_spin-polarized.py: diff --git a/docs/_sources/examples/04-fermi3d/plot_fermi3d_spin_texture.rst.txt b/docs/_sources/examples/04-fermi3d/plot_fermi3d_spin_texture.rst.txt index 3633faeb..0a725c98 100644 --- a/docs/_sources/examples/04-fermi3d/plot_fermi3d_spin_texture.rst.txt +++ b/docs/_sources/examples/04-fermi3d/plot_fermi3d_spin_texture.rst.txt @@ -141,7 +141,6 @@ Spin Texture mode -------------------------------------------------------- Bands Near Fermi : [4, 5, 6, 7, 8, 9] - ret.shape (3375, 20, 4) @@ -149,7 +148,7 @@ Spin Texture mode .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 1 minutes 13.428 seconds) + **Total running time of the script:** ( 1 minutes 10.996 seconds) .. _sphx_glr_download_examples_04-fermi3d_plot_fermi3d_spin_texture.py: diff --git a/docs/_sources/examples/04-fermi3d/sg_execution_times.rst.txt b/docs/_sources/examples/04-fermi3d/sg_execution_times.rst.txt index 95c63c31..0dd8545a 100644 --- a/docs/_sources/examples/04-fermi3d/sg_execution_times.rst.txt +++ b/docs/_sources/examples/04-fermi3d/sg_execution_times.rst.txt @@ -6,22 +6,22 @@ Computation times ================= -**05:42.500** total execution time for **examples_04-fermi3d** files: +**05:48.641** total execution time for **examples_04-fermi3d** files: +---------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_04-fermi3d_plot_fermi3d_cross_section.py` (``plot_fermi3d_cross_section.py``) | 02:07.134 | 0.0 MB | +| :ref:`sphx_glr_examples_04-fermi3d_plot_fermi3d_cross_section.py` (``plot_fermi3d_cross_section.py``) | 02:14.053 | 0.0 MB | +---------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_04-fermi3d_plot_fermi3d_spin_texture.py` (``plot_fermi3d_spin_texture.py``) | 01:13.428 | 0.0 MB | +| :ref:`sphx_glr_examples_04-fermi3d_plot_fermi3d_spin_texture.py` (``plot_fermi3d_spin_texture.py``) | 01:10.996 | 0.0 MB | +---------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_04-fermi3d_plot_fermi3d_isovalue_gif.py` (``plot_fermi3d_isovalue_gif.py``) | 00:33.309 | 0.0 MB | +| :ref:`sphx_glr_examples_04-fermi3d_plot_fermi3d_isovalue_gif.py` (``plot_fermi3d_isovalue_gif.py``) | 00:34.508 | 0.0 MB | +---------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_04-fermi3d_plot_fermi3d_isoslider.py` (``plot_fermi3d_isoslider.py``) | 00:32.204 | 0.0 MB | +| :ref:`sphx_glr_examples_04-fermi3d_plot_fermi3d_isoslider.py` (``plot_fermi3d_isoslider.py``) | 00:33.821 | 0.0 MB | +---------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_04-fermi3d_plot_fermi3d_spin-polarized.py` (``plot_fermi3d_spin-polarized.py``) | 00:29.106 | 0.0 MB | +| :ref:`sphx_glr_examples_04-fermi3d_plot_fermi3d_spin-polarized.py` (``plot_fermi3d_spin-polarized.py``) | 00:27.690 | 0.0 MB | +---------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_04-fermi3d_plot_fermi3d_configurations.py` (``plot_fermi3d_configurations.py``) | 00:16.685 | 0.0 MB | +| :ref:`sphx_glr_examples_04-fermi3d_plot_fermi3d_configurations.py` (``plot_fermi3d_configurations.py``) | 00:17.454 | 0.0 MB | +---------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_04-fermi3d_plot_fermi3d_plain.py` (``plot_fermi3d_plain.py``) | 00:15.921 | 0.0 MB | +| :ref:`sphx_glr_examples_04-fermi3d_plot_fermi3d_plain.py` (``plot_fermi3d_plain.py``) | 00:16.667 | 0.0 MB | +---------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_04-fermi3d_plot_de_hass_van_alphen.py` (``plot_de_hass_van_alphen.py``) | 00:14.712 | 0.0 MB | +| :ref:`sphx_glr_examples_04-fermi3d_plot_de_hass_van_alphen.py` (``plot_de_hass_van_alphen.py``) | 00:13.452 | 0.0 MB | +---------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/docs/_sources/examples/05-other/plot_2dkmesh_generation.rst.txt b/docs/_sources/examples/05-other/plot_2dkmesh_generation.rst.txt index 7ffeaae1..0274ad3f 100644 --- a/docs/_sources/examples/05-other/plot_2dkmesh_generation.rst.txt +++ b/docs/_sources/examples/05-other/plot_2dkmesh_generation.rst.txt @@ -108,7 +108,7 @@ importing pyprocar and specifying local data_dir |___/ A Python library for electronic structure pre/post-processing. - Version 6.1.5 created on Jun 10th, 2021 + Version 6.1.6 created on Jun 10th, 2021 Please cite: Uthpala Herath, Pedram Tavadze, Xu He, Eric Bousquet, Sobhit Singh, Francisco Muñoz and Aldo Romero., @@ -135,7 +135,7 @@ importing pyprocar and specifying local data_dir .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 0.609 seconds) + **Total running time of the script:** ( 0 minutes 0.466 seconds) .. _sphx_glr_download_examples_05-other_plot_2dkmesh_generation.py: diff --git a/docs/_sources/examples/05-other/plot_ebs.rst.txt b/docs/_sources/examples/05-other/plot_ebs.rst.txt index 41804f7b..83b99c78 100644 --- a/docs/_sources/examples/05-other/plot_ebs.rst.txt +++ b/docs/_sources/examples/05-other/plot_ebs.rst.txt @@ -341,7 +341,7 @@ Effective mass .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 4.915 seconds) + **Total running time of the script:** ( 0 minutes 4.765 seconds) .. _sphx_glr_download_examples_05-other_plot_ebs.py: diff --git a/docs/_sources/examples/05-other/plot_kpath_generation.rst.txt b/docs/_sources/examples/05-other/plot_kpath_generation.rst.txt index 3b5693b5..aaab0ec8 100644 --- a/docs/_sources/examples/05-other/plot_kpath_generation.rst.txt +++ b/docs/_sources/examples/05-other/plot_kpath_generation.rst.txt @@ -151,7 +151,7 @@ importing pyprocar and specifying local data_dir |___/ A Python library for electronic structure pre/post-processing. - Version 6.1.5 created on Jun 10th, 2021 + Version 6.1.6 created on Jun 10th, 2021 Please cite: Uthpala Herath, Pedram Tavadze, Xu He, Eric Bousquet, Sobhit Singh, Francisco Muñoz and Aldo Romero., @@ -178,7 +178,7 @@ importing pyprocar and specifying local data_dir .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 0.709 seconds) + **Total running time of the script:** ( 0 minutes 0.599 seconds) .. _sphx_glr_download_examples_05-other_plot_kpath_generation.py: diff --git a/docs/_sources/examples/05-other/sg_execution_times.rst.txt b/docs/_sources/examples/05-other/sg_execution_times.rst.txt index 9f07fd43..e30e49cc 100644 --- a/docs/_sources/examples/05-other/sg_execution_times.rst.txt +++ b/docs/_sources/examples/05-other/sg_execution_times.rst.txt @@ -6,14 +6,14 @@ Computation times ================= -**00:06.371** total execution time for **examples_05-other** files: +**00:05.968** total execution time for **examples_05-other** files: +-----------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_05-other_plot_ebs.py` (``plot_ebs.py``) | 00:04.915 | 0.0 MB | +| :ref:`sphx_glr_examples_05-other_plot_ebs.py` (``plot_ebs.py``) | 00:04.765 | 0.0 MB | +-----------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_05-other_plot_kpath_generation.py` (``plot_kpath_generation.py``) | 00:00.709 | 0.0 MB | +| :ref:`sphx_glr_examples_05-other_plot_kpath_generation.py` (``plot_kpath_generation.py``) | 00:00.599 | 0.0 MB | +-----------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_05-other_plot_2dkmesh_generation.py` (``plot_2dkmesh_generation.py``) | 00:00.609 | 0.0 MB | +| :ref:`sphx_glr_examples_05-other_plot_2dkmesh_generation.py` (``plot_2dkmesh_generation.py``) | 00:00.466 | 0.0 MB | +-----------------------------------------------------------------------------------------------+-----------+--------+ | :ref:`sphx_glr_examples_05-other_plot_bandgap.py` (``plot_bandgap.py``) | 00:00.138 | 0.0 MB | +-----------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/docs/_sources/examples/06-PyPoscar/plot_clusters_pyposcar.rst.txt b/docs/_sources/examples/06-PyPoscar/plot_clusters_pyposcar.rst.txt index eb4dafb9..c1e57209 100644 --- a/docs/_sources/examples/06-PyPoscar/plot_clusters_pyposcar.rst.txt +++ b/docs/_sources/examples/06-PyPoscar/plot_clusters_pyposcar.rst.txt @@ -176,7 +176,7 @@ Visualizing the Clusters .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 6.831 seconds) + **Total running time of the script:** ( 0 minutes 6.360 seconds) .. _sphx_glr_download_examples_06-PyPoscar_plot_clusters_pyposcar.py: diff --git a/docs/_sources/examples/06-PyPoscar/plot_finding_defects_pyposcar.rst.txt b/docs/_sources/examples/06-PyPoscar/plot_finding_defects_pyposcar.rst.txt index 70fbac6e..808179e2 100644 --- a/docs/_sources/examples/06-PyPoscar/plot_finding_defects_pyposcar.rst.txt +++ b/docs/_sources/examples/06-PyPoscar/plot_finding_defects_pyposcar.rst.txt @@ -177,7 +177,7 @@ Finding defects .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 8.355 seconds) + **Total running time of the script:** ( 0 minutes 7.200 seconds) .. _sphx_glr_download_examples_06-PyPoscar_plot_finding_defects_pyposcar.py: diff --git a/docs/_sources/examples/06-PyPoscar/plot_rdf_cutoff_pyposcar.rst.txt b/docs/_sources/examples/06-PyPoscar/plot_rdf_cutoff_pyposcar.rst.txt index 1c87ee26..56000718 100644 --- a/docs/_sources/examples/06-PyPoscar/plot_rdf_cutoff_pyposcar.rst.txt +++ b/docs/_sources/examples/06-PyPoscar/plot_rdf_cutoff_pyposcar.rst.txt @@ -237,7 +237,7 @@ Visualizing the Results .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 0.766 seconds) + **Total running time of the script:** ( 0 minutes 0.719 seconds) .. _sphx_glr_download_examples_06-PyPoscar_plot_rdf_cutoff_pyposcar.py: diff --git a/docs/_sources/examples/06-PyPoscar/plot_subsitution_pyposcar.rst.txt b/docs/_sources/examples/06-PyPoscar/plot_subsitution_pyposcar.rst.txt index d91b93e4..3cc78cac 100644 --- a/docs/_sources/examples/06-PyPoscar/plot_subsitution_pyposcar.rst.txt +++ b/docs/_sources/examples/06-PyPoscar/plot_subsitution_pyposcar.rst.txt @@ -262,7 +262,7 @@ Creating GIFs for Visualization .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 7.343 seconds) + **Total running time of the script:** ( 0 minutes 6.106 seconds) .. _sphx_glr_download_examples_06-PyPoscar_plot_subsitution_pyposcar.py: diff --git a/docs/_sources/examples/06-PyPoscar/plot_utils_pyposcar.rst.txt b/docs/_sources/examples/06-PyPoscar/plot_utils_pyposcar.rst.txt index 50b34edf..d250eb51 100644 --- a/docs/_sources/examples/06-PyPoscar/plot_utils_pyposcar.rst.txt +++ b/docs/_sources/examples/06-PyPoscar/plot_utils_pyposcar.rst.txt @@ -343,7 +343,7 @@ Introducing Defects .. rst-class:: sphx-glr-timing - **Total running time of the script:** ( 0 minutes 21.975 seconds) + **Total running time of the script:** ( 0 minutes 18.327 seconds) .. _sphx_glr_download_examples_06-PyPoscar_plot_utils_pyposcar.py: diff --git a/docs/_sources/examples/06-PyPoscar/sg_execution_times.rst.txt b/docs/_sources/examples/06-PyPoscar/sg_execution_times.rst.txt index 85f925ce..8f2d0f20 100644 --- a/docs/_sources/examples/06-PyPoscar/sg_execution_times.rst.txt +++ b/docs/_sources/examples/06-PyPoscar/sg_execution_times.rst.txt @@ -6,16 +6,16 @@ Computation times ================= -**00:45.270** total execution time for **examples_06-PyPoscar** files: +**00:38.711** total execution time for **examples_06-PyPoscar** files: +--------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_06-PyPoscar_plot_utils_pyposcar.py` (``plot_utils_pyposcar.py``) | 00:21.975 | 0.0 MB | +| :ref:`sphx_glr_examples_06-PyPoscar_plot_utils_pyposcar.py` (``plot_utils_pyposcar.py``) | 00:18.327 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_06-PyPoscar_plot_finding_defects_pyposcar.py` (``plot_finding_defects_pyposcar.py``) | 00:08.355 | 0.0 MB | +| :ref:`sphx_glr_examples_06-PyPoscar_plot_finding_defects_pyposcar.py` (``plot_finding_defects_pyposcar.py``) | 00:07.200 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_06-PyPoscar_plot_subsitution_pyposcar.py` (``plot_subsitution_pyposcar.py``) | 00:07.343 | 0.0 MB | +| :ref:`sphx_glr_examples_06-PyPoscar_plot_clusters_pyposcar.py` (``plot_clusters_pyposcar.py``) | 00:06.360 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_06-PyPoscar_plot_clusters_pyposcar.py` (``plot_clusters_pyposcar.py``) | 00:06.831 | 0.0 MB | +| :ref:`sphx_glr_examples_06-PyPoscar_plot_subsitution_pyposcar.py` (``plot_subsitution_pyposcar.py``) | 00:06.106 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_06-PyPoscar_plot_rdf_cutoff_pyposcar.py` (``plot_rdf_cutoff_pyposcar.py``) | 00:00.766 | 0.0 MB | +| :ref:`sphx_glr_examples_06-PyPoscar_plot_rdf_cutoff_pyposcar.py` (``plot_rdf_cutoff_pyposcar.py``) | 00:00.719 | 0.0 MB | +--------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/docs/_sources/examples/index.rst.txt b/docs/_sources/examples/index.rst.txt index 1e60b512..544f4138 100644 --- a/docs/_sources/examples/index.rst.txt +++ b/docs/_sources/examples/index.rst.txt @@ -184,6 +184,23 @@ These examples demonstrate the band structure plotting capabilities.
+.. raw:: html + +
+ +.. only:: html + + .. image:: /examples/00-band_structure/images/thumb/sphx_glr_plot_2d_bands_thumb.png + :alt: + + :ref:`sphx_glr_examples_00-band_structure_plot_2d_bands.py` + +.. raw:: html + +
Plotting 2D band structure
+
+ + .. raw:: html
diff --git a/docs/_sources/getting-started/index.rst.txt b/docs/_sources/getting-started/index.rst.txt index a8566cda..bed453cd 100644 --- a/docs/_sources/getting-started/index.rst.txt +++ b/docs/_sources/getting-started/index.rst.txt @@ -53,9 +53,9 @@ the `Anaconda Distribution `_. Paper ------------------------------- -.. grid:: 1 +.. grid:: 2 - .. grid-item-card:: Authors & Citation + .. grid-item-card:: 1st Publication :link: authors_ref :link-type: ref :class-title: pyprocar-card-title @@ -66,6 +66,18 @@ Paper .. image:: ../images/1st_publication.png :target: https://www.sciencedirect.com/science/article/abs/pii/S0010465519303935?via%3Dihub + .. grid-item-card:: 2nd Publication + :link: authors_ref + :link-type: ref + :class-title: pyprocar-card-title + + Using PyProcar in your research? Please consider citing or acknowledging + us. We have a Elsevier Publication! + + .. image:: ../images/2nd_publication.png + :target: https://www.sciencedirect.com/science/article/abs/pii/S0010465523004083 + + @@ -77,7 +89,7 @@ If you want to support the PyProcar please see the `Contributing page `_! +There are two papers about PyProcar: `1st Paper `_ and `2nd Paper `_. If you are using PyProcar in your scientific research, please help our scientific visibility by citing our work! Head over to :ref:`citation_ref` to learn more diff --git a/docs/_static/documentation_options.js b/docs/_static/documentation_options.js index 9fe1a5fd..31525ada 100644 --- a/docs/_static/documentation_options.js +++ b/docs/_static/documentation_options.js @@ -1,6 +1,6 @@ var DOCUMENTATION_OPTIONS = { URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), - VERSION: '6.1.5', + VERSION: '6.1.7', LANGUAGE: 'en', COLLAPSE_INDEX: false, BUILDER: 'html', diff --git a/docs/api/cfg/band_structure.html b/docs/api/cfg/band_structure.html index c8345790..bd553b12 100644 --- a/docs/api/cfg/band_structure.html +++ b/docs/api/cfg/band_structure.html @@ -8,7 +8,7 @@ - band structure plotting Options — PyProcar 6.1.5 documentation + band structure plotting Options — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

PyProcar 6.1.5 documentation

+

PyProcar 6.1.7 documentation

@@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • @@ -948,6 +950,50 @@

    color# +
    +

    colorbar_title#

    +
    +
    description:
    +

    Title of the colorbar.

    +
    +
    value:
    +

    Atomic Orbital Projections

    +
    +
    +
    +
    +

    colorbar_title_size#

    +
    +
    description:
    +

    Font size of the title of the colorbar.

    +
    +
    value:
    +

    15

    +
    +
    +
    +
    +

    colorbar_title_padding#

    +
    +
    description:
    +

    Padding of the title of the colorbar.

    +
    +
    value:
    +

    20

    +
    +
    +
    +
    +

    colorbar_tick_labelsize#

    +
    +
    description:
    +

    Size of the title of the colorbar ticks

    +
    +
    value:
    +

    10

    +
    +
    +

    cmap#

    @@ -1274,6 +1320,10 @@

    dpi#

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • @@ -1150,7 +1152,7 @@

    add_axes#

    value:
    -

    [None, None]

    +

    [-2, 2]

    description:

    Controls the limits of the energy axis

    @@ -1223,6 +1225,17 @@

    add_scalar_bar +

    scalar_bar_title#

    +
    +
    value:
    +

    None

    +
    +
    description:
    +

    Controls scalar bar title font size

    +
    +
    +

    scalar_bar_labels#

    @@ -1373,7 +1386,7 @@

    clip_brillouin_zone

    True

    description:
    -

    Control to show a grid

    +

    Control clip the brillouin zone

    @@ -1651,6 +1664,7 @@

    cross_section_slice_show_areaaxes_label_color
  • axes_line_width
  • add_scalar_bar
  • +
  • scalar_bar_title
  • scalar_bar_labels
  • scalar_bar_italic
  • scalar_bar_bold
  • diff --git a/docs/api/cfg/dos.html b/docs/api/cfg/dos.html index 3ba6408f..fa7930cd 100644 --- a/docs/api/cfg/dos.html +++ b/docs/api/cfg/dos.html @@ -8,7 +8,7 @@ - dos plotting Options — PyProcar 6.1.5 documentation + dos plotting Options — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • @@ -948,6 +950,50 @@

    colors +
    +

    colorbar_title#

    +
    +
    description:
    +

    Title of the colorbar.

    +
    +
    value:
    +

    Atomic Orbital Projections

    +
    +
    +
    +
    +

    colorbar_title_size#

    +
    +
    description:
    +

    Font size of the title of the colorbar.

    +
    +
    value:
    +

    15

    +
    +
    +
    +
    +

    colorbar_title_padding#

    +
    +
    description:
    +

    Padding of the title of the colorbar.

    +
    +
    value:
    +

    20

    +
    +
    +
    +
    +

    colorbar_tick_labelsize#

    +
    +
    description:
    +

    Size of the title of the colorbar ticks

    +
    +
    value:
    +

    10

    +
    +
    +

    fermi_color#

    @@ -1362,6 +1408,10 @@

    dpi#

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/cfg/fermi_surface_3d.html b/docs/api/cfg/fermi_surface_3d.html index 2a8e303f..611088a8 100644 --- a/docs/api/cfg/fermi_surface_3d.html +++ b/docs/api/cfg/fermi_surface_3d.html @@ -8,7 +8,7 @@ - fermi surface 3d plotting Options — PyProcar 6.1.5 documentation + fermi surface 3d plotting Options — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • @@ -1245,6 +1247,17 @@

    scalar_bar_bold +

    scalar_bar_title#

    +
    +
    value:
    +

    None

    +
    +
    description:
    +

    Controls scalar bar title font size

    +
    +
    +

    scalar_bar_title_font_size#

    @@ -1521,6 +1534,7 @@

    arrow_sizescalar_bar_labels
  • scalar_bar_italic
  • scalar_bar_bold
  • +
  • scalar_bar_title
  • scalar_bar_title_font_size
  • scalar_bar_label_font_size
  • scalar_bar_position_x
  • diff --git a/docs/api/cfg/index.html b/docs/api/cfg/index.html index d9868d26..4a1465eb 100644 --- a/docs/api/cfg/index.html +++ b/docs/api/cfg/index.html @@ -8,7 +8,7 @@ - Configuration Files — PyProcar 6.1.5 documentation + Configuration Files — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/cfg/unfold.html b/docs/api/cfg/unfold.html index 007fde55..3c18c00e 100644 --- a/docs/api/cfg/unfold.html +++ b/docs/api/cfg/unfold.html @@ -8,7 +8,7 @@ - unfold plotting Options — PyProcar 6.1.5 documentation + unfold plotting Options — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.BrillouinZone.__init__.html b/docs/api/core/_autosummary/pyprocar.core.BrillouinZone.__init__.html index 465c1154..f398a62e 100644 --- a/docs/api/core/_autosummary/pyprocar.core.BrillouinZone.__init__.html +++ b/docs/api/core/_autosummary/pyprocar.core.BrillouinZone.__init__.html @@ -8,7 +8,7 @@ - __init__ — PyProcar 6.1.5 documentation + __init__ — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.BrillouinZone.html b/docs/api/core/_autosummary/pyprocar.core.BrillouinZone.html index 018ba83b..774e7cc1 100644 --- a/docs/api/core/_autosummary/pyprocar.core.BrillouinZone.html +++ b/docs/api/core/_autosummary/pyprocar.core.BrillouinZone.html @@ -8,7 +8,7 @@ - pyprocar.core.BrillouinZone — PyProcar 6.1.5 documentation + pyprocar.core.BrillouinZone — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.BrillouinZone.wigner_seitz.html b/docs/api/core/_autosummary/pyprocar.core.BrillouinZone.wigner_seitz.html index 076849e9..f74b778d 100644 --- a/docs/api/core/_autosummary/pyprocar.core.BrillouinZone.wigner_seitz.html +++ b/docs/api/core/_autosummary/pyprocar.core.BrillouinZone.wigner_seitz.html @@ -8,7 +8,7 @@ - wigner_seitz — PyProcar 6.1.5 documentation + wigner_seitz — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.__init__.html b/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.__init__.html index f266ae3c..2413148b 100644 --- a/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.__init__.html +++ b/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.__init__.html @@ -8,7 +8,7 @@ - __init__ — PyProcar 6.1.5 documentation + __init__ — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.coupled_to_uncoupled_basis.html b/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.coupled_to_uncoupled_basis.html index 18ae37bb..f4026d87 100644 --- a/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.coupled_to_uncoupled_basis.html +++ b/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.coupled_to_uncoupled_basis.html @@ -8,7 +8,7 @@ - coupled_to_uncoupled_basis — PyProcar 6.1.5 documentation + coupled_to_uncoupled_basis — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.dos_sum.html b/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.dos_sum.html index 6bfcac49..5df3b1fe 100644 --- a/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.dos_sum.html +++ b/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.dos_sum.html @@ -8,7 +8,7 @@ - dos_sum — PyProcar 6.1.5 documentation + dos_sum — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.get_current_basis.html b/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.get_current_basis.html index 6c7438bc..c98bb53f 100644 --- a/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.get_current_basis.html +++ b/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.get_current_basis.html @@ -8,7 +8,7 @@ - get_current_basis — PyProcar 6.1.5 documentation + get_current_basis — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.html b/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.html index deaf7701..e246b1e6 100644 --- a/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.html +++ b/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.html @@ -8,7 +8,7 @@ - pyprocar.core.DensityOfStates — PyProcar 6.1.5 documentation + pyprocar.core.DensityOfStates — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.is_non_collinear.html b/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.is_non_collinear.html index 17c9e93d..0736bcde 100644 --- a/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.is_non_collinear.html +++ b/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.is_non_collinear.html @@ -8,7 +8,7 @@ - is_non_collinear — PyProcar 6.1.5 documentation + is_non_collinear — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.n_dos.html b/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.n_dos.html index 6e9414a5..9bd30c93 100644 --- a/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.n_dos.html +++ b/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.n_dos.html @@ -8,7 +8,7 @@ - n_dos — PyProcar 6.1.5 documentation + n_dos — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.n_energies.html b/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.n_energies.html index 02109803..12588db6 100644 --- a/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.n_energies.html +++ b/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.n_energies.html @@ -8,7 +8,7 @@ - n_energies — PyProcar 6.1.5 documentation + n_energies — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.n_spins.html b/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.n_spins.html index a2f23f09..cb6fe977 100644 --- a/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.n_spins.html +++ b/docs/api/core/_autosummary/pyprocar.core.DensityOfStates.n_spins.html @@ -8,7 +8,7 @@ - n_spins — PyProcar 6.1.5 documentation + n_spins — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.__init__.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.__init__.html index 6143742a..78c35d7d 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.__init__.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.__init__.html @@ -8,7 +8,7 @@ - __init__ — PyProcar 6.1.5 documentation + __init__ — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.bands_gradient.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.bands_gradient.html index 7d9fb633..a4390d8b 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.bands_gradient.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.bands_gradient.html @@ -8,7 +8,7 @@ - bands_gradient — PyProcar 6.1.5 documentation + bands_gradient — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.bands_gradient_mesh.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.bands_gradient_mesh.html index 18a24a70..f76e0282 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.bands_gradient_mesh.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.bands_gradient_mesh.html @@ -8,7 +8,7 @@ - bands_gradient_mesh — PyProcar 6.1.5 documentation + bands_gradient_mesh — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.bands_hessian.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.bands_hessian.html index dc4a7863..318d783d 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.bands_hessian.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.bands_hessian.html @@ -8,7 +8,7 @@ - bands_hessian — PyProcar 6.1.5 documentation + bands_hessian — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.bands_hessian_mesh.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.bands_hessian_mesh.html index 8cc1357c..7f7c09c9 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.bands_hessian_mesh.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.bands_hessian_mesh.html @@ -8,7 +8,7 @@ - bands_hessian_mesh — PyProcar 6.1.5 documentation + bands_hessian_mesh — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.bands_mesh.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.bands_mesh.html index 905de5c7..e0eac952 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.bands_mesh.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.bands_mesh.html @@ -8,7 +8,7 @@ - bands_mesh — PyProcar 6.1.5 documentation + bands_mesh — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.calculate_scalar_gradient.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.calculate_scalar_gradient.html index b49e02a0..bb7f5c85 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.calculate_scalar_gradient.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.calculate_scalar_gradient.html @@ -8,7 +8,7 @@ - calculate_scalar_gradient — PyProcar 6.1.5 documentation + calculate_scalar_gradient — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.calculate_scalar_integral.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.calculate_scalar_integral.html index b53a026f..73930521 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.calculate_scalar_integral.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.calculate_scalar_integral.html @@ -8,7 +8,7 @@ - calculate_scalar_integral — PyProcar 6.1.5 documentation + calculate_scalar_integral — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.create_nd_mesh.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.create_nd_mesh.html index ea92f16e..2d615bfc 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.create_nd_mesh.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.create_nd_mesh.html @@ -8,7 +8,7 @@ - create_nd_mesh — PyProcar 6.1.5 documentation + create_nd_mesh — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.create_scaler_mesh.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.create_scaler_mesh.html index 93e6d077..0200c73c 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.create_scaler_mesh.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.create_scaler_mesh.html @@ -8,7 +8,7 @@ - create_scaler_mesh — PyProcar 6.1.5 documentation + create_scaler_mesh — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.create_vector_mesh.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.create_vector_mesh.html index 879e9e18..cfd5e392 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.create_vector_mesh.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.create_vector_mesh.html @@ -8,7 +8,7 @@ - create_vector_mesh — PyProcar 6.1.5 documentation + create_vector_mesh — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.ebs_ipr.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.ebs_ipr.html index 6ba8f70e..f717f666 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.ebs_ipr.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.ebs_ipr.html @@ -8,7 +8,7 @@ - ebs_ipr — PyProcar 6.1.5 documentation + ebs_ipr — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.ebs_ipr_atom.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.ebs_ipr_atom.html index 8d2875ec..eeebc680 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.ebs_ipr_atom.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.ebs_ipr_atom.html @@ -8,7 +8,7 @@ - ebs_ipr_atom — PyProcar 6.1.5 documentation + ebs_ipr_atom — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.ebs_sum.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.ebs_sum.html index 4246476d..23d68742 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.ebs_sum.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.ebs_sum.html @@ -8,7 +8,7 @@ - ebs_sum — PyProcar 6.1.5 documentation + ebs_sum — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -49,7 +49,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • @@ -977,11 +979,11 @@

    ebs_sum

    next

    -

    ibz2fbz

    +

    fix_collinear_spin

    diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.fermi_speed.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.fermi_speed.html index d27df14e..ef8e7308 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.fermi_speed.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.fermi_speed.html @@ -8,7 +8,7 @@ - fermi_speed — PyProcar 6.1.5 documentation + fermi_speed — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.fermi_speed_mesh.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.fermi_speed_mesh.html index 17340b9e..36d7e80b 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.fermi_speed_mesh.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.fermi_speed_mesh.html @@ -8,7 +8,7 @@ - fermi_speed_mesh — PyProcar 6.1.5 documentation + fermi_speed_mesh — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.fermi_velocity.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.fermi_velocity.html index 55ff650e..64e33b9a 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.fermi_velocity.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.fermi_velocity.html @@ -8,7 +8,7 @@ - fermi_velocity — PyProcar 6.1.5 documentation + fermi_velocity — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.fermi_velocity_mesh.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.fermi_velocity_mesh.html index 0d18a88e..cba70cbb 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.fermi_velocity_mesh.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.fermi_velocity_mesh.html @@ -8,7 +8,7 @@ - fermi_velocity_mesh — PyProcar 6.1.5 documentation + fermi_velocity_mesh — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.fix_collinear_spin.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.fix_collinear_spin.html new file mode 100644 index 00000000..b93213c4 --- /dev/null +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.fix_collinear_spin.html @@ -0,0 +1,1066 @@ + + + + + + + + + + + fix_collinear_spin — PyProcar 6.1.7 documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + + + +
    +
    + +
    + + + + + + + + + + + + + +
    + +
    + + +
    +
    + +
    +
    + +
    + +
    + + + + + + +
    + +
    + + +
    +
    + + + + + +
    + +
    +

    fix_collinear_spin#

    +
    +
    +ElectronicBandStructure.fix_collinear_spin()[source]#
    +

    Converts data from two spin channels to a single channel, adjusting the spin down values to negatives. This is typically used for plotting the Density of States (DOS).

    +
    +
    Parameters:
    +

    function. (No parameters are required for this) –

    +
    +
    Returns:
    +

    Returns True if the function changed the data, False otherwise.

    +
    +
    Return type:
    +

    bool

    +
    +
    +
    + +
    + + +
    + + + + + +
    + + + +
    + + +
    +
    + +
    + +
    +
    +
    + + + + + + + + \ No newline at end of file diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.harmonic_average_effective_mass.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.harmonic_average_effective_mass.html index b629589a..dfacc6da 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.harmonic_average_effective_mass.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.harmonic_average_effective_mass.html @@ -8,7 +8,7 @@ - harmonic_average_effective_mass — PyProcar 6.1.5 documentation + harmonic_average_effective_mass — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.harmonic_average_effective_mass_mesh.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.harmonic_average_effective_mass_mesh.html index b289fc0b..a107c648 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.harmonic_average_effective_mass_mesh.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.harmonic_average_effective_mass_mesh.html @@ -8,7 +8,7 @@ - harmonic_average_effective_mass_mesh — PyProcar 6.1.5 documentation + harmonic_average_effective_mass_mesh — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.html index 72de8307..c3a23356 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.html @@ -8,7 +8,7 @@ - pyprocar.core.ElectronicBandStructure — PyProcar 6.1.5 documentation + pyprocar.core.ElectronicBandStructure — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • @@ -945,7 +947,7 @@

    pyprocar.core.ElectronicBandStructureKPath, optional) – The kpath for band structure claculation, defaults to None

  • weights (np.ndarray, optional) – The weights of the kpoints. Will have the shape (n_kpoints, 1), defaults to None

  • -
  • labels (List, optional) – A list of orbital names, defaults to None

  • +
  • labels (List, optional) –

  • reciprocal_lattice (np.ndarray, optional) – The reciprocal lattice vector matrix. Will have the shape (3, 3), defaults to None

  • shifted_to_efermi (bool, optional) – Boolean to determine if the fermi energy is shifted, defaults to False

  • @@ -981,25 +983,28 @@

    pyprocar.core.ElectronicBandStructure

    ElectronicBandStructure.ebs_sum([atoms, ...])

    _summary_

    -

    ElectronicBandStructure.ibz2fbz(rotations)

    +

    ElectronicBandStructure.fix_collinear_spin()

    +

    Converts data from two spin channels to a single channel, adjusting the spin down values to negatives.

    + +

    ElectronicBandStructure.ibz2fbz(rotations)

    Applys symmetry operations to the kpoints, bands, and projections

    -

    ElectronicBandStructure.interpolate_mesh_grid(...)

    +

    ElectronicBandStructure.interpolate_mesh_grid(...)

    This function will interpolate an Nd, 3d mesh grid [...,nx,ny,nz]

    -

    ElectronicBandStructure.mesh_to_array(mesh)

    +

    ElectronicBandStructure.mesh_to_array(mesh)

    Converts a mesh to a list that corresponds to ebs.kpoints

    -

    ElectronicBandStructure.plot_kpoints([...])

    +

    ElectronicBandStructure.plot_kpoints([...])

    This needs to be moved to core.KPath and updated new implementation of pyvista PolyData

    -

    ElectronicBandStructure.ravel_array(mesh_grid)

    +

    ElectronicBandStructure.ravel_array(mesh_grid)

    -

    ElectronicBandStructure.unfold([...])

    +

    ElectronicBandStructure.unfold([...])

    The method helps unfold the bands.

    -

    ElectronicBandStructure.update_weights(weights)

    +

    ElectronicBandStructure.update_weights(weights)

    diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.ibz2fbz.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.ibz2fbz.html index d5eea157..09afb9c4 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.ibz2fbz.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.ibz2fbz.html @@ -8,7 +8,7 @@ - ibz2fbz — PyProcar 6.1.5 documentation + ibz2fbz — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -50,7 +50,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • @@ -956,12 +958,12 @@

    ibz2fbz

    previous

    -

    ebs_sum

    +

    fix_collinear_spin

    - index_mesh — PyProcar 6.1.5 documentation + index_mesh — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.interpolate_mesh_grid.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.interpolate_mesh_grid.html index 9ffe058a..8b4e9b8d 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.interpolate_mesh_grid.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.interpolate_mesh_grid.html @@ -8,7 +8,7 @@ - interpolate_mesh_grid — PyProcar 6.1.5 documentation + interpolate_mesh_grid — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.is_non_collinear.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.is_non_collinear.html index 1c6bc5e3..cd43b44a 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.is_non_collinear.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.is_non_collinear.html @@ -8,7 +8,7 @@ - is_non_collinear — PyProcar 6.1.5 documentation + is_non_collinear — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.kpoints_cartesian.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.kpoints_cartesian.html index 1811b940..02e23748 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.kpoints_cartesian.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.kpoints_cartesian.html @@ -8,7 +8,7 @@ - kpoints_cartesian — PyProcar 6.1.5 documentation + kpoints_cartesian — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.kpoints_cartesian_mesh.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.kpoints_cartesian_mesh.html index a06979ef..5475a6fe 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.kpoints_cartesian_mesh.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.kpoints_cartesian_mesh.html @@ -8,7 +8,7 @@ - kpoints_cartesian_mesh — PyProcar 6.1.5 documentation + kpoints_cartesian_mesh — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.kpoints_mesh.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.kpoints_mesh.html index ee65ee58..7374c5db 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.kpoints_mesh.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.kpoints_mesh.html @@ -8,7 +8,7 @@ - kpoints_mesh — PyProcar 6.1.5 documentation + kpoints_mesh — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.kpoints_reduced.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.kpoints_reduced.html index e26fe7da..00c89bf6 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.kpoints_reduced.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.kpoints_reduced.html @@ -8,7 +8,7 @@ - kpoints_reduced — PyProcar 6.1.5 documentation + kpoints_reduced — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.mesh_to_array.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.mesh_to_array.html index 83c43511..7547e6b5 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.mesh_to_array.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.mesh_to_array.html @@ -8,7 +8,7 @@ - mesh_to_array — PyProcar 6.1.5 documentation + mesh_to_array — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.n_kx.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.n_kx.html index 16bcf378..34262249 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.n_kx.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.n_kx.html @@ -8,7 +8,7 @@ - n_kx — PyProcar 6.1.5 documentation + n_kx — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.n_ky.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.n_ky.html index 7d1aa435..d439f853 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.n_ky.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.n_ky.html @@ -8,7 +8,7 @@ - n_ky — PyProcar 6.1.5 documentation + n_ky — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.n_kz.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.n_kz.html index 5e28a028..fe29664d 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.n_kz.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.n_kz.html @@ -8,7 +8,7 @@ - n_kz — PyProcar 6.1.5 documentation + n_kz — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.natoms.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.natoms.html index 522bfb67..ff55cea6 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.natoms.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.natoms.html @@ -8,7 +8,7 @@ - natoms — PyProcar 6.1.5 documentation + natoms — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.nbands.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.nbands.html index e7fdf528..b48be397 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.nbands.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.nbands.html @@ -8,7 +8,7 @@ - nbands — PyProcar 6.1.5 documentation + nbands — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.nkpoints.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.nkpoints.html index 97d9d2af..b67c86aa 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.nkpoints.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.nkpoints.html @@ -8,7 +8,7 @@ - nkpoints — PyProcar 6.1.5 documentation + nkpoints — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.norbitals.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.norbitals.html index ddfcb76e..5ecc1784 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.norbitals.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.norbitals.html @@ -8,7 +8,7 @@ - norbitals — PyProcar 6.1.5 documentation + norbitals — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.nprincipals.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.nprincipals.html index db1fc828..7e6c4ab8 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.nprincipals.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.nprincipals.html @@ -8,7 +8,7 @@ - nprincipals — PyProcar 6.1.5 documentation + nprincipals — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.nspins.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.nspins.html index 91a73a59..99a2fd13 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.nspins.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.nspins.html @@ -8,7 +8,7 @@ - nspins — PyProcar 6.1.5 documentation + nspins — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.plot_kpoints.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.plot_kpoints.html index 4d6e311c..60d04077 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.plot_kpoints.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.plot_kpoints.html @@ -8,7 +8,7 @@ - plot_kpoints — PyProcar 6.1.5 documentation + plot_kpoints — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.projected_mesh.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.projected_mesh.html index 1444dd14..3a0d389e 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.projected_mesh.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.projected_mesh.html @@ -8,7 +8,7 @@ - projected_mesh — PyProcar 6.1.5 documentation + projected_mesh — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.projected_phase_mesh.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.projected_phase_mesh.html index 8f3bbf29..a50fad59 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.projected_phase_mesh.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.projected_phase_mesh.html @@ -8,7 +8,7 @@ - projected_phase_mesh — PyProcar 6.1.5 documentation + projected_phase_mesh — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.ravel_array.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.ravel_array.html index e7963cfc..beb80e85 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.ravel_array.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.ravel_array.html @@ -8,7 +8,7 @@ - ravel_array — PyProcar 6.1.5 documentation + ravel_array — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.unfold.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.unfold.html index 5b866055..70ae0819 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.unfold.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.unfold.html @@ -8,7 +8,7 @@ - unfold — PyProcar 6.1.5 documentation + unfold — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.update_weights.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.update_weights.html index 72e816d4..c409b302 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.update_weights.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.update_weights.html @@ -8,7 +8,7 @@ - update_weights — PyProcar 6.1.5 documentation + update_weights — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.weights_mesh.html b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.weights_mesh.html index f82527da..bf8ca74f 100644 --- a/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.weights_mesh.html +++ b/docs/api/core/_autosummary/pyprocar.core.ElectronicBandStructure.weights_mesh.html @@ -8,7 +8,7 @@ - weights_mesh — PyProcar 6.1.5 documentation + weights_mesh — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.FermiSurface.__init__.html b/docs/api/core/_autosummary/pyprocar.core.FermiSurface.__init__.html index 67c98c26..0ec9b102 100644 --- a/docs/api/core/_autosummary/pyprocar.core.FermiSurface.__init__.html +++ b/docs/api/core/_autosummary/pyprocar.core.FermiSurface.__init__.html @@ -8,7 +8,7 @@ - __init__ — PyProcar 6.1.5 documentation + __init__ — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.FermiSurface.add_axes_labels.html b/docs/api/core/_autosummary/pyprocar.core.FermiSurface.add_axes_labels.html index 57f92c4e..2cfb31ee 100644 --- a/docs/api/core/_autosummary/pyprocar.core.FermiSurface.add_axes_labels.html +++ b/docs/api/core/_autosummary/pyprocar.core.FermiSurface.add_axes_labels.html @@ -8,7 +8,7 @@ - add_axes_labels — PyProcar 6.1.5 documentation + add_axes_labels — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.FermiSurface.add_legend.html b/docs/api/core/_autosummary/pyprocar.core.FermiSurface.add_legend.html index d7957f82..3eb2fda7 100644 --- a/docs/api/core/_autosummary/pyprocar.core.FermiSurface.add_legend.html +++ b/docs/api/core/_autosummary/pyprocar.core.FermiSurface.add_legend.html @@ -8,7 +8,7 @@ - add_legend — PyProcar 6.1.5 documentation + add_legend — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.FermiSurface.find_energy.html b/docs/api/core/_autosummary/pyprocar.core.FermiSurface.find_energy.html index 0d40ce6d..3db40c1f 100644 --- a/docs/api/core/_autosummary/pyprocar.core.FermiSurface.find_energy.html +++ b/docs/api/core/_autosummary/pyprocar.core.FermiSurface.find_energy.html @@ -8,7 +8,7 @@ - find_energy — PyProcar 6.1.5 documentation + find_energy — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.FermiSurface.html b/docs/api/core/_autosummary/pyprocar.core.FermiSurface.html index aa7a7bb0..f569f003 100644 --- a/docs/api/core/_autosummary/pyprocar.core.FermiSurface.html +++ b/docs/api/core/_autosummary/pyprocar.core.FermiSurface.html @@ -8,7 +8,7 @@ - pyprocar.core.FermiSurface — PyProcar 6.1.5 documentation + pyprocar.core.FermiSurface — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.FermiSurface.plot.html b/docs/api/core/_autosummary/pyprocar.core.FermiSurface.plot.html index bfb4429d..5854cd90 100644 --- a/docs/api/core/_autosummary/pyprocar.core.FermiSurface.plot.html +++ b/docs/api/core/_autosummary/pyprocar.core.FermiSurface.plot.html @@ -8,7 +8,7 @@ - plot — PyProcar 6.1.5 documentation + plot — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.FermiSurface.savefig.html b/docs/api/core/_autosummary/pyprocar.core.FermiSurface.savefig.html index abe05c49..3b20a0dc 100644 --- a/docs/api/core/_autosummary/pyprocar.core.FermiSurface.savefig.html +++ b/docs/api/core/_autosummary/pyprocar.core.FermiSurface.savefig.html @@ -8,7 +8,7 @@ - savefig — PyProcar 6.1.5 documentation + savefig — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.FermiSurface.show.html b/docs/api/core/_autosummary/pyprocar.core.FermiSurface.show.html index f5f2c79e..545ad0bc 100644 --- a/docs/api/core/_autosummary/pyprocar.core.FermiSurface.show.html +++ b/docs/api/core/_autosummary/pyprocar.core.FermiSurface.show.html @@ -8,7 +8,7 @@ - show — PyProcar 6.1.5 documentation + show — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.FermiSurface.spin_texture.html b/docs/api/core/_autosummary/pyprocar.core.FermiSurface.spin_texture.html index d6b6edec..1e6a56af 100644 --- a/docs/api/core/_autosummary/pyprocar.core.FermiSurface.spin_texture.html +++ b/docs/api/core/_autosummary/pyprocar.core.FermiSurface.spin_texture.html @@ -8,7 +8,7 @@ - spin_texture — PyProcar 6.1.5 documentation + spin_texture — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.FermiSurface3D.__init__.html b/docs/api/core/_autosummary/pyprocar.core.FermiSurface3D.__init__.html index 19f87784..43ad7335 100644 --- a/docs/api/core/_autosummary/pyprocar.core.FermiSurface3D.__init__.html +++ b/docs/api/core/_autosummary/pyprocar.core.FermiSurface3D.__init__.html @@ -8,7 +8,7 @@ - __init__ — PyProcar 6.1.5 documentation + __init__ — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.FermiSurface3D.extend_surface.html b/docs/api/core/_autosummary/pyprocar.core.FermiSurface3D.extend_surface.html index 702f6cdd..c928274e 100644 --- a/docs/api/core/_autosummary/pyprocar.core.FermiSurface3D.extend_surface.html +++ b/docs/api/core/_autosummary/pyprocar.core.FermiSurface3D.extend_surface.html @@ -8,7 +8,7 @@ - extend_surface — PyProcar 6.1.5 documentation + extend_surface — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.FermiSurface3D.html b/docs/api/core/_autosummary/pyprocar.core.FermiSurface3D.html index 6ff2efa0..f02237ac 100644 --- a/docs/api/core/_autosummary/pyprocar.core.FermiSurface3D.html +++ b/docs/api/core/_autosummary/pyprocar.core.FermiSurface3D.html @@ -8,7 +8,7 @@ - pyprocar.core.FermiSurface3D — PyProcar 6.1.5 documentation + pyprocar.core.FermiSurface3D — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.FermiSurface3D.project_atomic_projections.html b/docs/api/core/_autosummary/pyprocar.core.FermiSurface3D.project_atomic_projections.html index 7f080d7d..5c22a1a0 100644 --- a/docs/api/core/_autosummary/pyprocar.core.FermiSurface3D.project_atomic_projections.html +++ b/docs/api/core/_autosummary/pyprocar.core.FermiSurface3D.project_atomic_projections.html @@ -8,7 +8,7 @@ - project_atomic_projections — PyProcar 6.1.5 documentation + project_atomic_projections — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.FermiSurface3D.project_fermi_speed.html b/docs/api/core/_autosummary/pyprocar.core.FermiSurface3D.project_fermi_speed.html index 91bbc94e..ccbac5c2 100644 --- a/docs/api/core/_autosummary/pyprocar.core.FermiSurface3D.project_fermi_speed.html +++ b/docs/api/core/_autosummary/pyprocar.core.FermiSurface3D.project_fermi_speed.html @@ -8,7 +8,7 @@ - project_fermi_speed — PyProcar 6.1.5 documentation + project_fermi_speed — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.FermiSurface3D.project_fermi_velocity.html b/docs/api/core/_autosummary/pyprocar.core.FermiSurface3D.project_fermi_velocity.html index 50dfe8c8..8093c584 100644 --- a/docs/api/core/_autosummary/pyprocar.core.FermiSurface3D.project_fermi_velocity.html +++ b/docs/api/core/_autosummary/pyprocar.core.FermiSurface3D.project_fermi_velocity.html @@ -8,7 +8,7 @@ - project_fermi_velocity — PyProcar 6.1.5 documentation + project_fermi_velocity — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.FermiSurface3D.project_harmonic_effective_mass.html b/docs/api/core/_autosummary/pyprocar.core.FermiSurface3D.project_harmonic_effective_mass.html index 7341c331..4106aa3e 100644 --- a/docs/api/core/_autosummary/pyprocar.core.FermiSurface3D.project_harmonic_effective_mass.html +++ b/docs/api/core/_autosummary/pyprocar.core.FermiSurface3D.project_harmonic_effective_mass.html @@ -8,7 +8,7 @@ - project_harmonic_effective_mass — PyProcar 6.1.5 documentation + project_harmonic_effective_mass — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.FermiSurface3D.project_spin_texture_atomic_projections.html b/docs/api/core/_autosummary/pyprocar.core.FermiSurface3D.project_spin_texture_atomic_projections.html index 3264e495..2d462b55 100644 --- a/docs/api/core/_autosummary/pyprocar.core.FermiSurface3D.project_spin_texture_atomic_projections.html +++ b/docs/api/core/_autosummary/pyprocar.core.FermiSurface3D.project_spin_texture_atomic_projections.html @@ -8,7 +8,7 @@ - project_spin_texture_atomic_projections — PyProcar 6.1.5 documentation + project_spin_texture_atomic_projections — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Isosurface.__init__.html b/docs/api/core/_autosummary/pyprocar.core.Isosurface.__init__.html index 598e84f1..3504b23c 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Isosurface.__init__.html +++ b/docs/api/core/_autosummary/pyprocar.core.Isosurface.__init__.html @@ -8,7 +8,7 @@ - __init__ — PyProcar 6.1.5 documentation + __init__ — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Isosurface.dxyz.html b/docs/api/core/_autosummary/pyprocar.core.Isosurface.dxyz.html index b1ebb323..e9e0b04e 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Isosurface.dxyz.html +++ b/docs/api/core/_autosummary/pyprocar.core.Isosurface.dxyz.html @@ -8,7 +8,7 @@ - dxyz — PyProcar 6.1.5 documentation + dxyz — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Isosurface.html b/docs/api/core/_autosummary/pyprocar.core.Isosurface.html index c9bb2716..353014e5 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Isosurface.html +++ b/docs/api/core/_autosummary/pyprocar.core.Isosurface.html @@ -8,7 +8,7 @@ - pyprocar.core.Isosurface — PyProcar 6.1.5 documentation + pyprocar.core.Isosurface — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Isosurface.nX.html b/docs/api/core/_autosummary/pyprocar.core.Isosurface.nX.html index 8876c1ee..3ba1aa81 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Isosurface.nX.html +++ b/docs/api/core/_autosummary/pyprocar.core.Isosurface.nX.html @@ -8,7 +8,7 @@ - nX — PyProcar 6.1.5 documentation + nX — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Isosurface.nY.html b/docs/api/core/_autosummary/pyprocar.core.Isosurface.nY.html index a7bf3ece..e20c603b 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Isosurface.nY.html +++ b/docs/api/core/_autosummary/pyprocar.core.Isosurface.nY.html @@ -8,7 +8,7 @@ - nY — PyProcar 6.1.5 documentation + nY — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Isosurface.nZ.html b/docs/api/core/_autosummary/pyprocar.core.Isosurface.nZ.html index 1172e2b0..5c8f22a1 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Isosurface.nZ.html +++ b/docs/api/core/_autosummary/pyprocar.core.Isosurface.nZ.html @@ -8,7 +8,7 @@ - nZ — PyProcar 6.1.5 documentation + nZ — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Isosurface.surface_boundaries.html b/docs/api/core/_autosummary/pyprocar.core.Isosurface.surface_boundaries.html index 2fdaa671..016756be 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Isosurface.surface_boundaries.html +++ b/docs/api/core/_autosummary/pyprocar.core.Isosurface.surface_boundaries.html @@ -8,7 +8,7 @@ - surface_boundaries — PyProcar 6.1.5 documentation + surface_boundaries — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.KPath.__init__.html b/docs/api/core/_autosummary/pyprocar.core.KPath.__init__.html index cbc1d10d..26af713e 100644 --- a/docs/api/core/_autosummary/pyprocar.core.KPath.__init__.html +++ b/docs/api/core/_autosummary/pyprocar.core.KPath.__init__.html @@ -8,7 +8,7 @@ - __init__ — PyProcar 6.1.5 documentation + __init__ — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.KPath.get_kpoints_transformed.html b/docs/api/core/_autosummary/pyprocar.core.KPath.get_kpoints_transformed.html index 7c18c2fc..5947f337 100644 --- a/docs/api/core/_autosummary/pyprocar.core.KPath.get_kpoints_transformed.html +++ b/docs/api/core/_autosummary/pyprocar.core.KPath.get_kpoints_transformed.html @@ -8,7 +8,7 @@ - get_kpoints_transformed — PyProcar 6.1.5 documentation + get_kpoints_transformed — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.KPath.get_optimized_kpoints_transformed.html b/docs/api/core/_autosummary/pyprocar.core.KPath.get_optimized_kpoints_transformed.html index 34e748e5..0b03e577 100644 --- a/docs/api/core/_autosummary/pyprocar.core.KPath.get_optimized_kpoints_transformed.html +++ b/docs/api/core/_autosummary/pyprocar.core.KPath.get_optimized_kpoints_transformed.html @@ -8,7 +8,7 @@ - get_optimized_kpoints_transformed — PyProcar 6.1.5 documentation + get_optimized_kpoints_transformed — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.KPath.html b/docs/api/core/_autosummary/pyprocar.core.KPath.html index 51578b35..f801c341 100644 --- a/docs/api/core/_autosummary/pyprocar.core.KPath.html +++ b/docs/api/core/_autosummary/pyprocar.core.KPath.html @@ -8,7 +8,7 @@ - pyprocar.core.KPath — PyProcar 6.1.5 documentation + pyprocar.core.KPath — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.KPath.kdistances.html b/docs/api/core/_autosummary/pyprocar.core.KPath.kdistances.html index ab22c1b7..2d2dddb2 100644 --- a/docs/api/core/_autosummary/pyprocar.core.KPath.kdistances.html +++ b/docs/api/core/_autosummary/pyprocar.core.KPath.kdistances.html @@ -8,7 +8,7 @@ - kdistances — PyProcar 6.1.5 documentation + kdistances — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.KPath.nsegments.html b/docs/api/core/_autosummary/pyprocar.core.KPath.nsegments.html index b1996d11..3f3b8d8e 100644 --- a/docs/api/core/_autosummary/pyprocar.core.KPath.nsegments.html +++ b/docs/api/core/_autosummary/pyprocar.core.KPath.nsegments.html @@ -8,7 +8,7 @@ - nsegments — PyProcar 6.1.5 documentation + nsegments — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.KPath.tick_names.html b/docs/api/core/_autosummary/pyprocar.core.KPath.tick_names.html index 1d19679f..43b7ef36 100644 --- a/docs/api/core/_autosummary/pyprocar.core.KPath.tick_names.html +++ b/docs/api/core/_autosummary/pyprocar.core.KPath.tick_names.html @@ -8,7 +8,7 @@ - tick_names — PyProcar 6.1.5 documentation + tick_names — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.KPath.tick_positions.html b/docs/api/core/_autosummary/pyprocar.core.KPath.tick_positions.html index ad35b1fe..a183f31b 100644 --- a/docs/api/core/_autosummary/pyprocar.core.KPath.tick_positions.html +++ b/docs/api/core/_autosummary/pyprocar.core.KPath.tick_positions.html @@ -8,7 +8,7 @@ - tick_positions — PyProcar 6.1.5 documentation + tick_positions — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.KPath.write_to_file.html b/docs/api/core/_autosummary/pyprocar.core.KPath.write_to_file.html index eb9d0a62..dbc5fb99 100644 --- a/docs/api/core/_autosummary/pyprocar.core.KPath.write_to_file.html +++ b/docs/api/core/_autosummary/pyprocar.core.KPath.write_to_file.html @@ -8,7 +8,7 @@ - write_to_file — PyProcar 6.1.5 documentation + write_to_file — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Structure.__init__.html b/docs/api/core/_autosummary/pyprocar.core.Structure.__init__.html index 850a235b..3cb6f61d 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Structure.__init__.html +++ b/docs/api/core/_autosummary/pyprocar.core.Structure.__init__.html @@ -8,7 +8,7 @@ - __init__ — PyProcar 6.1.5 documentation + __init__ — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Structure.a.html b/docs/api/core/_autosummary/pyprocar.core.Structure.a.html index 8e653600..9be4e09c 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Structure.a.html +++ b/docs/api/core/_autosummary/pyprocar.core.Structure.a.html @@ -8,7 +8,7 @@ - a — PyProcar 6.1.5 documentation + a — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Structure.alpha.html b/docs/api/core/_autosummary/pyprocar.core.Structure.alpha.html index a97efa06..0305d51a 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Structure.alpha.html +++ b/docs/api/core/_autosummary/pyprocar.core.Structure.alpha.html @@ -8,7 +8,7 @@ - alpha — PyProcar 6.1.5 documentation + alpha — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Structure.atomic_numbers.html b/docs/api/core/_autosummary/pyprocar.core.Structure.atomic_numbers.html index 9c8aa166..1681d79a 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Structure.atomic_numbers.html +++ b/docs/api/core/_autosummary/pyprocar.core.Structure.atomic_numbers.html @@ -8,7 +8,7 @@ - atomic_numbers — PyProcar 6.1.5 documentation + atomic_numbers — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Structure.b.html b/docs/api/core/_autosummary/pyprocar.core.Structure.b.html index addcc80b..27934b05 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Structure.b.html +++ b/docs/api/core/_autosummary/pyprocar.core.Structure.b.html @@ -8,7 +8,7 @@ - b — PyProcar 6.1.5 documentation + b — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Structure.beta.html b/docs/api/core/_autosummary/pyprocar.core.Structure.beta.html index c83a5607..38d61242 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Structure.beta.html +++ b/docs/api/core/_autosummary/pyprocar.core.Structure.beta.html @@ -8,7 +8,7 @@ - beta — PyProcar 6.1.5 documentation + beta — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Structure.c.html b/docs/api/core/_autosummary/pyprocar.core.Structure.c.html index 473bcffd..24a3a4b4 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Structure.c.html +++ b/docs/api/core/_autosummary/pyprocar.core.Structure.c.html @@ -8,7 +8,7 @@ - c — PyProcar 6.1.5 documentation + c — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Structure.cell_convex_hull.html b/docs/api/core/_autosummary/pyprocar.core.Structure.cell_convex_hull.html index e9760405..a7c7a33c 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Structure.cell_convex_hull.html +++ b/docs/api/core/_autosummary/pyprocar.core.Structure.cell_convex_hull.html @@ -8,7 +8,7 @@ - cell_convex_hull — PyProcar 6.1.5 documentation + cell_convex_hull — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Structure.density.html b/docs/api/core/_autosummary/pyprocar.core.Structure.density.html index f2c6927a..d8f00c11 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Structure.density.html +++ b/docs/api/core/_autosummary/pyprocar.core.Structure.density.html @@ -8,7 +8,7 @@ - density — PyProcar 6.1.5 documentation + density — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Structure.gamma.html b/docs/api/core/_autosummary/pyprocar.core.Structure.gamma.html index ca84bf4a..49224a57 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Structure.gamma.html +++ b/docs/api/core/_autosummary/pyprocar.core.Structure.gamma.html @@ -8,7 +8,7 @@ - gamma — PyProcar 6.1.5 documentation + gamma — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Structure.get_space_group_international.html b/docs/api/core/_autosummary/pyprocar.core.Structure.get_space_group_international.html index d9bc24a1..558d091b 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Structure.get_space_group_international.html +++ b/docs/api/core/_autosummary/pyprocar.core.Structure.get_space_group_international.html @@ -8,7 +8,7 @@ - get_space_group_international — PyProcar 6.1.5 documentation + get_space_group_international — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Structure.get_space_group_number.html b/docs/api/core/_autosummary/pyprocar.core.Structure.get_space_group_number.html index 7f14d13e..9e7ca2db 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Structure.get_space_group_number.html +++ b/docs/api/core/_autosummary/pyprocar.core.Structure.get_space_group_number.html @@ -8,7 +8,7 @@ - get_space_group_number — PyProcar 6.1.5 documentation + get_space_group_number — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Structure.get_spglib_symmetry_dataset.html b/docs/api/core/_autosummary/pyprocar.core.Structure.get_spglib_symmetry_dataset.html index c60375ac..63ef6d06 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Structure.get_spglib_symmetry_dataset.html +++ b/docs/api/core/_autosummary/pyprocar.core.Structure.get_spglib_symmetry_dataset.html @@ -8,7 +8,7 @@ - get_spglib_symmetry_dataset — PyProcar 6.1.5 documentation + get_spglib_symmetry_dataset — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Structure.get_wyckoff_positions.html b/docs/api/core/_autosummary/pyprocar.core.Structure.get_wyckoff_positions.html index b3a2fb01..93f1191a 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Structure.get_wyckoff_positions.html +++ b/docs/api/core/_autosummary/pyprocar.core.Structure.get_wyckoff_positions.html @@ -8,7 +8,7 @@ - get_wyckoff_positions — PyProcar 6.1.5 documentation + get_wyckoff_positions — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Structure.html b/docs/api/core/_autosummary/pyprocar.core.Structure.html index f8d9cd51..5f6b4a28 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Structure.html +++ b/docs/api/core/_autosummary/pyprocar.core.Structure.html @@ -8,7 +8,7 @@ - pyprocar.core.Structure — PyProcar 6.1.5 documentation + pyprocar.core.Structure — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Structure.is_point_inside.html b/docs/api/core/_autosummary/pyprocar.core.Structure.is_point_inside.html index 7c8c0a75..1e1d1691 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Structure.is_point_inside.html +++ b/docs/api/core/_autosummary/pyprocar.core.Structure.is_point_inside.html @@ -8,7 +8,7 @@ - is_point_inside — PyProcar 6.1.5 documentation + is_point_inside — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Structure.lattice_corners.html b/docs/api/core/_autosummary/pyprocar.core.Structure.lattice_corners.html index 77def64c..3a756210 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Structure.lattice_corners.html +++ b/docs/api/core/_autosummary/pyprocar.core.Structure.lattice_corners.html @@ -8,7 +8,7 @@ - lattice_corners — PyProcar 6.1.5 documentation + lattice_corners — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Structure.masses.html b/docs/api/core/_autosummary/pyprocar.core.Structure.masses.html index 68186287..6800afe3 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Structure.masses.html +++ b/docs/api/core/_autosummary/pyprocar.core.Structure.masses.html @@ -8,7 +8,7 @@ - masses — PyProcar 6.1.5 documentation + masses — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Structure.natoms.html b/docs/api/core/_autosummary/pyprocar.core.Structure.natoms.html index 42bd7e61..63c4d9a8 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Structure.natoms.html +++ b/docs/api/core/_autosummary/pyprocar.core.Structure.natoms.html @@ -8,7 +8,7 @@ - natoms — PyProcar 6.1.5 documentation + natoms — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Structure.nspecies.html b/docs/api/core/_autosummary/pyprocar.core.Structure.nspecies.html index 239f8014..9f02a0b8 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Structure.nspecies.html +++ b/docs/api/core/_autosummary/pyprocar.core.Structure.nspecies.html @@ -8,7 +8,7 @@ - nspecies — PyProcar 6.1.5 documentation + nspecies — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Structure.plot_cell_convex_hull.html b/docs/api/core/_autosummary/pyprocar.core.Structure.plot_cell_convex_hull.html index 07494c5c..0c5a2182 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Structure.plot_cell_convex_hull.html +++ b/docs/api/core/_autosummary/pyprocar.core.Structure.plot_cell_convex_hull.html @@ -8,7 +8,7 @@ - plot_cell_convex_hull — PyProcar 6.1.5 documentation + plot_cell_convex_hull — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Structure.reciprocal_lattice.html b/docs/api/core/_autosummary/pyprocar.core.Structure.reciprocal_lattice.html index 4af60868..a34d5e6e 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Structure.reciprocal_lattice.html +++ b/docs/api/core/_autosummary/pyprocar.core.Structure.reciprocal_lattice.html @@ -8,7 +8,7 @@ - reciprocal_lattice — PyProcar 6.1.5 documentation + reciprocal_lattice — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Structure.species.html b/docs/api/core/_autosummary/pyprocar.core.Structure.species.html index bea176f7..d16c398a 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Structure.species.html +++ b/docs/api/core/_autosummary/pyprocar.core.Structure.species.html @@ -8,7 +8,7 @@ - species — PyProcar 6.1.5 documentation + species — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Structure.supercell.html b/docs/api/core/_autosummary/pyprocar.core.Structure.supercell.html index d2a34166..0f70a0c4 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Structure.supercell.html +++ b/docs/api/core/_autosummary/pyprocar.core.Structure.supercell.html @@ -8,7 +8,7 @@ - supercell — PyProcar 6.1.5 documentation + supercell — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Structure.transform.html b/docs/api/core/_autosummary/pyprocar.core.Structure.transform.html index a84e021f..42ea89ba 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Structure.transform.html +++ b/docs/api/core/_autosummary/pyprocar.core.Structure.transform.html @@ -8,7 +8,7 @@ - transform — PyProcar 6.1.5 documentation + transform — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Structure.volume.html b/docs/api/core/_autosummary/pyprocar.core.Structure.volume.html index 8f761520..aadcef1b 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Structure.volume.html +++ b/docs/api/core/_autosummary/pyprocar.core.Structure.volume.html @@ -8,7 +8,7 @@ - volume — PyProcar 6.1.5 documentation + volume — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Surface.__init__.html b/docs/api/core/_autosummary/pyprocar.core.Surface.__init__.html index 030e8fce..d643d21d 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Surface.__init__.html +++ b/docs/api/core/_autosummary/pyprocar.core.Surface.__init__.html @@ -8,7 +8,7 @@ - __init__ — PyProcar 6.1.5 documentation + __init__ — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Surface.centers.html b/docs/api/core/_autosummary/pyprocar.core.Surface.centers.html index 6a232a5e..a7d655a7 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Surface.centers.html +++ b/docs/api/core/_autosummary/pyprocar.core.Surface.centers.html @@ -8,7 +8,7 @@ - centers — PyProcar 6.1.5 documentation + centers — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Surface.export.html b/docs/api/core/_autosummary/pyprocar.core.Surface.export.html index b4fe20cb..749cf1d6 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Surface.export.html +++ b/docs/api/core/_autosummary/pyprocar.core.Surface.export.html @@ -8,7 +8,7 @@ - export — PyProcar 6.1.5 documentation + export — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Surface.faces_array.html b/docs/api/core/_autosummary/pyprocar.core.Surface.faces_array.html index 546cb8fe..cfdd7d9f 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Surface.faces_array.html +++ b/docs/api/core/_autosummary/pyprocar.core.Surface.faces_array.html @@ -8,7 +8,7 @@ - faces_array — PyProcar 6.1.5 documentation + faces_array — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Surface.html b/docs/api/core/_autosummary/pyprocar.core.Surface.html index c082c022..d9993424 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Surface.html +++ b/docs/api/core/_autosummary/pyprocar.core.Surface.html @@ -8,7 +8,7 @@ - pyprocar.core.Surface — PyProcar 6.1.5 documentation + pyprocar.core.Surface — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Surface.set_color_with_cmap.html b/docs/api/core/_autosummary/pyprocar.core.Surface.set_color_with_cmap.html index ef14637b..e9ee5a34 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Surface.set_color_with_cmap.html +++ b/docs/api/core/_autosummary/pyprocar.core.Surface.set_color_with_cmap.html @@ -8,7 +8,7 @@ - set_color_with_cmap — PyProcar 6.1.5 documentation + set_color_with_cmap — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Surface.set_scalars.html b/docs/api/core/_autosummary/pyprocar.core.Surface.set_scalars.html index de3f54d9..4e6af613 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Surface.set_scalars.html +++ b/docs/api/core/_autosummary/pyprocar.core.Surface.set_scalars.html @@ -8,7 +8,7 @@ - set_scalars — PyProcar 6.1.5 documentation + set_scalars — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/_autosummary/pyprocar.core.Surface.set_vectors.html b/docs/api/core/_autosummary/pyprocar.core.Surface.set_vectors.html index df4738ad..830b8cba 100644 --- a/docs/api/core/_autosummary/pyprocar.core.Surface.set_vectors.html +++ b/docs/api/core/_autosummary/pyprocar.core.Surface.set_vectors.html @@ -8,7 +8,7 @@ - set_vectors — PyProcar 6.1.5 documentation + set_vectors — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/brillouin_zone.html b/docs/api/core/brillouin_zone.html index 9e77fe36..aa0a0fdb 100644 --- a/docs/api/core/brillouin_zone.html +++ b/docs/api/core/brillouin_zone.html @@ -8,7 +8,7 @@ - BrillouinZone — PyProcar 6.1.5 documentation + BrillouinZone — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/dos.html b/docs/api/core/dos.html index 51e57f3b..21360c72 100644 --- a/docs/api/core/dos.html +++ b/docs/api/core/dos.html @@ -8,7 +8,7 @@ - DensityOfStates — PyProcar 6.1.5 documentation + DensityOfStates — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/ebs.html b/docs/api/core/ebs.html index a9b8a9da..eff46ffe 100644 --- a/docs/api/core/ebs.html +++ b/docs/api/core/ebs.html @@ -8,7 +8,7 @@ - ElectronicBandStructure — PyProcar 6.1.5 documentation + ElectronicBandStructure — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/fermi2d.html b/docs/api/core/fermi2d.html index 7f1d1e6c..75c511f4 100644 --- a/docs/api/core/fermi2d.html +++ b/docs/api/core/fermi2d.html @@ -8,7 +8,7 @@ - FermiSurface — PyProcar 6.1.5 documentation + FermiSurface — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/fermi3d.html b/docs/api/core/fermi3d.html index 77d4f768..dcfc8df0 100644 --- a/docs/api/core/fermi3d.html +++ b/docs/api/core/fermi3d.html @@ -8,7 +8,7 @@ - FermiSurface3D — PyProcar 6.1.5 documentation + FermiSurface3D — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/index.html b/docs/api/core/index.html index 65ddb03d..c34a44d7 100644 --- a/docs/api/core/index.html +++ b/docs/api/core/index.html @@ -8,7 +8,7 @@ - Core API — PyProcar 6.1.5 documentation + Core API — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/isosurface.html b/docs/api/core/isosurface.html index cccb318c..60349f58 100644 --- a/docs/api/core/isosurface.html +++ b/docs/api/core/isosurface.html @@ -8,7 +8,7 @@ - Isosurface — PyProcar 6.1.5 documentation + Isosurface — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/kpath.html b/docs/api/core/kpath.html index ced8c9cb..891cb3fb 100644 --- a/docs/api/core/kpath.html +++ b/docs/api/core/kpath.html @@ -8,7 +8,7 @@ - KPath — PyProcar 6.1.5 documentation + KPath — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/structure.html b/docs/api/core/structure.html index 528a653a..52a14b66 100644 --- a/docs/api/core/structure.html +++ b/docs/api/core/structure.html @@ -8,7 +8,7 @@ - Structure — PyProcar 6.1.5 documentation + Structure — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/core/surface.html b/docs/api/core/surface.html index 606f05bd..c78d8853 100644 --- a/docs/api/core/surface.html +++ b/docs/api/core/surface.html @@ -8,7 +8,7 @@ - Surface — PyProcar 6.1.5 documentation + Surface — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/index.html b/docs/api/index.html index 71ffacaa..93a85fc7 100644 --- a/docs/api/index.html +++ b/docs/api/index.html @@ -8,7 +8,7 @@ - API Reference — PyProcar 6.1.5 documentation + API Reference — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.abinit.AbinitKpoints.__init__.html b/docs/api/io/_autosummary/pyprocar.io.abinit.AbinitKpoints.__init__.html index 2f16357f..8b7b2653 100644 --- a/docs/api/io/_autosummary/pyprocar.io.abinit.AbinitKpoints.__init__.html +++ b/docs/api/io/_autosummary/pyprocar.io.abinit.AbinitKpoints.__init__.html @@ -8,7 +8,7 @@ - __init__ — PyProcar 6.1.5 documentation + __init__ — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.abinit.AbinitKpoints.html b/docs/api/io/_autosummary/pyprocar.io.abinit.AbinitKpoints.html index 6caa48c6..6cec4839 100644 --- a/docs/api/io/_autosummary/pyprocar.io.abinit.AbinitKpoints.html +++ b/docs/api/io/_autosummary/pyprocar.io.abinit.AbinitKpoints.html @@ -8,7 +8,7 @@ - pyprocar.io.abinit.AbinitKpoints — PyProcar 6.1.5 documentation + pyprocar.io.abinit.AbinitKpoints — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.abinit.AbinitProcar.__init__.html b/docs/api/io/_autosummary/pyprocar.io.abinit.AbinitProcar.__init__.html index 697b6e44..dba40078 100644 --- a/docs/api/io/_autosummary/pyprocar.io.abinit.AbinitProcar.__init__.html +++ b/docs/api/io/_autosummary/pyprocar.io.abinit.AbinitProcar.__init__.html @@ -8,7 +8,7 @@ - __init__ — PyProcar 6.1.5 documentation + __init__ — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.abinit.AbinitProcar.html b/docs/api/io/_autosummary/pyprocar.io.abinit.AbinitProcar.html index 44230325..8d631498 100644 --- a/docs/api/io/_autosummary/pyprocar.io.abinit.AbinitProcar.html +++ b/docs/api/io/_autosummary/pyprocar.io.abinit.AbinitProcar.html @@ -8,7 +8,7 @@ - pyprocar.io.abinit.AbinitProcar — PyProcar 6.1.5 documentation + pyprocar.io.abinit.AbinitProcar — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.abinit.Output.__init__.html b/docs/api/io/_autosummary/pyprocar.io.abinit.Output.__init__.html index 91588dbc..3ca83963 100644 --- a/docs/api/io/_autosummary/pyprocar.io.abinit.Output.__init__.html +++ b/docs/api/io/_autosummary/pyprocar.io.abinit.Output.__init__.html @@ -8,7 +8,7 @@ - __init__ — PyProcar 6.1.5 documentation + __init__ — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.abinit.Output.html b/docs/api/io/_autosummary/pyprocar.io.abinit.Output.html index a69d8e41..533c3914 100644 --- a/docs/api/io/_autosummary/pyprocar.io.abinit.Output.html +++ b/docs/api/io/_autosummary/pyprocar.io.abinit.Output.html @@ -8,7 +8,7 @@ - pyprocar.io.abinit.Output — PyProcar 6.1.5 documentation + pyprocar.io.abinit.Output — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.bxsf.BxsfParser.__init__.html b/docs/api/io/_autosummary/pyprocar.io.bxsf.BxsfParser.__init__.html index 92c0c3ac..ccfa44c0 100644 --- a/docs/api/io/_autosummary/pyprocar.io.bxsf.BxsfParser.__init__.html +++ b/docs/api/io/_autosummary/pyprocar.io.bxsf.BxsfParser.__init__.html @@ -8,7 +8,7 @@ - __init__ — PyProcar 6.1.5 documentation + __init__ — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.bxsf.BxsfParser.html b/docs/api/io/_autosummary/pyprocar.io.bxsf.BxsfParser.html index 70c8cfe1..f49deaa7 100644 --- a/docs/api/io/_autosummary/pyprocar.io.bxsf.BxsfParser.html +++ b/docs/api/io/_autosummary/pyprocar.io.bxsf.BxsfParser.html @@ -8,7 +8,7 @@ - pyprocar.io.bxsf.BxsfParser — PyProcar 6.1.5 documentation + pyprocar.io.bxsf.BxsfParser — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.bxsf.BxsfParser.parse_bxsf.html b/docs/api/io/_autosummary/pyprocar.io.bxsf.BxsfParser.parse_bxsf.html index 4577584e..ee9c4e94 100644 --- a/docs/api/io/_autosummary/pyprocar.io.bxsf.BxsfParser.parse_bxsf.html +++ b/docs/api/io/_autosummary/pyprocar.io.bxsf.BxsfParser.parse_bxsf.html @@ -8,7 +8,7 @@ - parse_bxsf — PyProcar 6.1.5 documentation + parse_bxsf — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.__init__.html b/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.__init__.html index ec1dd424..d82c86b7 100644 --- a/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.__init__.html +++ b/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.__init__.html @@ -8,7 +8,7 @@ - __init__ — PyProcar 6.1.5 documentation + __init__ — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.dos.html b/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.dos.html index bdfc83a5..34a6f36e 100644 --- a/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.dos.html +++ b/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.dos.html @@ -8,7 +8,7 @@ - dos — PyProcar 6.1.5 documentation + dos — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.dos_parametric.html b/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.dos_parametric.html index 791376f5..6c2c9d04 100644 --- a/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.dos_parametric.html +++ b/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.dos_parametric.html @@ -8,7 +8,7 @@ - dos_parametric — PyProcar 6.1.5 documentation + dos_parametric — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.dos_projected.html b/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.dos_projected.html index 5d340f05..b5df78cf 100644 --- a/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.dos_projected.html +++ b/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.dos_projected.html @@ -8,7 +8,7 @@ - dos_projected — PyProcar 6.1.5 documentation + dos_projected — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.dos_to_dict.html b/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.dos_to_dict.html index 0abea0d5..0e28f9da 100644 --- a/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.dos_to_dict.html +++ b/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.dos_to_dict.html @@ -8,7 +8,7 @@ - dos_to_dict — PyProcar 6.1.5 documentation + dos_to_dict — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.dos_total.html b/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.dos_total.html index a0d7cca0..4b61c4ee 100644 --- a/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.dos_total.html +++ b/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.dos_total.html @@ -8,7 +8,7 @@ - dos_total — PyProcar 6.1.5 documentation + dos_total — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.final_structure.html b/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.final_structure.html index 862b0033..e5211842 100644 --- a/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.final_structure.html +++ b/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.final_structure.html @@ -8,7 +8,7 @@ - final_structure — PyProcar 6.1.5 documentation + final_structure — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.html b/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.html index 1539d218..144a8b64 100644 --- a/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.html +++ b/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.html @@ -8,7 +8,7 @@ - pyprocar.io.lobster.LobsterParser — PyProcar 6.1.5 documentation + pyprocar.io.lobster.LobsterParser — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.initial_structure.html b/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.initial_structure.html index 5ba6c19d..992f175a 100644 --- a/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.initial_structure.html +++ b/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.initial_structure.html @@ -8,7 +8,7 @@ - initial_structure — PyProcar 6.1.5 documentation + initial_structure — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.parse_structure.html b/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.parse_structure.html index bf67c95c..bb2f876e 100644 --- a/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.parse_structure.html +++ b/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.parse_structure.html @@ -8,7 +8,7 @@ - parse_structure — PyProcar 6.1.5 documentation + parse_structure — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.species.html b/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.species.html index f71c0c0f..7827db70 100644 --- a/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.species.html +++ b/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.species.html @@ -8,7 +8,7 @@ - species — PyProcar 6.1.5 documentation + species — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.structure.html b/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.structure.html index 422fa926..cc83816d 100644 --- a/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.structure.html +++ b/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.structure.html @@ -8,7 +8,7 @@ - structure — PyProcar 6.1.5 documentation + structure — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.structures.html b/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.structures.html index d60b25a9..a3f0997b 100644 --- a/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.structures.html +++ b/docs/api/io/_autosummary/pyprocar.io.lobster.LobsterParser.structures.html @@ -8,7 +8,7 @@ - structures — PyProcar 6.1.5 documentation + structures — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.__init__.html b/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.__init__.html index b837544d..2d026010 100644 --- a/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.__init__.html +++ b/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.__init__.html @@ -8,7 +8,7 @@ - __init__ — PyProcar 6.1.5 documentation + __init__ — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.final_structure.html b/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.final_structure.html index d88ebbd7..a126514f 100644 --- a/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.final_structure.html +++ b/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.final_structure.html @@ -8,7 +8,7 @@ - final_structure — PyProcar 6.1.5 documentation + final_structure — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.getKpointLabels.html b/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.getKpointLabels.html index 96b3e3a2..a8ea5876 100644 --- a/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.getKpointLabels.html +++ b/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.getKpointLabels.html @@ -8,7 +8,7 @@ - getKpointLabels — PyProcar 6.1.5 documentation + getKpointLabels — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.html b/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.html index 2b2069d0..36fb0694 100644 --- a/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.html +++ b/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.html @@ -8,7 +8,7 @@ - pyprocar.io.qe.QEParser — PyProcar 6.1.5 documentation + pyprocar.io.qe.QEParser — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.initial_structure.html b/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.initial_structure.html index 7a40a26f..aa106049 100644 --- a/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.initial_structure.html +++ b/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.initial_structure.html @@ -8,7 +8,7 @@ - initial_structure — PyProcar 6.1.5 documentation + initial_structure — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.kpoints_cart.html b/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.kpoints_cart.html index cf2f7ac6..2509e463 100644 --- a/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.kpoints_cart.html +++ b/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.kpoints_cart.html @@ -8,7 +8,7 @@ - kpoints_cart — PyProcar 6.1.5 documentation + kpoints_cart — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.species.html b/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.species.html index d83acebf..7e77829a 100644 --- a/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.species.html +++ b/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.species.html @@ -8,7 +8,7 @@ - species — PyProcar 6.1.5 documentation + species — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.structure.html b/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.structure.html index 111f6808..96025a8a 100644 --- a/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.structure.html +++ b/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.structure.html @@ -8,7 +8,7 @@ - structure — PyProcar 6.1.5 documentation + structure — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.structures.html b/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.structures.html index 1d51edf3..337ed982 100644 --- a/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.structures.html +++ b/docs/api/io/_autosummary/pyprocar.io.qe.QEParser.structures.html @@ -8,7 +8,7 @@ - structures — PyProcar 6.1.5 documentation + structures — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.siesta.SiestaParser.__init__.html b/docs/api/io/_autosummary/pyprocar.io.siesta.SiestaParser.__init__.html index d9001cfc..d9fbd27a 100644 --- a/docs/api/io/_autosummary/pyprocar.io.siesta.SiestaParser.__init__.html +++ b/docs/api/io/_autosummary/pyprocar.io.siesta.SiestaParser.__init__.html @@ -8,7 +8,7 @@ - __init__ — PyProcar 6.1.5 documentation + __init__ — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.siesta.SiestaParser.html b/docs/api/io/_autosummary/pyprocar.io.siesta.SiestaParser.html index 7eb65d19..bf321ffc 100644 --- a/docs/api/io/_autosummary/pyprocar.io.siesta.SiestaParser.html +++ b/docs/api/io/_autosummary/pyprocar.io.siesta.SiestaParser.html @@ -8,7 +8,7 @@ - pyprocar.io.siesta.SiestaParser — PyProcar 6.1.5 documentation + pyprocar.io.siesta.SiestaParser — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.Kpoints.__init__.html b/docs/api/io/_autosummary/pyprocar.io.vasp.Kpoints.__init__.html index 98ed01d0..d4f44e01 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.Kpoints.__init__.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.Kpoints.__init__.html @@ -8,7 +8,7 @@ - __init__ — PyProcar 6.1.5 documentation + __init__ — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.Kpoints.html b/docs/api/io/_autosummary/pyprocar.io.vasp.Kpoints.html index 1e8f51ab..3652c70b 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.Kpoints.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.Kpoints.html @@ -8,7 +8,7 @@ - pyprocar.io.vasp.Kpoints — PyProcar 6.1.5 documentation + pyprocar.io.vasp.Kpoints — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.Outcar.__init__.html b/docs/api/io/_autosummary/pyprocar.io.vasp.Outcar.__init__.html index e363eed7..825b2709 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.Outcar.__init__.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.Outcar.__init__.html @@ -8,7 +8,7 @@ - __init__ — PyProcar 6.1.5 documentation + __init__ — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.Outcar.efermi.html b/docs/api/io/_autosummary/pyprocar.io.vasp.Outcar.efermi.html index fe3c2c04..ba36d3df 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.Outcar.efermi.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.Outcar.efermi.html @@ -8,7 +8,7 @@ - efermi — PyProcar 6.1.5 documentation + efermi — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.Outcar.get_symmetry_operations.html b/docs/api/io/_autosummary/pyprocar.io.vasp.Outcar.get_symmetry_operations.html index be35c16c..50a91f3e 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.Outcar.get_symmetry_operations.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.Outcar.get_symmetry_operations.html @@ -8,7 +8,7 @@ - get_symmetry_operations — PyProcar 6.1.5 documentation + get_symmetry_operations — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.Outcar.html b/docs/api/io/_autosummary/pyprocar.io.vasp.Outcar.html index c55e5295..afb0033d 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.Outcar.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.Outcar.html @@ -8,7 +8,7 @@ - pyprocar.io.vasp.Outcar — PyProcar 6.1.5 documentation + pyprocar.io.vasp.Outcar — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.Outcar.reciprocal_lattice.html b/docs/api/io/_autosummary/pyprocar.io.vasp.Outcar.reciprocal_lattice.html index fe293d7d..99cded98 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.Outcar.reciprocal_lattice.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.Outcar.reciprocal_lattice.html @@ -8,7 +8,7 @@ - reciprocal_lattice — PyProcar 6.1.5 documentation + reciprocal_lattice — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.Outcar.rotations.html b/docs/api/io/_autosummary/pyprocar.io.vasp.Outcar.rotations.html index 3c68189b..4a0c09c9 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.Outcar.rotations.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.Outcar.rotations.html @@ -8,7 +8,7 @@ - rotations — PyProcar 6.1.5 documentation + rotations — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.Poscar.__init__.html b/docs/api/io/_autosummary/pyprocar.io.vasp.Poscar.__init__.html index 3a639fee..3ee88e8c 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.Poscar.__init__.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.Poscar.__init__.html @@ -8,7 +8,7 @@ - __init__ — PyProcar 6.1.5 documentation + __init__ — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • @@ -933,7 +935,7 @@

    __init__#

    -Poscar.__init__(filename='POSCAR', rotations=None)[source]#
    +Poscar.__init__(filename: str | Path = 'POSCAR', rotations=None)[source]#
    diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.Poscar.html b/docs/api/io/_autosummary/pyprocar.io.vasp.Poscar.html index 54393738..518b7c95 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.Poscar.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.Poscar.html @@ -8,7 +8,7 @@ - pyprocar.io.vasp.Poscar — PyProcar 6.1.5 documentation + pyprocar.io.vasp.Poscar — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • @@ -933,7 +935,7 @@

    pyprocar.io.vasp.Poscar#

    -class pyprocar.io.vasp.Poscar(filename='POSCAR', rotations=None)[source]#
    +class pyprocar.io.vasp.Poscar(filename: str | Path = 'POSCAR', rotations=None)[source]#

    A class to parse the POSCAR file

    Parameters:
    diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.Procar.__init__.html b/docs/api/io/_autosummary/pyprocar.io.vasp.Procar.__init__.html index 8fd80527..f6a29709 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.Procar.__init__.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.Procar.__init__.html @@ -8,7 +8,7 @@ - __init__ — PyProcar 6.1.5 documentation + __init__ — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.Procar.html b/docs/api/io/_autosummary/pyprocar.io.vasp.Procar.html index 98b4fa77..d0f3d706 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.Procar.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.Procar.html @@ -8,7 +8,7 @@ - pyprocar.io.vasp.Procar — PyProcar 6.1.5 documentation + pyprocar.io.vasp.Procar — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.Procar.kpoints_cartesian.html b/docs/api/io/_autosummary/pyprocar.io.vasp.Procar.kpoints_cartesian.html index 57a959d9..f2b0e1a3 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.Procar.kpoints_cartesian.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.Procar.kpoints_cartesian.html @@ -8,7 +8,7 @@ - kpoints_cartesian — PyProcar 6.1.5 documentation + kpoints_cartesian — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.Procar.kpoints_reduced.html b/docs/api/io/_autosummary/pyprocar.io.vasp.Procar.kpoints_reduced.html index 03a0bcf5..5d96b936 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.Procar.kpoints_reduced.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.Procar.kpoints_reduced.html @@ -8,7 +8,7 @@ - kpoints_reduced — PyProcar 6.1.5 documentation + kpoints_reduced — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.Procar.repair.html b/docs/api/io/_autosummary/pyprocar.io.vasp.Procar.repair.html index 421dfd89..a5611833 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.Procar.repair.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.Procar.repair.html @@ -8,7 +8,7 @@ - repair — PyProcar 6.1.5 documentation + repair — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.Procar.symmetrize.html b/docs/api/io/_autosummary/pyprocar.io.vasp.Procar.symmetrize.html index 567cfab4..358c4b49 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.Procar.symmetrize.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.Procar.symmetrize.html @@ -8,7 +8,7 @@ - symmetrize — PyProcar 6.1.5 documentation + symmetrize — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.__init__.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.__init__.html index 430b4df4..fbed2770 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.__init__.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.__init__.html @@ -8,7 +8,7 @@ - __init__ — PyProcar 6.1.5 documentation + __init__ — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.bands.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.bands.html index 945d877d..eed7b7e7 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.bands.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.bands.html @@ -8,7 +8,7 @@ - bands — PyProcar 6.1.5 documentation + bands — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.bands_projected.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.bands_projected.html index a2e7dd5a..2b0d88bc 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.bands_projected.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.bands_projected.html @@ -8,7 +8,7 @@ - bands_projected — PyProcar 6.1.5 documentation + bands_projected — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.conv.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.conv.html index 45772cab..6cb116b6 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.conv.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.conv.html @@ -8,7 +8,7 @@ - conv — PyProcar 6.1.5 documentation + conv — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.convergence.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.convergence.html index cc645f4c..4d67298b 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.convergence.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.convergence.html @@ -8,7 +8,7 @@ - convergence — PyProcar 6.1.5 documentation + convergence — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.convergence_electronic.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.convergence_electronic.html index a94ddbe8..b3ff80e6 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.convergence_electronic.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.convergence_electronic.html @@ -8,7 +8,7 @@ - convergence_electronic — PyProcar 6.1.5 documentation + convergence_electronic — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.convergence_ionic.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.convergence_ionic.html index 5e758980..65543bdc 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.convergence_ionic.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.convergence_ionic.html @@ -8,7 +8,7 @@ - convergence_ionic — PyProcar 6.1.5 documentation + convergence_ionic — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.dos.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.dos.html index a57c1f26..3178af1d 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.dos.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.dos.html @@ -8,7 +8,7 @@ - dos — PyProcar 6.1.5 documentation + dos — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.dos_projected.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.dos_projected.html index ecd48d4d..23a17df4 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.dos_projected.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.dos_projected.html @@ -8,7 +8,7 @@ - dos_projected — PyProcar 6.1.5 documentation + dos_projected — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.dos_to_dict.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.dos_to_dict.html index 3345b4b5..743a7d14 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.dos_to_dict.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.dos_to_dict.html @@ -8,7 +8,7 @@ - dos_to_dict — PyProcar 6.1.5 documentation + dos_to_dict — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.dos_total.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.dos_total.html index e091f2a2..a646ce89 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.dos_total.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.dos_total.html @@ -8,7 +8,7 @@ - dos_total — PyProcar 6.1.5 documentation + dos_total — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.energies.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.energies.html index 2f4bbcad..1ef15f88 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.energies.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.energies.html @@ -8,7 +8,7 @@ - energies — PyProcar 6.1.5 documentation + energies — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.energy.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.energy.html index d3ea66be..aab16b71 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.energy.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.energy.html @@ -8,7 +8,7 @@ - energy — PyProcar 6.1.5 documentation + energy — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.fermi.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.fermi.html index 399c8a94..33169671 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.fermi.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.fermi.html @@ -8,7 +8,7 @@ - fermi — PyProcar 6.1.5 documentation + fermi — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.final_structure.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.final_structure.html index 423e103f..2bb6aa38 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.final_structure.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.final_structure.html @@ -8,7 +8,7 @@ - final_structure — PyProcar 6.1.5 documentation + final_structure — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.forces.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.forces.html index 1273dbd8..9f722138 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.forces.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.forces.html @@ -8,7 +8,7 @@ - forces — PyProcar 6.1.5 documentation + forces — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_general.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_general.html index 041369c2..dee325dc 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_general.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_general.html @@ -8,7 +8,7 @@ - get_general — PyProcar 6.1.5 documentation + get_general — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_params.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_params.html index dec13976..4205f46c 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_params.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_params.html @@ -8,7 +8,7 @@ - get_params — PyProcar 6.1.5 documentation + get_params — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_scstep.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_scstep.html index d136c977..b5f3e77e 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_scstep.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_scstep.html @@ -8,7 +8,7 @@ - get_scstep — PyProcar 6.1.5 documentation + get_scstep — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_set.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_set.html index 046cc682..c5c54cfe 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_set.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_set.html @@ -8,7 +8,7 @@ - get_set — PyProcar 6.1.5 documentation + get_set — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_structure.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_structure.html index 4b539342..4c654d85 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_structure.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_structure.html @@ -8,7 +8,7 @@ - get_structure — PyProcar 6.1.5 documentation + get_structure — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_varray.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_varray.html index c6a7939f..db27fc78 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_varray.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_varray.html @@ -8,7 +8,7 @@ - get_varray — PyProcar 6.1.5 documentation + get_varray — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.html index 5dccc305..b3a92f64 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.html @@ -8,7 +8,7 @@ - pyprocar.io.vasp.VaspXML — PyProcar 6.1.5 documentation + pyprocar.io.vasp.VaspXML — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.incar.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.incar.html index 7d1484e4..89d85572 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.incar.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.incar.html @@ -8,7 +8,7 @@ - incar — PyProcar 6.1.5 documentation + incar — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.initial_structure.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.initial_structure.html index 961bbde1..d1c5ee3f 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.initial_structure.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.initial_structure.html @@ -8,7 +8,7 @@ - initial_structure — PyProcar 6.1.5 documentation + initial_structure — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.is_finished.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.is_finished.html index da562a76..591b0f06 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.is_finished.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.is_finished.html @@ -8,7 +8,7 @@ - is_finished — PyProcar 6.1.5 documentation + is_finished — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.iteration_data.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.iteration_data.html index 258619a4..43bb416c 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.iteration_data.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.iteration_data.html @@ -8,7 +8,7 @@ - iteration_data — PyProcar 6.1.5 documentation + iteration_data — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.kpoints.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.kpoints.html index 27f7b617..68c4419a 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.kpoints.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.kpoints.html @@ -8,7 +8,7 @@ - kpoints — PyProcar 6.1.5 documentation + kpoints — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.kpoints_list.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.kpoints_list.html index f5338b53..d5d162d8 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.kpoints_list.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.kpoints_list.html @@ -8,7 +8,7 @@ - kpoints_list — PyProcar 6.1.5 documentation + kpoints_list — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.last_energy.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.last_energy.html index f37b78b4..b6b53f4a 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.last_energy.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.last_energy.html @@ -8,7 +8,7 @@ - last_energy — PyProcar 6.1.5 documentation + last_energy — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.parse_vasprun.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.parse_vasprun.html index 6dab0703..f18c8f38 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.parse_vasprun.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.parse_vasprun.html @@ -8,7 +8,7 @@ - parse_vasprun — PyProcar 6.1.5 documentation + parse_vasprun — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.potcar_info.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.potcar_info.html index af7c5dc4..d97f7a0c 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.potcar_info.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.potcar_info.html @@ -8,7 +8,7 @@ - potcar_info — PyProcar 6.1.5 documentation + potcar_info — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.read.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.read.html index 59e0e464..60e9b8d1 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.read.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.read.html @@ -8,7 +8,7 @@ - read — PyProcar 6.1.5 documentation + read — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.species.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.species.html index 2e6d7318..56af9129 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.species.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.species.html @@ -8,7 +8,7 @@ - species — PyProcar 6.1.5 documentation + species — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.structure.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.structure.html index a4724fea..f910adee 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.structure.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.structure.html @@ -8,7 +8,7 @@ - structure — PyProcar 6.1.5 documentation + structure — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.structures.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.structures.html index 91d20fb7..dbca28f1 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.structures.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.structures.html @@ -8,7 +8,7 @@ - structures — PyProcar 6.1.5 documentation + structures — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.text_to_bool.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.text_to_bool.html index 6a75b477..92539884 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.text_to_bool.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.text_to_bool.html @@ -8,7 +8,7 @@ - text_to_bool — PyProcar 6.1.5 documentation + text_to_bool — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.vasp_parameters.html b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.vasp_parameters.html index 4a487b2c..bcfe3fb0 100644 --- a/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.vasp_parameters.html +++ b/docs/api/io/_autosummary/pyprocar.io.vasp.VaspXML.vasp_parameters.html @@ -8,7 +8,7 @@ - vasp_parameters — PyProcar 6.1.5 documentation + vasp_parameters — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/abinit.html b/docs/api/io/abinit.html index f115fc48..4446f923 100644 --- a/docs/api/io/abinit.html +++ b/docs/api/io/abinit.html @@ -8,7 +8,7 @@ - AbinitParser — PyProcar 6.1.5 documentation + AbinitParser — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/bxsf.html b/docs/api/io/bxsf.html index df5227fc..65cdf448 100644 --- a/docs/api/io/bxsf.html +++ b/docs/api/io/bxsf.html @@ -8,7 +8,7 @@ - BxsfParser — PyProcar 6.1.5 documentation + BxsfParser — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/index.html b/docs/api/io/index.html index fa97c182..156cec06 100644 --- a/docs/api/io/index.html +++ b/docs/api/io/index.html @@ -8,7 +8,7 @@ - IO API — PyProcar 6.1.5 documentation + IO API — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/lobster.html b/docs/api/io/lobster.html index 03464fdd..39ddc693 100644 --- a/docs/api/io/lobster.html +++ b/docs/api/io/lobster.html @@ -8,7 +8,7 @@ - LobsterParser — PyProcar 6.1.5 documentation + LobsterParser — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/qe.html b/docs/api/io/qe.html index 78ba2a06..1d09f8f9 100644 --- a/docs/api/io/qe.html +++ b/docs/api/io/qe.html @@ -8,7 +8,7 @@ - QEParser — PyProcar 6.1.5 documentation + QEParser — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/siesta.html b/docs/api/io/siesta.html index 80f7d43d..61bab655 100644 --- a/docs/api/io/siesta.html +++ b/docs/api/io/siesta.html @@ -8,7 +8,7 @@ - SiestaParser — PyProcar 6.1.5 documentation + SiestaParser — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/io/vasp.html b/docs/api/io/vasp.html index 018305bd..43390960 100644 --- a/docs/api/io/vasp.html +++ b/docs/api/io/vasp.html @@ -8,7 +8,7 @@ - VaspParser — PyProcar 6.1.5 documentation + VaspParser — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.__init__.html b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.__init__.html index 2dc4066d..425251bb 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.__init__.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.__init__.html @@ -8,7 +8,7 @@ - __init__ — PyProcar 6.1.5 documentation + __init__ — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.draw_fermi.html b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.draw_fermi.html index 3d2c3c38..8002af9a 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.draw_fermi.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.draw_fermi.html @@ -8,7 +8,7 @@ - draw_fermi — PyProcar 6.1.5 documentation + draw_fermi — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.grid.html b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.grid.html index d934eda4..f8ba7634 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.grid.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.grid.html @@ -8,7 +8,7 @@ - grid — PyProcar 6.1.5 documentation + grid — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.html b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.html index dacbf713..9a2b2486 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.html @@ -8,7 +8,7 @@ - pyprocar.plotter.DOSPlot — PyProcar 6.1.5 documentation + pyprocar.plotter.DOSPlot — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.legend.html b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.legend.html index 486f19d4..97089064 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.legend.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.legend.html @@ -8,7 +8,7 @@ - legend — PyProcar 6.1.5 documentation + legend — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_dos.html b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_dos.html index 48eee7c9..9c3aedad 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_dos.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_dos.html @@ -8,7 +8,7 @@ - plot_dos — PyProcar 6.1.5 documentation + plot_dos — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_parametric.html b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_parametric.html index 3cb851a7..3d7bfd12 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_parametric.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_parametric.html @@ -8,7 +8,7 @@ - plot_parametric — PyProcar 6.1.5 documentation + plot_parametric — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_parametric_line.html b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_parametric_line.html index 76494b54..637c9db8 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_parametric_line.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_parametric_line.html @@ -8,7 +8,7 @@ - plot_parametric_line — PyProcar 6.1.5 documentation + plot_parametric_line — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_stack.html b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_stack.html index 3c83b0c7..8dc3ec10 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_stack.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_stack.html @@ -8,7 +8,7 @@ - plot_stack — PyProcar 6.1.5 documentation + plot_stack — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_stack_orbitals.html b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_stack_orbitals.html index 1175e26a..76f4b822 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_stack_orbitals.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_stack_orbitals.html @@ -8,7 +8,7 @@ - plot_stack_orbitals — PyProcar 6.1.5 documentation + plot_stack_orbitals — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_stack_species.html b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_stack_species.html index 1c8b0451..fead18fc 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_stack_species.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_stack_species.html @@ -8,7 +8,7 @@ - plot_stack_species — PyProcar 6.1.5 documentation + plot_stack_species — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.save.html b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.save.html index 26dda99d..7d2e8223 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.save.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.save.html @@ -8,7 +8,7 @@ - save — PyProcar 6.1.5 documentation + save — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_xlabel.html b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_xlabel.html index 53aa5049..d15f5d6d 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_xlabel.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_xlabel.html @@ -8,7 +8,7 @@ - set_xlabel — PyProcar 6.1.5 documentation + set_xlabel — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_xlim.html b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_xlim.html index eff6cb89..acca252e 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_xlim.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_xlim.html @@ -8,7 +8,7 @@ - set_xlim — PyProcar 6.1.5 documentation + set_xlim — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_xticks.html b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_xticks.html index 9fd9b062..29130475 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_xticks.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_xticks.html @@ -8,7 +8,7 @@ - set_xticks — PyProcar 6.1.5 documentation + set_xticks — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_ylabel.html b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_ylabel.html index e8ec6ff5..6c71165e 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_ylabel.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_ylabel.html @@ -8,7 +8,7 @@ - set_ylabel — PyProcar 6.1.5 documentation + set_ylabel — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_ylim.html b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_ylim.html index ff273be7..4f58e57b 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_ylim.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_ylim.html @@ -8,7 +8,7 @@ - set_ylim — PyProcar 6.1.5 documentation + set_ylim — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_yticks.html b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_yticks.html index 5b4c6adc..da91dc13 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_yticks.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_yticks.html @@ -8,7 +8,7 @@ - set_yticks — PyProcar 6.1.5 documentation + set_yticks — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.show.html b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.show.html index 81cafaac..60c93fa5 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.show.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.show.html @@ -8,7 +8,7 @@ - show — PyProcar 6.1.5 documentation + show — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.update_config.html b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.update_config.html index 5ae85c3a..badbbbca 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.update_config.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.DOSPlot.update_config.html @@ -8,7 +8,7 @@ - update_config — PyProcar 6.1.5 documentation + update_config — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.__init__.html b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.__init__.html index 6d1042c8..5bb5c87c 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.__init__.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.__init__.html @@ -8,7 +8,7 @@ - __init__ — PyProcar 6.1.5 documentation + __init__ — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • @@ -933,7 +935,7 @@

    __init__#

    -EBSPlot.__init__(ebs: ElectronicBandStructure, kpath: KPath | None = None, ax: Axes | None = None, spins: List[int] | None = None, **kwargs)[source]#
    +EBSPlot.__init__(ebs: ElectronicBandStructure, kpath: KPath | None = None, ax: Axes | None = None, spins: List[int] | None = None, kdirect: bool = True, **kwargs)[source]#
    diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.draw_fermi.html b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.draw_fermi.html index dc6fb711..83176dd1 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.draw_fermi.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.draw_fermi.html @@ -8,7 +8,7 @@ - draw_fermi — PyProcar 6.1.5 documentation + draw_fermi — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.grid.html b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.grid.html index 20978983..2899318f 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.grid.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.grid.html @@ -8,7 +8,7 @@ - grid — PyProcar 6.1.5 documentation + grid — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.html b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.html index 1db54742..d16f8de8 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.html @@ -8,7 +8,7 @@ - pyprocar.plotter.EBSPlot — PyProcar 6.1.5 documentation + pyprocar.plotter.EBSPlot — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • @@ -933,7 +935,7 @@

    pyprocar.plotter.EBSPlot#

    -class pyprocar.plotter.EBSPlot(ebs: ElectronicBandStructure, kpath: KPath | None = None, ax: Axes | None = None, spins: List[int] | None = None, **kwargs)[source]#
    +class pyprocar.plotter.EBSPlot(ebs: ElectronicBandStructure, kpath: KPath | None = None, ax: Axes | None = None, spins: List[int] | None = None, kdirect: bool = True, **kwargs)[source]#

    A class to plot an electronic band structure.

    Parameters:
    @@ -953,7 +955,7 @@

    pyprocar.plotter.EBSPlotMethods

    - + @@ -983,31 +985,34 @@

    pyprocar.plotter.EBSPlot

    - + + + + - + - + - + - + - + - + - + - + diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.legend.html b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.legend.html index 23e7c3d7..0ca4f0c0 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.legend.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.legend.html @@ -8,7 +8,7 @@ - legend — PyProcar 6.1.5 documentation + legend — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.plot_atomic_levels.html b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.plot_atomic_levels.html index 9ec87668..e3ec6dc0 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.plot_atomic_levels.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.plot_atomic_levels.html @@ -8,7 +8,7 @@ - plot_atomic_levels — PyProcar 6.1.5 documentation + plot_atomic_levels — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • @@ -933,7 +935,7 @@

    plot_atomic_levels#

    -EBSPlot.plot_atomic_levels(spins: List[int] | None = None, width_mask: ndarray | None = None, color_mask: ndarray | None = None, width_weights: ndarray | None = None, color_weights: ndarray | None = None)[source]#
    +EBSPlot.plot_atomic_levels(spins: List[int] | None = None, width_mask: ndarray | None = None, color_mask: ndarray | None = None, width_weights: ndarray | None = None, color_weights: ndarray | None = None, elimit: List[float] | None = None)[source]#

    A method to plot a scatter plot

    Parameters:
    @@ -943,6 +945,7 @@

    plot_atomic_levels - plot_bands — PyProcar 6.1.5 documentation + plot_bands — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.plot_parameteric.html b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.plot_parameteric.html index 2bf4cb4b..a731b471 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.plot_parameteric.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.plot_parameteric.html @@ -8,7 +8,7 @@ - plot_parameteric — PyProcar 6.1.5 documentation + plot_parameteric — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • @@ -933,7 +935,7 @@

    plot_parameteric#

    -EBSPlot.plot_parameteric(spins: List[int] | None = None, width_mask: ndarray | None = None, color_mask: ndarray | None = None, width_weights: ndarray | None = None, color_weights: ndarray | None = None)[source]#
    +EBSPlot.plot_parameteric(spins: List[int] | None = None, width_mask: ndarray | None = None, color_mask: ndarray | None = None, width_weights: ndarray | None = None, color_weights: ndarray | None = None, elimit: List[float] | None = None)[source]#

    A method to plot a scatter plot

    Parameters:
    @@ -943,6 +945,7 @@

    plot_parameteric - plot_parameteric_overlay — PyProcar 6.1.5 documentation + plot_parameteric_overlay — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.plot_scatter.html b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.plot_scatter.html index 8ea00c48..99a00b16 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.plot_scatter.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.plot_scatter.html @@ -8,7 +8,7 @@ - plot_scatter — PyProcar 6.1.5 documentation + plot_scatter — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.save.html b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.save.html index 7b18ef60..4284a645 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.save.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.save.html @@ -8,7 +8,7 @@ - save — PyProcar 6.1.5 documentation + save — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -49,7 +49,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • @@ -965,11 +967,11 @@

    save#

    next

    -

    set_title

    +

    set_colorbar_title

    diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_colorbar_title.html b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_colorbar_title.html new file mode 100644 index 00000000..ccf02ce4 --- /dev/null +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_colorbar_title.html @@ -0,0 +1,1060 @@ + + + + + + + + + + + set_colorbar_title — PyProcar 6.1.7 documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    + + + + Ctrl+K +
    +
    + + + +
    +
    + +
    + + + + + + + + + + + + + +
    + +
    + + +
    +
    + +
    +
    + +
    + +
    + + + + + + +
    + +
    + + +
    +
    + + + + + +
    + +
    +

    set_colorbar_title#

    +
    +
    +EBSPlot.set_colorbar_title(title: str | None = None)[source]#
    +

    A method to set the title of the color bar

    +
    +
    Parameters:
    +

    title (str, optional) – String for the title, by default “Atomic Orbital Projections”

    +
    +
    +
    + +
    + + +
    + + + + + +
    + + + +
    + + +
    +
    + +
    + +
    +
    +
    + + + + + +
    + + +
    + + \ No newline at end of file diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_title.html b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_title.html index e9cd275f..2afc555e 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_title.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_title.html @@ -8,7 +8,7 @@ - set_title — PyProcar 6.1.5 documentation + set_title — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -50,7 +50,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • @@ -956,12 +958,12 @@

    set_title @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_xlim.html b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_xlim.html index 6a88c782..34bfa463 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_xlim.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_xlim.html @@ -8,7 +8,7 @@ - set_xlim — PyProcar 6.1.5 documentation + set_xlim — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_xticks.html b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_xticks.html index 759ac11c..958c4634 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_xticks.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_xticks.html @@ -8,7 +8,7 @@ - set_xticks — PyProcar 6.1.5 documentation + set_xticks — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_ylabel.html b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_ylabel.html index b2f77b0d..47991c62 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_ylabel.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_ylabel.html @@ -8,7 +8,7 @@ - set_ylabel — PyProcar 6.1.5 documentation + set_ylabel — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_ylim.html b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_ylim.html index bfb0b838..8cb2fa11 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_ylim.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_ylim.html @@ -8,7 +8,7 @@ - set_ylim — PyProcar 6.1.5 documentation + set_ylim — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_yticks.html b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_yticks.html index 357177c1..8979a09f 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_yticks.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_yticks.html @@ -8,7 +8,7 @@ - set_yticks — PyProcar 6.1.5 documentation + set_yticks — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.show.html b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.show.html index 457012d9..dd1c3934 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.show.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.show.html @@ -8,7 +8,7 @@ - show — PyProcar 6.1.5 documentation + show — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.update_config.html b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.update_config.html index 774251e9..0ded3231 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.update_config.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.EBSPlot.update_config.html @@ -8,7 +8,7 @@ - update_config — PyProcar 6.1.5 documentation + update_config — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.__init__.html b/docs/api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.__init__.html index 627426d6..ae8b9f73 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.__init__.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.__init__.html @@ -8,7 +8,7 @@ - __init__ — PyProcar 6.1.5 documentation + __init__ — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.atomicPlot.html b/docs/api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.atomicPlot.html index 162f46ad..36212add 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.atomicPlot.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.atomicPlot.html @@ -8,7 +8,7 @@ - atomicPlot — PyProcar 6.1.5 documentation + atomicPlot — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.html b/docs/api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.html index b0984142..40cba747 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.html @@ -8,7 +8,7 @@ - pyprocar.plotter.ProcarPlot — PyProcar 6.1.5 documentation + pyprocar.plotter.ProcarPlot — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.parametricPlot.html b/docs/api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.parametricPlot.html index d3ea2c63..e7668d1e 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.parametricPlot.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.parametricPlot.html @@ -8,7 +8,7 @@ - parametricPlot — PyProcar 6.1.5 documentation + parametricPlot — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.plotBands.html b/docs/api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.plotBands.html index b10aa3a0..05a4b2dc 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.plotBands.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.plotBands.html @@ -8,7 +8,7 @@ - plotBands — PyProcar 6.1.5 documentation + plotBands — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.scatterPlot.html b/docs/api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.scatterPlot.html index 664f2347..8b068efb 100644 --- a/docs/api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.scatterPlot.html +++ b/docs/api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.scatterPlot.html @@ -8,7 +8,7 @@ - scatterPlot — PyProcar 6.1.5 documentation + scatterPlot — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/bandsplot.html b/docs/api/plotter/bandsplot.html index 69b361df..b1f4bede 100644 --- a/docs/api/plotter/bandsplot.html +++ b/docs/api/plotter/bandsplot.html @@ -8,7 +8,7 @@ - EBSPlot — PyProcar 6.1.5 documentation + EBSPlot — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • @@ -929,7 +931,7 @@

    EBSPlotpyprocar.plotter.EBSPlot is used to plot the Electronic Band Structutue

    EBSPlot.__init__(ebs[, kpath, ax, spins])

    EBSPlot.__init__(ebs[, kpath, ax, spins, ...])

    EBSPlot.draw_fermi([fermi_level])

    EBSPlot.save([filename])

    A method to save the plot

    EBSPlot.set_title([title])

    EBSPlot.set_colorbar_title([title])

    A method to set the title of the color bar

    EBSPlot.set_title([title])

    A method to set the title

    EBSPlot.set_xlabel([label])

    EBSPlot.set_xlabel([label])

    A method to set the x label

    EBSPlot.set_xlim([interval])

    EBSPlot.set_xlim([interval])

    A method to set the x limit

    EBSPlot.set_xticks([tick_positions, ...])

    EBSPlot.set_xticks([tick_positions, ...])

    A method to set the x ticks

    EBSPlot.set_ylabel([label])

    EBSPlot.set_ylabel([label])

    A method to set the y label

    EBSPlot.set_ylim([interval])

    EBSPlot.set_ylim([interval])

    A method to set the y limit

    EBSPlot.set_yticks([major, minor, interval])

    EBSPlot.set_yticks([major, minor, interval])

    A method to set the y ticks

    EBSPlot.show()

    EBSPlot.show()

    A method to show the plot

    EBSPlot.update_config(config_dict)

    EBSPlot.update_config(config_dict)

    - + diff --git a/docs/api/plotter/dosplot.html b/docs/api/plotter/dosplot.html index f9bbe6ac..1b0abd79 100644 --- a/docs/api/plotter/dosplot.html +++ b/docs/api/plotter/dosplot.html @@ -8,7 +8,7 @@ - DosPlot — PyProcar 6.1.5 documentation + DosPlot — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/index.html b/docs/api/plotter/index.html index 0e0e84cf..31181dbd 100644 --- a/docs/api/plotter/index.html +++ b/docs/api/plotter/index.html @@ -8,7 +8,7 @@ - Plotter API — PyProcar 6.1.5 documentation + Plotter API — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/plotter/procarplot.html b/docs/api/plotter/procarplot.html index b39043f6..944fd938 100644 --- a/docs/api/plotter/procarplot.html +++ b/docs/api/plotter/procarplot.html @@ -8,7 +8,7 @@ - ProcarPlot — PyProcar 6.1.5 documentation + ProcarPlot — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.__init__.html b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.__init__.html index 70287c09..30d5ba74 100644 --- a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.__init__.html +++ b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.__init__.html @@ -8,7 +8,7 @@ - __init__ — PyProcar 6.1.5 documentation + __init__ — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.add.html b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.add.html index a4d675bd..720f0299 100644 --- a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.add.html +++ b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.add.html @@ -8,7 +8,7 @@ - add — PyProcar 6.1.5 documentation + add — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.html b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.html index d9c5f736..82e567e1 100644 --- a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.html +++ b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.html @@ -8,7 +8,7 @@ - pyprocar.pyposcar.Poscar — PyProcar 6.1.5 documentation + pyprocar.pyposcar.Poscar — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.load_from_data.html b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.load_from_data.html index 761e96b9..2eb0e59a 100644 --- a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.load_from_data.html +++ b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.load_from_data.html @@ -8,7 +8,7 @@ - load_from_data — PyProcar 6.1.5 documentation + load_from_data — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.parse.html b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.parse.html index ab6f1027..e06041e7 100644 --- a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.parse.html +++ b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.parse.html @@ -8,7 +8,7 @@ - parse — PyProcar 6.1.5 documentation + parse — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.remove.html b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.remove.html index 3fd521c4..4a4949ab 100644 --- a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.remove.html +++ b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.remove.html @@ -8,7 +8,7 @@ - remove — PyProcar 6.1.5 documentation + remove — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.sort.html b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.sort.html index 62bdc959..a30e8289 100644 --- a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.sort.html +++ b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.sort.html @@ -8,7 +8,7 @@ - sort — PyProcar 6.1.5 documentation + sort — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.write.html b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.write.html index 763d4c1c..275094b5 100644 --- a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.write.html +++ b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.write.html @@ -8,7 +8,7 @@ - write — PyProcar 6.1.5 documentation + write — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.xyz.html b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.xyz.html index e2c85899..c76ae124 100644 --- a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.xyz.html +++ b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.xyz.html @@ -8,7 +8,7 @@ - xyz — PyProcar 6.1.5 documentation + xyz — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscarDiff.html b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscarDiff.html index 812f915f..0f37c22a 100644 --- a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscarDiff.html +++ b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscarDiff.html @@ -8,7 +8,7 @@ - poscarDiff — PyProcar 6.1.5 documentation + poscarDiff — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -111,7 +111,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -429,6 +429,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -713,6 +714,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.__init__.html b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.__init__.html index 47cb563b..8aa7425e 100644 --- a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.__init__.html +++ b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.__init__.html @@ -8,7 +8,7 @@ - __init__ — PyProcar 6.1.5 documentation + __init__ — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.add.html b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.add.html index 7b12a648..866d0330 100644 --- a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.add.html +++ b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.add.html @@ -8,7 +8,7 @@ - add — PyProcar 6.1.5 documentation + add — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.change_elements.html b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.change_elements.html index 348ca627..452bb542 100644 --- a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.change_elements.html +++ b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.change_elements.html @@ -8,7 +8,7 @@ - change_elements — PyProcar 6.1.5 documentation + change_elements — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.html b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.html index cf5612c8..ec3a33ed 100644 --- a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.html +++ b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.html @@ -8,7 +8,7 @@ - pyprocar.pyposcar.poscar_modify — PyProcar 6.1.5 documentation + pyprocar.pyposcar.poscar_modify — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.pos_multiply.html b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.pos_multiply.html index 6cfd4dfd..42a66029 100644 --- a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.pos_multiply.html +++ b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.pos_multiply.html @@ -8,7 +8,7 @@ - pos_multiply — PyProcar 6.1.5 documentation + pos_multiply — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.pos_sum.html b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.pos_sum.html index 261388b2..f297cac7 100644 --- a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.pos_sum.html +++ b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.pos_sum.html @@ -8,7 +8,7 @@ - pos_sum — PyProcar 6.1.5 documentation + pos_sum — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.remove.html b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.remove.html index 39d78580..78c0aa18 100644 --- a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.remove.html +++ b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.remove.html @@ -8,7 +8,7 @@ - remove — PyProcar 6.1.5 documentation + remove — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.scale_lattice.html b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.scale_lattice.html index 02a156d1..7c7824e0 100644 --- a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.scale_lattice.html +++ b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.scale_lattice.html @@ -8,7 +8,7 @@ - scale_lattice — PyProcar 6.1.5 documentation + scale_lattice — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.shift.html b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.shift.html index 4699ab5d..03ec0a5e 100644 --- a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.shift.html +++ b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.shift.html @@ -8,7 +8,7 @@ - shift — PyProcar 6.1.5 documentation + shift — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.write.html b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.write.html index 0aff03bd..9382f2fd 100644 --- a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.write.html +++ b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.write.html @@ -8,7 +8,7 @@ - write — PyProcar 6.1.5 documentation + write — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_supercell.__init__.html b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_supercell.__init__.html index 95afe62a..beb57cc0 100644 --- a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_supercell.__init__.html +++ b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_supercell.__init__.html @@ -8,7 +8,7 @@ - __init__ — PyProcar 6.1.5 documentation + __init__ — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_supercell.html b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_supercell.html index e32df11e..f56cc6e3 100644 --- a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_supercell.html +++ b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_supercell.html @@ -8,7 +8,7 @@ - pyprocar.pyposcar.poscar_supercell — PyProcar 6.1.5 documentation + pyprocar.pyposcar.poscar_supercell — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_supercell.supercell.html b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_supercell.supercell.html index 612e9038..5b389308 100644 --- a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_supercell.supercell.html +++ b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_supercell.supercell.html @@ -8,7 +8,7 @@ - supercell — PyProcar 6.1.5 documentation + supercell — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_supercell.write.html b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_supercell.write.html index 708c54b7..403891aa 100644 --- a/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_supercell.write.html +++ b/docs/api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_supercell.write.html @@ -8,7 +8,7 @@ - write — PyProcar 6.1.5 documentation + write — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/pyposcar/index.html b/docs/api/pyposcar/index.html index ffa7f400..8e74d667 100644 --- a/docs/api/pyposcar/index.html +++ b/docs/api/pyposcar/index.html @@ -8,7 +8,7 @@ - PyPoscar API — PyProcar 6.1.5 documentation + PyPoscar API — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/pyposcar/poscar.html b/docs/api/pyposcar/poscar.html index d12dc30b..c5981410 100644 --- a/docs/api/pyposcar/poscar.html +++ b/docs/api/pyposcar/poscar.html @@ -8,7 +8,7 @@ - Poscar — PyProcar 6.1.5 documentation + Poscar — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/pyposcar/poscarutils.html b/docs/api/pyposcar/poscarutils.html index 1b8213f2..15a19630 100644 --- a/docs/api/pyposcar/poscarutils.html +++ b/docs/api/pyposcar/poscarutils.html @@ -8,7 +8,7 @@ - poscarUtils — PyProcar 6.1.5 documentation + poscarUtils — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/scripts/_autosummary/pyprocar.scripts.FermiHandler.__init__.html b/docs/api/scripts/_autosummary/pyprocar.scripts.FermiHandler.__init__.html index 4cdf3064..56a3054a 100644 --- a/docs/api/scripts/_autosummary/pyprocar.scripts.FermiHandler.__init__.html +++ b/docs/api/scripts/_autosummary/pyprocar.scripts.FermiHandler.__init__.html @@ -8,7 +8,7 @@ - __init__ — PyProcar 6.1.5 documentation + __init__ — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/scripts/_autosummary/pyprocar.scripts.FermiHandler.create_isovalue_gif.html b/docs/api/scripts/_autosummary/pyprocar.scripts.FermiHandler.create_isovalue_gif.html index dec6b9f6..0fc12fed 100644 --- a/docs/api/scripts/_autosummary/pyprocar.scripts.FermiHandler.create_isovalue_gif.html +++ b/docs/api/scripts/_autosummary/pyprocar.scripts.FermiHandler.create_isovalue_gif.html @@ -8,7 +8,7 @@ - create_isovalue_gif — PyProcar 6.1.5 documentation + create_isovalue_gif — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/scripts/_autosummary/pyprocar.scripts.FermiHandler.html b/docs/api/scripts/_autosummary/pyprocar.scripts.FermiHandler.html index 2c2ae6f7..688d3054 100644 --- a/docs/api/scripts/_autosummary/pyprocar.scripts.FermiHandler.html +++ b/docs/api/scripts/_autosummary/pyprocar.scripts.FermiHandler.html @@ -8,7 +8,7 @@ - pyprocar.scripts.FermiHandler — PyProcar 6.1.5 documentation + pyprocar.scripts.FermiHandler — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/scripts/_autosummary/pyprocar.scripts.FermiHandler.plot_fermi_cross_section.html b/docs/api/scripts/_autosummary/pyprocar.scripts.FermiHandler.plot_fermi_cross_section.html index 17f6f7b6..d7b2697e 100644 --- a/docs/api/scripts/_autosummary/pyprocar.scripts.FermiHandler.plot_fermi_cross_section.html +++ b/docs/api/scripts/_autosummary/pyprocar.scripts.FermiHandler.plot_fermi_cross_section.html @@ -8,7 +8,7 @@ - plot_fermi_cross_section — PyProcar 6.1.5 documentation + plot_fermi_cross_section — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/scripts/_autosummary/pyprocar.scripts.FermiHandler.plot_fermi_cross_section_box_widget.html b/docs/api/scripts/_autosummary/pyprocar.scripts.FermiHandler.plot_fermi_cross_section_box_widget.html index 4f4092f5..1a8bb452 100644 --- a/docs/api/scripts/_autosummary/pyprocar.scripts.FermiHandler.plot_fermi_cross_section_box_widget.html +++ b/docs/api/scripts/_autosummary/pyprocar.scripts.FermiHandler.plot_fermi_cross_section_box_widget.html @@ -8,7 +8,7 @@ - plot_fermi_cross_section_box_widget — PyProcar 6.1.5 documentation + plot_fermi_cross_section_box_widget — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/scripts/_autosummary/pyprocar.scripts.FermiHandler.plot_fermi_isoslider.html b/docs/api/scripts/_autosummary/pyprocar.scripts.FermiHandler.plot_fermi_isoslider.html index 34e70acd..5ea6ab8e 100644 --- a/docs/api/scripts/_autosummary/pyprocar.scripts.FermiHandler.plot_fermi_isoslider.html +++ b/docs/api/scripts/_autosummary/pyprocar.scripts.FermiHandler.plot_fermi_isoslider.html @@ -8,7 +8,7 @@ - plot_fermi_isoslider — PyProcar 6.1.5 documentation + plot_fermi_isoslider — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/scripts/_autosummary/pyprocar.scripts.FermiHandler.plot_fermi_surface.html b/docs/api/scripts/_autosummary/pyprocar.scripts.FermiHandler.plot_fermi_surface.html index d599e0c2..2b26c41c 100644 --- a/docs/api/scripts/_autosummary/pyprocar.scripts.FermiHandler.plot_fermi_surface.html +++ b/docs/api/scripts/_autosummary/pyprocar.scripts.FermiHandler.plot_fermi_surface.html @@ -8,7 +8,7 @@ - plot_fermi_surface — PyProcar 6.1.5 documentation + plot_fermi_surface — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/scripts/_autosummary/pyprocar.scripts.FermiHandler.print_default_settings.html b/docs/api/scripts/_autosummary/pyprocar.scripts.FermiHandler.print_default_settings.html index e1dd3b9d..55041df1 100644 --- a/docs/api/scripts/_autosummary/pyprocar.scripts.FermiHandler.print_default_settings.html +++ b/docs/api/scripts/_autosummary/pyprocar.scripts.FermiHandler.print_default_settings.html @@ -8,7 +8,7 @@ - print_default_settings — PyProcar 6.1.5 documentation + print_default_settings — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/scripts/_autosummary/pyprocar.scripts.bandgap.html b/docs/api/scripts/_autosummary/pyprocar.scripts.bandgap.html index 9c1eb8b1..892088d5 100644 --- a/docs/api/scripts/_autosummary/pyprocar.scripts.bandgap.html +++ b/docs/api/scripts/_autosummary/pyprocar.scripts.bandgap.html @@ -8,7 +8,7 @@ - bandgap — PyProcar 6.1.5 documentation + bandgap — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/scripts/_autosummary/pyprocar.scripts.bandsdosplot.html b/docs/api/scripts/_autosummary/pyprocar.scripts.bandsdosplot.html index 6da161d3..dd780e6b 100644 --- a/docs/api/scripts/_autosummary/pyprocar.scripts.bandsdosplot.html +++ b/docs/api/scripts/_autosummary/pyprocar.scripts.bandsdosplot.html @@ -8,7 +8,7 @@ - bandsdosplot — PyProcar 6.1.5 documentation + bandsdosplot — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • @@ -933,7 +935,7 @@

    bandsdosplot#

    -pyprocar.scripts.bandsdosplot(bands_settings: dict = {'atoms': {}, 'ax': None, 'code': 'plain', 'dirname': None, 'elimit': True, 'fermi': 'cubic', 'interpolation_factor': None, 'interpolation_type': None, 'items': 1, 'knames': None, 'kticks': None, 'mode': None, 'orbitals': None, 'projection_mask': None, 'show': False, 'spins': None}, dos_settings: dict = {'atoms': None, 'ax': None, 'code': 'vasp', 'dirname': None, 'dos_limit': None, 'elimit': None, 'fermi': None, 'items': {}, 'mode': 'plain', 'orbitals': None, 'orientation': 'horizontal', 'print_plot_opts': False, 'projection_mask': None, 'savefig': None, 'show': True, 'spins': None}, dos_limit: List[int] | None = None, elimit: List[int] | None = None, k_limit=None, grid: bool = False, code: str = 'vasp', lobster: bool = False, savefig: str | None = None, title: str | None = None, title_fontsize: float = 16, discontinuities=None, draw_fermi: bool = True, plot_color_bar: bool = True, repair: bool = True, show: bool = True, **kwargs)[source]#
    +pyprocar.scripts.bandsdosplot(bands_settings: dict = {'atoms': {}, 'ax': None, 'code': 'plain', 'dirname': None, 'elimit': True, 'fermi': 'cubic', 'interpolation_factor': None, 'interpolation_type': None, 'items': 1, 'kdirect': None, 'knames': None, 'kticks': True, 'mode': None, 'orbitals': None, 'projection_mask': None, 'show': False, 'spins': None}, dos_settings: dict = {'atoms': None, 'ax': None, 'code': 'vasp', 'dirname': None, 'dos_limit': None, 'elimit': None, 'fermi': None, 'items': {}, 'mode': 'plain', 'orbitals': None, 'orientation': 'horizontal', 'print_plot_opts': False, 'projection_mask': None, 'savefig': None, 'show': True, 'spins': None}, dos_limit: List[int] | None = None, elimit: List[int] | None = None, k_limit=None, grid: bool = False, code: str = 'vasp', lobster: bool = False, savefig: str | None = None, title: str | None = None, title_fontsize: float = 16, discontinuities=None, draw_fermi: bool = True, plot_color_bar: bool = True, repair: bool = True, show: bool = True, **kwargs)[source]#

    A function to plot the band structure and the density of states in the same plot

    Parameters:
    diff --git a/docs/api/scripts/_autosummary/pyprocar.scripts.bandsplot.html b/docs/api/scripts/_autosummary/pyprocar.scripts.bandsplot.html index 936488bc..c16b0054 100644 --- a/docs/api/scripts/_autosummary/pyprocar.scripts.bandsplot.html +++ b/docs/api/scripts/_autosummary/pyprocar.scripts.bandsplot.html @@ -8,7 +8,7 @@ - bandsplot — PyProcar 6.1.5 documentation + bandsplot — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • @@ -933,7 +935,7 @@

    bandsplot#

    -pyprocar.scripts.bandsplot(code: str, dirname: str, mode: str = 'plain', spins: List[int] | None = None, atoms: List[int] | None = None, orbitals: List[int] | None = None, items: dict = {}, fermi: float | None = None, interpolation_factor: int = 1, interpolation_type: str = 'cubic', projection_mask: ndarray | None = None, kticks=None, knames=None, elimit: List[float] | None = None, ax: Axes | None = None, show: bool = True, savefig: str | None = None, print_plot_opts: bool = False, **kwargs)[source]#
    +pyprocar.scripts.bandsplot(code: str, dirname: str, mode: str = 'plain', spins: List[int] | None = None, atoms: List[int] | None = None, orbitals: List[int] | None = None, items: dict = {}, fermi: float | None = None, interpolation_factor: int = 1, interpolation_type: str = 'cubic', projection_mask: ndarray | None = None, kticks=None, knames=None, kdirect: bool = True, elimit: List[float] | None = None, ax: Axes | None = None, show: bool = True, savefig: str | None = None, print_plot_opts: bool = False, **kwargs)[source]#

    A function to plot the band structutre

    Parameters:
    diff --git a/docs/api/scripts/_autosummary/pyprocar.scripts.bandsplot_2d.html b/docs/api/scripts/_autosummary/pyprocar.scripts.bandsplot_2d.html index 0f49b779..4a6d4a4e 100644 --- a/docs/api/scripts/_autosummary/pyprocar.scripts.bandsplot_2d.html +++ b/docs/api/scripts/_autosummary/pyprocar.scripts.bandsplot_2d.html @@ -8,7 +8,7 @@ - bandsplot_2d — PyProcar 6.1.5 documentation + bandsplot_2d — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/scripts/_autosummary/pyprocar.scripts.cat.html b/docs/api/scripts/_autosummary/pyprocar.scripts.cat.html index db5b40b1..9e5d396f 100644 --- a/docs/api/scripts/_autosummary/pyprocar.scripts.cat.html +++ b/docs/api/scripts/_autosummary/pyprocar.scripts.cat.html @@ -8,7 +8,7 @@ - cat — PyProcar 6.1.5 documentation + cat — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/scripts/_autosummary/pyprocar.scripts.dosplot.html b/docs/api/scripts/_autosummary/pyprocar.scripts.dosplot.html index a0856141..23b78807 100644 --- a/docs/api/scripts/_autosummary/pyprocar.scripts.dosplot.html +++ b/docs/api/scripts/_autosummary/pyprocar.scripts.dosplot.html @@ -8,7 +8,7 @@ - dosplot — PyProcar 6.1.5 documentation + dosplot — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/scripts/_autosummary/pyprocar.scripts.fermi2D.html b/docs/api/scripts/_autosummary/pyprocar.scripts.fermi2D.html index 13d495ef..d1ff2874 100644 --- a/docs/api/scripts/_autosummary/pyprocar.scripts.fermi2D.html +++ b/docs/api/scripts/_autosummary/pyprocar.scripts.fermi2D.html @@ -8,7 +8,7 @@ - fermi2D — PyProcar 6.1.5 documentation + fermi2D — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/scripts/_autosummary/pyprocar.scripts.fermi3D.html b/docs/api/scripts/_autosummary/pyprocar.scripts.fermi3D.html index 738c5d41..b0470ba8 100644 --- a/docs/api/scripts/_autosummary/pyprocar.scripts.fermi3D.html +++ b/docs/api/scripts/_autosummary/pyprocar.scripts.fermi3D.html @@ -8,7 +8,7 @@ - fermi3D — PyProcar 6.1.5 documentation + fermi3D — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/scripts/_autosummary/pyprocar.scripts.generate2dkmesh.html b/docs/api/scripts/_autosummary/pyprocar.scripts.generate2dkmesh.html index 55eb602a..e94c74ed 100644 --- a/docs/api/scripts/_autosummary/pyprocar.scripts.generate2dkmesh.html +++ b/docs/api/scripts/_autosummary/pyprocar.scripts.generate2dkmesh.html @@ -8,7 +8,7 @@ - generate2dkmesh — PyProcar 6.1.5 documentation + generate2dkmesh — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/scripts/_autosummary/pyprocar.scripts.kpath.html b/docs/api/scripts/_autosummary/pyprocar.scripts.kpath.html index 98cf968e..12c7e2be 100644 --- a/docs/api/scripts/_autosummary/pyprocar.scripts.kpath.html +++ b/docs/api/scripts/_autosummary/pyprocar.scripts.kpath.html @@ -8,7 +8,7 @@ - kpath — PyProcar 6.1.5 documentation + kpath — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/scripts/_autosummary/pyprocar.scripts.repair.html b/docs/api/scripts/_autosummary/pyprocar.scripts.repair.html index 8114ad3c..3aadc78b 100644 --- a/docs/api/scripts/_autosummary/pyprocar.scripts.repair.html +++ b/docs/api/scripts/_autosummary/pyprocar.scripts.repair.html @@ -8,7 +8,7 @@ - repair — PyProcar 6.1.5 documentation + repair — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/scripts/bandgap.html b/docs/api/scripts/bandgap.html index db761877..80417b18 100644 --- a/docs/api/scripts/bandgap.html +++ b/docs/api/scripts/bandgap.html @@ -8,7 +8,7 @@ - bandgap — PyProcar 6.1.5 documentation + bandgap — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/scripts/bandsdosplot.html b/docs/api/scripts/bandsdosplot.html index 73222136..00ee8e45 100644 --- a/docs/api/scripts/bandsdosplot.html +++ b/docs/api/scripts/bandsdosplot.html @@ -8,7 +8,7 @@ - bandsdosplot — PyProcar 6.1.5 documentation + bandsdosplot — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/scripts/bandsplot.html b/docs/api/scripts/bandsplot.html index 4ee8a598..c479fce8 100644 --- a/docs/api/scripts/bandsplot.html +++ b/docs/api/scripts/bandsplot.html @@ -8,7 +8,7 @@ - bandsplot — PyProcar 6.1.5 documentation + bandsplot — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/scripts/bandsplot_2d.html b/docs/api/scripts/bandsplot_2d.html index 8ec11add..825e478f 100644 --- a/docs/api/scripts/bandsplot_2d.html +++ b/docs/api/scripts/bandsplot_2d.html @@ -8,7 +8,7 @@ - bandsplot_2d — PyProcar 6.1.5 documentation + bandsplot_2d — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/scripts/cat.html b/docs/api/scripts/cat.html index a6148e79..7d090b10 100644 --- a/docs/api/scripts/cat.html +++ b/docs/api/scripts/cat.html @@ -8,7 +8,7 @@ - cat — PyProcar 6.1.5 documentation + cat — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/scripts/dosplot.html b/docs/api/scripts/dosplot.html index 7361b8db..65e81f13 100644 --- a/docs/api/scripts/dosplot.html +++ b/docs/api/scripts/dosplot.html @@ -8,7 +8,7 @@ - dosplot — PyProcar 6.1.5 documentation + dosplot — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/scripts/fermi2d.html b/docs/api/scripts/fermi2d.html index 3e28618f..810e57bf 100644 --- a/docs/api/scripts/fermi2d.html +++ b/docs/api/scripts/fermi2d.html @@ -8,7 +8,7 @@ - fermi2D — PyProcar 6.1.5 documentation + fermi2D — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/scripts/fermi3d.html b/docs/api/scripts/fermi3d.html index fdf55600..83a7a386 100644 --- a/docs/api/scripts/fermi3d.html +++ b/docs/api/scripts/fermi3d.html @@ -8,7 +8,7 @@ - fermi3D — PyProcar 6.1.5 documentation + fermi3D — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/scripts/fermihandler.html b/docs/api/scripts/fermihandler.html index f99c4085..83f6460c 100644 --- a/docs/api/scripts/fermihandler.html +++ b/docs/api/scripts/fermihandler.html @@ -8,7 +8,7 @@ - FermiHandler — PyProcar 6.1.5 documentation + FermiHandler — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/scripts/generate2dkmesh.html b/docs/api/scripts/generate2dkmesh.html index 0b9b0bb0..726c414b 100644 --- a/docs/api/scripts/generate2dkmesh.html +++ b/docs/api/scripts/generate2dkmesh.html @@ -8,7 +8,7 @@ - generate2dkmesh — PyProcar 6.1.5 documentation + generate2dkmesh — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/scripts/index.html b/docs/api/scripts/index.html index ea5e0bb7..27974833 100644 --- a/docs/api/scripts/index.html +++ b/docs/api/scripts/index.html @@ -8,7 +8,7 @@ - Scripts API — PyProcar 6.1.5 documentation + Scripts API — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/scripts/kpath.html b/docs/api/scripts/kpath.html index 389db9b8..d02f8642 100644 --- a/docs/api/scripts/kpath.html +++ b/docs/api/scripts/kpath.html @@ -8,7 +8,7 @@ - kpath — PyProcar 6.1.5 documentation + kpath — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/api/scripts/repair.html b/docs/api/scripts/repair.html index 04e337a3..05b47e76 100644 --- a/docs/api/scripts/repair.html +++ b/docs/api/scripts/repair.html @@ -8,7 +8,7 @@ - reapir — PyProcar 6.1.5 documentation + reapir — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -430,6 +430,7 @@
  • ebs_ipr
  • ebs_ipr_atom
  • ebs_sum
  • +
  • fix_collinear_spin
  • ibz2fbz
  • interpolate_mesh_grid
  • mesh_to_array
  • @@ -714,6 +715,7 @@
  • plot_parameteric_overlay
  • plot_scatter
  • save
  • +
  • set_colorbar_title
  • set_title
  • set_xlabel
  • set_xlim
  • diff --git a/docs/dftprep/abinit.html b/docs/dftprep/abinit.html index 44c366de..f2b9dc14 100644 --- a/docs/dftprep/abinit.html +++ b/docs/dftprep/abinit.html @@ -8,7 +8,7 @@ - Abinit Perperation — PyProcar 6.1.5 documentation + Abinit Perperation — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -113,7 +113,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    diff --git a/docs/dftprep/dftb+.html b/docs/dftprep/dftb+.html index cbb6bfe0..7db8bf03 100644 --- a/docs/dftprep/dftb+.html +++ b/docs/dftprep/dftb+.html @@ -8,7 +8,7 @@ - DFTB+ Preparation — PyProcar 6.1.5 documentation + DFTB+ Preparation — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    diff --git a/docs/dftprep/elk.html b/docs/dftprep/elk.html index 3b46cf54..af95695e 100644 --- a/docs/dftprep/elk.html +++ b/docs/dftprep/elk.html @@ -8,7 +8,7 @@ - Elk Perperation — PyProcar 6.1.5 documentation + Elk Perperation — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -113,7 +113,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    diff --git a/docs/dftprep/index.html b/docs/dftprep/index.html index 61886900..de8f55eb 100644 --- a/docs/dftprep/index.html +++ b/docs/dftprep/index.html @@ -8,7 +8,7 @@ - DFT Prep — PyProcar 6.1.5 documentation + DFT Prep — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    diff --git a/docs/dftprep/lobster.html b/docs/dftprep/lobster.html index e05e77dc..b29a9265 100644 --- a/docs/dftprep/lobster.html +++ b/docs/dftprep/lobster.html @@ -8,7 +8,7 @@ - Lobster Perperation — PyProcar 6.1.5 documentation + Lobster Perperation — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    diff --git a/docs/dftprep/qe.html b/docs/dftprep/qe.html index d31b1cdc..8774bd84 100644 --- a/docs/dftprep/qe.html +++ b/docs/dftprep/qe.html @@ -8,7 +8,7 @@ - Quantum Espresso Preparation — PyProcar 6.1.5 documentation + Quantum Espresso Preparation — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -113,7 +113,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    diff --git a/docs/dftprep/siesta.html b/docs/dftprep/siesta.html index b5b70996..516a3cf2 100644 --- a/docs/dftprep/siesta.html +++ b/docs/dftprep/siesta.html @@ -8,7 +8,7 @@ - Siesta Perperation — PyProcar 6.1.5 documentation + Siesta Perperation — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    diff --git a/docs/dftprep/vasp.html b/docs/dftprep/vasp.html index fcb56e54..b097e720 100644 --- a/docs/dftprep/vasp.html +++ b/docs/dftprep/vasp.html @@ -8,7 +8,7 @@ - VASP Preparation — PyProcar 6.1.5 documentation + VASP Preparation — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -113,7 +113,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    diff --git a/docs/examples/00-band_structure/index.html b/docs/examples/00-band_structure/index.html index a84af770..7ca1bdd1 100644 --- a/docs/examples/00-band_structure/index.html +++ b/docs/examples/00-band_structure/index.html @@ -8,7 +8,7 @@ - Band Structure — PyProcar 6.1.5 documentation + Band Structure — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -396,6 +396,7 @@
  • Unfolding Band Structure
  • Plotting spin polarized band structures
  • Plotting band structure
  • +
  • Plotting 2D band structure
  • Plotting with Configurations in pyprocar
  • @@ -532,6 +533,9 @@

    Plotting band structure

    Plotting band structure
    +
    +

    Plotting 2D band structure

    +
    Plotting 2D band structure

    Plotting with Configurations in pyprocar

    Plotting with Configurations in pyprocar
    diff --git a/docs/examples/00-band_structure/plot_2d_bands.html b/docs/examples/00-band_structure/plot_2d_bands.html new file mode 100644 index 00000000..00c30d55 --- /dev/null +++ b/docs/examples/00-band_structure/plot_2d_bands.html @@ -0,0 +1,777 @@ + + + + + + + + + + + Plotting 2D band structure — PyProcar 6.1.7 documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    + + + + Ctrl+K +
    +
    + + + +
    +
    + +
    + + + + + + + + + + + + + +
    + +
    + + +
    +
    + +
    +
    + +
    + +
    + + + + +
    + +
    + + +
    +
    + + + + + +
    + + +
    +

    Plotting 2D band structure#

    +

    Plotting 2D band structure example.

    +

    First, specify the data directory where the band structure data is located.

    +
    +
    Downloading example#
    +
     data_dir = pyprocar.download_example(save_dir='',
    +                             material='graphene',
    +                             code='vasp',
    +                             spin_calc_type='non-spin-polarized',
    +                             calc_type='2d_bands')
    +
    +
    +
    +

    importing pyprocar and specifying local data_dir

    +
    import os
    +import pyprocar
    +
    +data_dir = f"{pyprocar.utils.ROOT}{os.sep}data{os.sep}examples{os.sep}graphene{os.sep}vasp{os.sep}non-spin-polarized{os.sep}2d_bands"
    +
    +
    +
    +

    Plain mode#

    +
    spins=[0]
    +handler = pyprocar.BandStructure2DHandler(code='vasp',dirname=data_dir,apply_symmetry=False)
    +handler.plot_band_structure(mode='plain',
    +                            add_fermi_plane=True,
    +                            bands=[3,4],
    +                            fermi_plane_size=4,
    +                            energy_lim=[-2.5,0.8],
    +                            extended_zone_directions=[[1,0,0],[0,1,0],[-1,0,0],[0,-1,0],[1,-1,0],[-1,1,0],[-1,-1,0],[[1,1,0]]],
    +                            spins=spins)
    +
    +
    +plot 2d bands
                    --------------------------------------------------------
    +                There are additional plot options that are defined in a configuration file.
    +                You can change these configurations by passing the keyword argument to the function
    +                To print a list of plot options set print_plot_opts=True
    +
    +                Here is a list modes : plain , parametric , spin_texture , overlay
    +                Here is a list of properties: fermi_speed , fermi_velocity , harmonic_effective_mass
    +                --------------------------------------------------------
    +
    +Bands used in the plotting:  [3, 4]
    +Z:\Research Projects\pyprocar\venv_docs\lib\site-packages\pyvista\core\utilities\points.py:52: UserWarning: Points is not a float type. This can cause issues when transforming or applying filters. Casting to ``np.float32``. Disable this by passing ``force_float=False``.
    +  warnings.warn(
    +
    +
    +
    +
    +

    Parametric mode#

    +
    atoms=[0,1]
    +orbitals=[1,2,3]
    +spins=[0]
    +handler = pyprocar.BandStructure2DHandler(code='vasp',dirname=data_dir,apply_symmetry=False)
    +handler.plot_band_structure(mode='parametric',
    +                           atoms=atoms,
    +                           orbitals=orbitals,
    +                           spins=spins)
    +
    +
    +plot 2d bands
                    --------------------------------------------------------
    +                There are additional plot options that are defined in a configuration file.
    +                You can change these configurations by passing the keyword argument to the function
    +                To print a list of plot options set print_plot_opts=True
    +
    +                Here is a list modes : plain , parametric , spin_texture , overlay
    +                Here is a list of properties: fermi_speed , fermi_velocity , harmonic_effective_mass
    +                --------------------------------------------------------
    +
    +Bands used in the plotting:  [3, 4]
    +
    +
    +
    +
    +

    Property Projection mode#

    +
    handler = pyprocar.BandStructure2DHandler(code='vasp',dirname=data_dir,apply_symmetry=False)
    +handler.plot_band_structure(mode='property_projection',
    +                           property_name='band_velocity',
    +                           bands=[3,4],
    +                           fermi_plane_size=4,
    +                           scalar_bar_position_x=0.3,
    +                           energy_lim=[-2.5,0.8],
    +                           scalar_bar_title=r'Band Velocity ($\frac{m}{s}$)',
    +                           add_fermi_plane=True,)
    +
    +
    +plot 2d bands
                    --------------------------------------------------------
    +                There are additional plot options that are defined in a configuration file.
    +                You can change these configurations by passing the keyword argument to the function
    +                To print a list of plot options set print_plot_opts=True
    +
    +                Here is a list modes : plain , parametric , spin_texture , overlay
    +                Here is a list of properties: fermi_speed , fermi_velocity , harmonic_effective_mass
    +                --------------------------------------------------------
    +
    +Bands used in the plotting:  [3, 4]
    +Z:\Research Projects\pyprocar\venv_docs\lib\site-packages\pyvista\core\utilities\points.py:52: UserWarning: Points is not a float type. This can cause issues when transforming or applying filters. Casting to ``np.float32``. Disable this by passing ``force_float=False``.
    +  warnings.warn(
    +
    +
    +
    +
    +

    Spin Texture mode#

    +
    data_dir =  os.path.join(pyprocar.utils.ROOT,'data','examples','BiSb_monolayer','vasp','non-colinear','fermi')
    +
    +
    +atoms=[0]
    +orbitals=[4,5,6,7,8]
    +handler = pyprocar.BandStructure2DHandler(code='vasp',dirname=data_dir,apply_symmetry=False)
    +handler.plot_band_structure(mode='spin_texture',
    +                           spin_texture=True,
    +                           atoms=atoms,
    +                           orbitals=orbitals,
    +                           add_fermi_plane=True,
    +                           fermi_plane_size=2,
    +                           energy_lim=[-2,2],
    +                           fermi_text_position=[0,0.5,0],
    +                           scalar_bar_position_x=0.3,
    +
    +                           clip_brillouin_zone_factor=1,
    +                           surface_clim=[-0.5,0.5])
    +
    +
    +plot 2d bands
                    --------------------------------------------------------
    +                There are additional plot options that are defined in a configuration file.
    +                You can change these configurations by passing the keyword argument to the function
    +                To print a list of plot options set print_plot_opts=True
    +
    +                Here is a list modes : plain , parametric , spin_texture , overlay
    +                Here is a list of properties: fermi_speed , fermi_velocity , harmonic_effective_mass
    +                --------------------------------------------------------
    +
    +Bands used in the plotting:  [16, 17, 18, 19, 20, 21]
    +
    +
    +

    Total running time of the script: ( 3 minutes 31.780 seconds)

    + +

    Gallery generated by Sphinx-Gallery

    +
    +
    + + +
    + + + + + +
    + + + + + + +
    +
    + +
    + +
    +
    +
    + + + + + +
    + + +
    + + \ No newline at end of file diff --git a/docs/examples/00-band_structure/plot_atomic_levels.html b/docs/examples/00-band_structure/plot_atomic_levels.html index 7d209f93..221db13d 100644 --- a/docs/examples/00-band_structure/plot_atomic_levels.html +++ b/docs/examples/00-band_structure/plot_atomic_levels.html @@ -8,7 +8,7 @@ - Plotting Atomic Levels — PyProcar 6.1.5 documentation + Plotting Atomic Levels — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -396,6 +396,7 @@
  • Unfolding Band Structure
  • Plotting spin polarized band structures
  • Plotting band structure
  • +
  • Plotting 2D band structure
  • Plotting with Configurations in pyprocar
  • @@ -568,9 +569,8 @@

    Plotting in Atomic ModePlotting in Atomic Mode -

    Total running time of the script: ( 0 minutes 1.900 seconds)

    +

    Total running time of the script: ( 0 minutes 1.468 seconds)

    -

    Total running time of the script: ( 0 minutes 24.654 seconds)

    +

    Total running time of the script: ( 0 minutes 24.965 seconds)

    pyprocar.plotter.EBSPlot(ebs[, kpath, ax, spins])

    pyprocar.plotter.EBSPlot(ebs[, kpath, ax, ...])

    A class to plot an electronic band structure.

    - - + + - - + + - - + + - - + + - - + + - + + + + + - - + + - - + + - - + + - - + + diff --git a/docs/examples/01-dos/index.html b/docs/examples/01-dos/index.html index 923171ef..e43fabc6 100644 --- a/docs/examples/01-dos/index.html +++ b/docs/examples/01-dos/index.html @@ -8,7 +8,7 @@ - Density of States — PyProcar 6.1.5 documentation + Density of States — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -396,6 +396,7 @@
  • Unfolding Band Structure
  • Plotting spin polarized band structures
  • Plotting band structure
  • +
  • Plotting 2D band structure
  • Plotting with Configurations in pyprocar
  • diff --git a/docs/examples/01-dos/plot_colinear_dos.html b/docs/examples/01-dos/plot_colinear_dos.html index be3be307..a2b2448e 100644 --- a/docs/examples/01-dos/plot_colinear_dos.html +++ b/docs/examples/01-dos/plot_colinear_dos.html @@ -8,7 +8,7 @@ - Plotting density of states — PyProcar 6.1.5 documentation + Plotting density of states — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -396,6 +396,7 @@
  • Unfolding Band Structure
  • Plotting spin polarized band structures
  • Plotting band structure
  • +
  • Plotting 2D band structure
  • Plotting with Configurations in pyprocar
  • @@ -685,7 +686,7 @@

    overlay modeTotal running time of the script: ( 0 minutes 27.759 seconds)

    +

    Total running time of the script: ( 0 minutes 29.245 seconds)

    Autobands plotting (plot_autobands.py)

    00:27.777

    Plotting 2D band structure (plot_2d_bands.py)

    03:31.780

    0.0 MB

    Plotting Inverse participation ratio (plot_ipr.py)

    00:24.654

    Autobands plotting (plot_autobands.py)

    00:26.997

    0.0 MB

    Unfolding Band Structure (plot_unfolding.py)

    00:23.498

    Plotting Inverse participation ratio (plot_ipr.py)

    00:24.965

    0.0 MB

    Plotting band structure (plot_colinear.py)

    00:03.390

    Unfolding Band Structure (plot_unfolding.py)

    00:23.457

    0.0 MB

    Plotting with Configurations in pyprocar (plot_bandsplot_configurations.py)

    00:02.895

    Plotting band structure (plot_colinear.py)

    00:03.591

    0.0 MB

    Plotting spin polarized band structures (plot_spin_polarized.py)

    00:02.706

    00:03.518

    0.0 MB

    Plotting with Configurations in pyprocar (plot_bandsplot_configurations.py)

    00:02.839

    0.0 MB

    Plotting non colinear band structures in VASP (plot_noncolinear_vasp.py)

    00:02.164

    Plotting non colinear band structures in VASP (plot_noncolinear_vasp.py)

    00:02.116

    0.0 MB

    Plotting Atomic Levels (plot_atomic_levels.py)

    00:01.900

    Comparing band structures (plot_compare_bands.py)

    00:01.747

    0.0 MB

    Plotting non colinear band structures in Quantum Espresso (plot_noncolinear_qe.py)

    00:01.621

    Plotting non colinear band structures in Quantum Espresso (plot_noncolinear_qe.py)

    00:01.651

    0.0 MB

    Comparing band structures (plot_compare_bands.py)

    00:00.515

    Plotting Atomic Levels (plot_atomic_levels.py)

    00:01.468

    0.0 MB

    - + - + - + - + - + diff --git a/docs/examples/02-bands_dos/index.html b/docs/examples/02-bands_dos/index.html index fb32da2b..5672950d 100644 --- a/docs/examples/02-bands_dos/index.html +++ b/docs/examples/02-bands_dos/index.html @@ -8,7 +8,7 @@ - Bands and Dos plot — PyProcar 6.1.5 documentation + Bands and Dos plot — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -396,6 +396,7 @@
  • Unfolding Band Structure
  • Plotting spin polarized band structures
  • Plotting band structure
  • +
  • Plotting 2D band structure
  • Plotting with Configurations in pyprocar
  • diff --git a/docs/examples/02-bands_dos/plot_bandsdosplot.html b/docs/examples/02-bands_dos/plot_bandsdosplot.html index c8ff6825..1f5269b0 100644 --- a/docs/examples/02-bands_dos/plot_bandsdosplot.html +++ b/docs/examples/02-bands_dos/plot_bandsdosplot.html @@ -8,7 +8,7 @@ - Plotting bandsdosplot — PyProcar 6.1.5 documentation + Plotting bandsdosplot — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -396,6 +396,7 @@
  • Unfolding Band Structure
  • Plotting spin polarized band structures
  • Plotting band structure
  • +
  • Plotting 2D band structure
  • Plotting with Configurations in pyprocar
  • @@ -562,7 +563,7 @@

    Plain modeTotal running time of the script: ( 0 minutes 0.401 seconds)

    +

    Total running time of the script: ( 0 minutes 0.509 seconds)

    Plotting density of states (plot_colinear_dos.py)

    00:27.759

    00:29.245

    0.0 MB

    Plotting non colinear dos in Quantum Espresso (plot_noncolinear_dos_qe.py)

    00:22.943

    00:24.813

    0.0 MB

    Plotting non colinear dos in VASP (plot_noncolinear_dos_vasp.py)

    00:05.284

    00:05.803

    0.0 MB

    Plotting spin-polarized density of states (plot_spin_polarized_dos.py)

    00:03.244

    00:04.501

    0.0 MB

    Plotting with Configurations in pyprocar (plot_dosplot_configurations.py)

    00:01.731

    00:01.965

    0.0 MB

    - + - + diff --git a/docs/examples/03-fermi2d/index.html b/docs/examples/03-fermi2d/index.html index a9655a2b..e68df48a 100644 --- a/docs/examples/03-fermi2d/index.html +++ b/docs/examples/03-fermi2d/index.html @@ -8,7 +8,7 @@ - Fermi 2D — PyProcar 6.1.5 documentation + Fermi 2D — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -396,6 +396,7 @@
  • Unfolding Band Structure
  • Plotting spin polarized band structures
  • Plotting band structure
  • +
  • Plotting 2D band structure
  • Plotting with Configurations in pyprocar
  • diff --git a/docs/examples/03-fermi2d/plot_fermi2d.html b/docs/examples/03-fermi2d/plot_fermi2d.html index e4a4a46f..85424937 100644 --- a/docs/examples/03-fermi2d/plot_fermi2d.html +++ b/docs/examples/03-fermi2d/plot_fermi2d.html @@ -8,7 +8,7 @@ - Plotting fermi2d — PyProcar 6.1.5 documentation + Plotting fermi2d — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -396,6 +396,7 @@
  • Unfolding Band Structure
  • Plotting spin polarized band structures
  • Plotting band structure
  • +
  • Plotting 2D band structure
  • Plotting with Configurations in pyprocar
  • @@ -546,7 +547,7 @@

    Plain modeSelecting band indices -

    Total running time of the script: ( 0 minutes 7.104 seconds)

    +

    Total running time of the script: ( 0 minutes 7.541 seconds)

    -

    Total running time of the script: ( 0 minutes 19.870 seconds)

    +

    Total running time of the script: ( 0 minutes 20.464 seconds)

    Plotting bandsdosplot (plot_bandsdosplot_configurations.py)

    00:02.470

    00:02.862

    0.0 MB

    Plotting bandsdosplot (plot_bandsdosplot.py)

    00:00.401

    00:00.509

    0.0 MB

    - + - - + + - - + + - + diff --git a/docs/examples/04-fermi3d/index.html b/docs/examples/04-fermi3d/index.html index 81fca2ca..b73d08b4 100644 --- a/docs/examples/04-fermi3d/index.html +++ b/docs/examples/04-fermi3d/index.html @@ -8,7 +8,7 @@ - Fermi 3D — PyProcar 6.1.5 documentation + Fermi 3D — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -396,6 +396,7 @@
  • Unfolding Band Structure
  • Plotting spin polarized band structures
  • Plotting band structure
  • +
  • Plotting 2D band structure
  • Plotting with Configurations in pyprocar
  • diff --git a/docs/examples/04-fermi3d/plot_de_hass_van_alphen.html b/docs/examples/04-fermi3d/plot_de_hass_van_alphen.html index 02b6a9df..abddddae 100644 --- a/docs/examples/04-fermi3d/plot_de_hass_van_alphen.html +++ b/docs/examples/04-fermi3d/plot_de_hass_van_alphen.html @@ -8,7 +8,7 @@ - Showing how to get van alphen fequencies from the fermi surface — PyProcar 6.1.5 documentation + Showing how to get van alphen fequencies from the fermi surface — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -113,7 +113,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -397,6 +397,7 @@
  • Unfolding Band Structure
  • Plotting spin polarized band structures
  • Plotting band structure
  • +
  • Plotting 2D band structure
  • Plotting with Configurations in pyprocar
  • @@ -575,7 +576,6 @@

    Maximal cross sectional area along the (0,0,1)\(A = 4.3956 Ang^{-2} = 4.3956e^{16} cm^{-2} (cgs)\).

    \(F = \frac{ c \hbar A }{ 2 \pi e } = 4.61e^8 G\)

    \(F_{exp} = 4.85e^8 G\)

    -

    Total running time of the script: ( 0 minutes 14.712 seconds)

    +

    Total running time of the script: ( 0 minutes 13.452 seconds)

    Plotting rashba spin splitting (plot_rashba_spin_spliting.py)

    00:51.294

    00:51.878

    0.0 MB

    Plotting with Configurations in pyprocar (plot_fermi2d_configurations.py)

    00:20.284

    Plotting fermi2d noncolinear (plot_fermi2d_spin_texture.py)

    00:20.464

    0.0 MB

    Plotting fermi2d noncolinear (plot_fermi2d_spin_texture.py)

    00:19.870

    Plotting with Configurations in pyprocar (plot_fermi2d_configurations.py)

    00:20.442

    0.0 MB

    Plotting fermi2d (plot_fermi2d.py)

    00:07.104

    00:07.541

    0.0 MB

    - + - + - + - + - + - + - + - + diff --git a/docs/examples/05-other/index.html b/docs/examples/05-other/index.html index c7666606..0bd14f7c 100644 --- a/docs/examples/05-other/index.html +++ b/docs/examples/05-other/index.html @@ -8,7 +8,7 @@ - Other — PyProcar 6.1.5 documentation + Other — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -396,6 +396,7 @@
  • Unfolding Band Structure
  • Plotting spin polarized band structures
  • Plotting band structure
  • +
  • Plotting 2D band structure
  • Plotting with Configurations in pyprocar
  • diff --git a/docs/examples/05-other/plot_2dkmesh_generation.html b/docs/examples/05-other/plot_2dkmesh_generation.html index 7d27b112..1cafe3e8 100644 --- a/docs/examples/05-other/plot_2dkmesh_generation.html +++ b/docs/examples/05-other/plot_2dkmesh_generation.html @@ -8,7 +8,7 @@ - Example of kmesh_generator — PyProcar 6.1.5 documentation + Example of kmesh_generator — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -113,7 +113,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -397,6 +397,7 @@
  • Unfolding Band Structure
  • Plotting spin polarized band structures
  • Plotting band structure
  • +
  • Plotting 2D band structure
  • Plotting with Configurations in pyprocar
  • @@ -555,7 +556,7 @@

    Plotting KmeshTotal running time of the script: ( 0 minutes 0.609 seconds)

    +

    Total running time of the script: ( 0 minutes 0.466 seconds)

    @@ -396,6 +396,7 @@
  • Unfolding Band Structure
  • Plotting spin polarized band structures
  • Plotting band structure
  • +
  • Plotting 2D band structure
  • Plotting with Configurations in pyprocar
  • @@ -648,7 +649,7 @@

    Effective mass
    (3375, 8, 1)
     
    -

    Total running time of the script: ( 0 minutes 4.915 seconds)

    +

    Total running time of the script: ( 0 minutes 4.765 seconds)

    Plotting fermi3d cross_section (plot_fermi3d_cross_section.py)

    02:07.134

    02:14.053

    0.0 MB

    Plotting fermi3d spin_texture (plot_fermi3d_spin_texture.py)

    01:13.428

    01:10.996

    0.0 MB

    Plotting fermi3d isovalue_gif (plot_fermi3d_isovalue_gif.py)

    00:33.309

    00:34.508

    0.0 MB

    Plotting fermi3d isoslider (plot_fermi3d_isoslider.py)

    00:32.204

    00:33.821

    0.0 MB

    Plotting fermi3d spin-polarized (plot_fermi3d_spin-polarized.py)

    00:29.106

    00:27.690

    0.0 MB

    Plotting with Configurations in pyprocar (plot_fermi3d_configurations.py)

    00:16.685

    00:17.454

    0.0 MB

    Plotting fermi3d plain (plot_fermi3d_plain.py)

    00:15.921

    00:16.667

    0.0 MB

    Showing how to get van alphen fequencies from the fermi surface (plot_de_hass_van_alphen.py)

    00:14.712

    00:13.452

    0.0 MB

    - + - + - + diff --git a/docs/examples/06-PyPoscar/index.html b/docs/examples/06-PyPoscar/index.html index 10a53f9c..3d090112 100644 --- a/docs/examples/06-PyPoscar/index.html +++ b/docs/examples/06-PyPoscar/index.html @@ -8,7 +8,7 @@ - PyPoscar — PyProcar 6.1.5 documentation + PyPoscar — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -396,6 +396,7 @@
  • Unfolding Band Structure
  • Plotting spin polarized band structures
  • Plotting band structure
  • +
  • Plotting 2D band structure
  • Plotting with Configurations in pyprocar
  • diff --git a/docs/examples/06-PyPoscar/plot_clusters_pyposcar.html b/docs/examples/06-PyPoscar/plot_clusters_pyposcar.html index 530f9192..077b401b 100644 --- a/docs/examples/06-PyPoscar/plot_clusters_pyposcar.html +++ b/docs/examples/06-PyPoscar/plot_clusters_pyposcar.html @@ -8,7 +8,7 @@ - Visualizing Clusters in Bi2Se3 Slab — PyProcar 6.1.5 documentation + Visualizing Clusters in Bi2Se3 Slab — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -396,6 +396,7 @@
  • Unfolding Band Structure
  • Plotting spin polarized band structures
  • Plotting band structure
  • +
  • Plotting 2D band structure
  • Plotting with Configurations in pyprocar
  • @@ -596,7 +597,7 @@

    Visualizing the Clusters
  • plot clusters pyposcar
  • -

    Total running time of the script: ( 0 minutes 6.831 seconds)

    +

    Total running time of the script: ( 0 minutes 6.360 seconds)

    -

    Total running time of the script: ( 0 minutes 0.766 seconds)

    +

    Total running time of the script: ( 0 minutes 0.719 seconds)

    Example of finding the bandgap (plot_ebs.py)

    00:04.915

    00:04.765

    0.0 MB

    Example of kpath_generator (plot_kpath_generation.py)

    00:00.709

    00:00.599

    0.0 MB

    Example of kmesh_generator (plot_2dkmesh_generation.py)

    00:00.609

    00:00.466

    0.0 MB

    Example of finding the bandgap (plot_bandgap.py)

    - + - + - - + + - - + + - + diff --git a/docs/examples/index.html b/docs/examples/index.html index 086d2477..45da9e01 100644 --- a/docs/examples/index.html +++ b/docs/examples/index.html @@ -8,7 +8,7 @@ - Examples — PyProcar 6.1.5 documentation + Examples — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -396,6 +396,7 @@
  • Unfolding Band Structure
  • Plotting spin polarized band structures
  • Plotting band structure
  • +
  • Plotting 2D band structure
  • Plotting with Configurations in pyprocar
  • @@ -533,6 +534,9 @@

    Band Structure

    Plotting band structure

    Plotting band structure
    +
    +

    Plotting 2D band structure

    +
    Plotting 2D band structure

    Plotting with Configurations in pyprocar

    Plotting with Configurations in pyprocar
    diff --git a/docs/genindex.html b/docs/genindex.html index 0007adfb..ea91197a 100644 --- a/docs/genindex.html +++ b/docs/genindex.html @@ -7,7 +7,7 @@ - Index — PyProcar 6.1.5 documentation + Index — PyProcar 6.1.7 documentation @@ -39,7 +39,7 @@ - + @@ -109,7 +109,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -722,10 +722,10 @@

    F

  • FermiHandler (class in pyprocar.scripts)
  • - - +

    Modifying a POSCAR File: Scaling, Supercells, and Defects (plot_utils_pyposcar.py)

    00:21.975

    00:18.327

    0.0 MB

    Finding defects in a POSCAR file (plot_finding_defects_pyposcar.py)

    00:08.355

    00:07.200

    0.0 MB

    Substituting Atoms in a POSCAR File (plot_subsitution_pyposcar.py)

    00:07.343

    Visualizing Clusters in Bi2Se3 Slab (plot_clusters_pyposcar.py)

    00:06.360

    0.0 MB

    Visualizing Clusters in Bi2Se3 Slab (plot_clusters_pyposcar.py)

    00:06.831

    Substituting Atoms in a POSCAR File (plot_subsitution_pyposcar.py)

    00:06.106

    0.0 MB

    Analyzing Radial Distribution Functions (RDF) (plot_rdf_cutoff_pyposcar.py)

    00:00.766

    00:00.719

    0.0 MB

  • find_energy() (pyprocar.core.FermiSurface method) +
  • +
  • fix_collinear_spin() (pyprocar.core.ElectronicBandStructure method)
  • flags (pyprocar.pyposcar.self attribute)
  • @@ -1222,6 +1224,8 @@

    S

  • selective (pyprocar.pyposcar.self attribute)
  • set_color_with_cmap() (pyprocar.core.Surface method) +
  • +
  • set_colorbar_title() (pyprocar.plotter.EBSPlot method)
  • set_scalars() (pyprocar.core.Surface method)
  • diff --git a/docs/getting-started/authors.html b/docs/getting-started/authors.html index 6e9d04a4..cb1d7eae 100644 --- a/docs/getting-started/authors.html +++ b/docs/getting-started/authors.html @@ -8,7 +8,7 @@ - Authors & Citation — PyProcar 6.1.5 documentation + Authors & Citation — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -453,9 +453,6 @@

    Authors & CitationContributors Graph.

    Citing PyProcar#

    -

    There is a paper about PyProcar!

    -

    If you are using PyProcar in your scientific research, please help our scientific -visibility by citing our work!

    BibTex:

    diff --git a/docs/getting-started/index.html b/docs/getting-started/index.html index 5fa5a712..4649087d 100644 --- a/docs/getting-started/index.html +++ b/docs/getting-started/index.html @@ -8,7 +8,7 @@ - Getting started — PyProcar 6.1.5 documentation + Getting started — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -499,18 +499,29 @@

    Installation

    Paper#

    -
    +
    -Authors & Citation
    +1st Publication

    Using PyProcar in your research? Please consider citing or acknowledging us. We have a Elsevier Publication!

    ../_images/1st_publication.png
    +
    +
    +
    +
    +2nd Publication
    +

    Using PyProcar in your research? Please consider citing or acknowledging +us. We have a Elsevier Publication!

    +../_images/2nd_publication.png +
    +
    +
    @@ -520,7 +531,7 @@

    Support

    Citing PyProcar#

    -

    There is a paper about PyProcar!

    +

    There are two papers about PyProcar: 1st Paper and 2nd Paper.

    If you are using PyProcar in your scientific research, please help our scientific visibility by citing our work! Head over to Citing PyProcar to learn more about citing PyProcar.

    diff --git a/docs/getting-started/installation.html b/docs/getting-started/installation.html index 4788db6a..a655eb10 100644 --- a/docs/getting-started/installation.html +++ b/docs/getting-started/installation.html @@ -8,7 +8,7 @@ - Installation — PyProcar 6.1.5 documentation + Installation — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    diff --git a/docs/getting-started/why.html b/docs/getting-started/why.html index b6ec7c28..e5e5034f 100644 --- a/docs/getting-started/why.html +++ b/docs/getting-started/why.html @@ -8,7 +8,7 @@ - Why PyProcar? — PyProcar 6.1.5 documentation + Why PyProcar? — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -113,7 +113,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    diff --git a/docs/index.html b/docs/index.html index 6ea7c865..1fe6242b 100644 --- a/docs/index.html +++ b/docs/index.html @@ -8,7 +8,7 @@ - PyProcar — PyProcar 6.1.5 documentation + PyProcar — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    diff --git a/docs/objects.inv b/docs/objects.inv index 5b74f55a..ed90b9e2 100644 Binary files a/docs/objects.inv and b/docs/objects.inv differ diff --git a/docs/py-modindex.html b/docs/py-modindex.html index afc12649..e2f9d34c 100644 --- a/docs/py-modindex.html +++ b/docs/py-modindex.html @@ -7,7 +7,7 @@ - Python Module Index — PyProcar 6.1.5 documentation + Python Module Index — PyProcar 6.1.7 documentation @@ -39,7 +39,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    diff --git a/docs/search.html b/docs/search.html index e525d09d..083c798c 100644 --- a/docs/search.html +++ b/docs/search.html @@ -6,7 +6,7 @@ - Search - PyProcar 6.1.5 documentation + Search - PyProcar 6.1.7 documentation @@ -38,7 +38,7 @@ - + @@ -111,7 +111,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    diff --git a/docs/searchindex.js b/docs/searchindex.js index 22cc95a5..b9627fe8 100644 --- a/docs/searchindex.js +++ b/docs/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["api/cfg/band_structure", "api/cfg/band_structure_2d", "api/cfg/dos", "api/cfg/fermi_surface_2d", "api/cfg/fermi_surface_3d", "api/cfg/index", "api/cfg/unfold", "api/core/_autosummary/pyprocar.core.BrillouinZone", "api/core/_autosummary/pyprocar.core.BrillouinZone.__init__", "api/core/_autosummary/pyprocar.core.BrillouinZone.wigner_seitz", "api/core/_autosummary/pyprocar.core.DensityOfStates", "api/core/_autosummary/pyprocar.core.DensityOfStates.__init__", "api/core/_autosummary/pyprocar.core.DensityOfStates.coupled_to_uncoupled_basis", "api/core/_autosummary/pyprocar.core.DensityOfStates.dos_sum", "api/core/_autosummary/pyprocar.core.DensityOfStates.get_current_basis", "api/core/_autosummary/pyprocar.core.DensityOfStates.is_non_collinear", "api/core/_autosummary/pyprocar.core.DensityOfStates.n_dos", "api/core/_autosummary/pyprocar.core.DensityOfStates.n_energies", "api/core/_autosummary/pyprocar.core.DensityOfStates.n_spins", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.__init__", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.bands_gradient", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.bands_gradient_mesh", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.bands_hessian", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.bands_hessian_mesh", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.bands_mesh", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.calculate_scalar_gradient", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.calculate_scalar_integral", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.create_nd_mesh", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.create_scaler_mesh", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.create_vector_mesh", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.ebs_ipr", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.ebs_ipr_atom", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.ebs_sum", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.fermi_speed", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.fermi_speed_mesh", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.fermi_velocity", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.fermi_velocity_mesh", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.harmonic_average_effective_mass", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.harmonic_average_effective_mass_mesh", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.ibz2fbz", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.index_mesh", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.interpolate_mesh_grid", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.is_non_collinear", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.kpoints_cartesian", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.kpoints_cartesian_mesh", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.kpoints_mesh", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.kpoints_reduced", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.mesh_to_array", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.n_kx", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.n_ky", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.n_kz", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.natoms", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.nbands", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.nkpoints", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.norbitals", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.nprincipals", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.nspins", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.plot_kpoints", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.projected_mesh", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.projected_phase_mesh", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.ravel_array", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.unfold", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.update_weights", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.weights_mesh", "api/core/_autosummary/pyprocar.core.FermiSurface", "api/core/_autosummary/pyprocar.core.FermiSurface.__init__", "api/core/_autosummary/pyprocar.core.FermiSurface.add_axes_labels", "api/core/_autosummary/pyprocar.core.FermiSurface.add_legend", "api/core/_autosummary/pyprocar.core.FermiSurface.find_energy", "api/core/_autosummary/pyprocar.core.FermiSurface.plot", "api/core/_autosummary/pyprocar.core.FermiSurface.savefig", "api/core/_autosummary/pyprocar.core.FermiSurface.show", "api/core/_autosummary/pyprocar.core.FermiSurface.spin_texture", "api/core/_autosummary/pyprocar.core.FermiSurface3D", "api/core/_autosummary/pyprocar.core.FermiSurface3D.__init__", "api/core/_autosummary/pyprocar.core.FermiSurface3D.extend_surface", "api/core/_autosummary/pyprocar.core.FermiSurface3D.project_atomic_projections", "api/core/_autosummary/pyprocar.core.FermiSurface3D.project_fermi_speed", "api/core/_autosummary/pyprocar.core.FermiSurface3D.project_fermi_velocity", "api/core/_autosummary/pyprocar.core.FermiSurface3D.project_harmonic_effective_mass", "api/core/_autosummary/pyprocar.core.FermiSurface3D.project_spin_texture_atomic_projections", "api/core/_autosummary/pyprocar.core.Isosurface", "api/core/_autosummary/pyprocar.core.Isosurface.__init__", "api/core/_autosummary/pyprocar.core.Isosurface.dxyz", "api/core/_autosummary/pyprocar.core.Isosurface.nX", "api/core/_autosummary/pyprocar.core.Isosurface.nY", "api/core/_autosummary/pyprocar.core.Isosurface.nZ", "api/core/_autosummary/pyprocar.core.Isosurface.surface_boundaries", "api/core/_autosummary/pyprocar.core.KPath", "api/core/_autosummary/pyprocar.core.KPath.__init__", "api/core/_autosummary/pyprocar.core.KPath.get_kpoints_transformed", "api/core/_autosummary/pyprocar.core.KPath.get_optimized_kpoints_transformed", "api/core/_autosummary/pyprocar.core.KPath.kdistances", "api/core/_autosummary/pyprocar.core.KPath.nsegments", "api/core/_autosummary/pyprocar.core.KPath.tick_names", "api/core/_autosummary/pyprocar.core.KPath.tick_positions", "api/core/_autosummary/pyprocar.core.KPath.write_to_file", "api/core/_autosummary/pyprocar.core.Structure", "api/core/_autosummary/pyprocar.core.Structure.__init__", "api/core/_autosummary/pyprocar.core.Structure.a", "api/core/_autosummary/pyprocar.core.Structure.alpha", "api/core/_autosummary/pyprocar.core.Structure.atomic_numbers", "api/core/_autosummary/pyprocar.core.Structure.b", "api/core/_autosummary/pyprocar.core.Structure.beta", "api/core/_autosummary/pyprocar.core.Structure.c", "api/core/_autosummary/pyprocar.core.Structure.cell_convex_hull", "api/core/_autosummary/pyprocar.core.Structure.density", "api/core/_autosummary/pyprocar.core.Structure.gamma", "api/core/_autosummary/pyprocar.core.Structure.get_space_group_international", "api/core/_autosummary/pyprocar.core.Structure.get_space_group_number", "api/core/_autosummary/pyprocar.core.Structure.get_spglib_symmetry_dataset", "api/core/_autosummary/pyprocar.core.Structure.get_wyckoff_positions", "api/core/_autosummary/pyprocar.core.Structure.is_point_inside", "api/core/_autosummary/pyprocar.core.Structure.lattice_corners", "api/core/_autosummary/pyprocar.core.Structure.masses", "api/core/_autosummary/pyprocar.core.Structure.natoms", "api/core/_autosummary/pyprocar.core.Structure.nspecies", "api/core/_autosummary/pyprocar.core.Structure.plot_cell_convex_hull", "api/core/_autosummary/pyprocar.core.Structure.reciprocal_lattice", "api/core/_autosummary/pyprocar.core.Structure.species", "api/core/_autosummary/pyprocar.core.Structure.supercell", "api/core/_autosummary/pyprocar.core.Structure.transform", "api/core/_autosummary/pyprocar.core.Structure.volume", "api/core/_autosummary/pyprocar.core.Surface", "api/core/_autosummary/pyprocar.core.Surface.__init__", "api/core/_autosummary/pyprocar.core.Surface.centers", "api/core/_autosummary/pyprocar.core.Surface.export", "api/core/_autosummary/pyprocar.core.Surface.faces_array", "api/core/_autosummary/pyprocar.core.Surface.set_color_with_cmap", "api/core/_autosummary/pyprocar.core.Surface.set_scalars", "api/core/_autosummary/pyprocar.core.Surface.set_vectors", "api/core/brillouin_zone", "api/core/dos", "api/core/ebs", "api/core/fermi2d", "api/core/fermi3d", "api/core/index", "api/core/isosurface", "api/core/kpath", "api/core/structure", "api/core/surface", "api/index", "api/io/_autosummary/pyprocar.io.abinit.AbinitKpoints", "api/io/_autosummary/pyprocar.io.abinit.AbinitKpoints.__init__", "api/io/_autosummary/pyprocar.io.abinit.AbinitProcar", "api/io/_autosummary/pyprocar.io.abinit.AbinitProcar.__init__", "api/io/_autosummary/pyprocar.io.abinit.Output", "api/io/_autosummary/pyprocar.io.abinit.Output.__init__", "api/io/_autosummary/pyprocar.io.bxsf.BxsfParser", "api/io/_autosummary/pyprocar.io.bxsf.BxsfParser.__init__", "api/io/_autosummary/pyprocar.io.bxsf.BxsfParser.parse_bxsf", "api/io/_autosummary/pyprocar.io.lobster.LobsterParser", "api/io/_autosummary/pyprocar.io.lobster.LobsterParser.__init__", "api/io/_autosummary/pyprocar.io.lobster.LobsterParser.dos", "api/io/_autosummary/pyprocar.io.lobster.LobsterParser.dos_parametric", "api/io/_autosummary/pyprocar.io.lobster.LobsterParser.dos_projected", "api/io/_autosummary/pyprocar.io.lobster.LobsterParser.dos_to_dict", "api/io/_autosummary/pyprocar.io.lobster.LobsterParser.dos_total", "api/io/_autosummary/pyprocar.io.lobster.LobsterParser.final_structure", "api/io/_autosummary/pyprocar.io.lobster.LobsterParser.initial_structure", "api/io/_autosummary/pyprocar.io.lobster.LobsterParser.parse_structure", "api/io/_autosummary/pyprocar.io.lobster.LobsterParser.species", "api/io/_autosummary/pyprocar.io.lobster.LobsterParser.structure", "api/io/_autosummary/pyprocar.io.lobster.LobsterParser.structures", "api/io/_autosummary/pyprocar.io.qe.QEParser", "api/io/_autosummary/pyprocar.io.qe.QEParser.__init__", "api/io/_autosummary/pyprocar.io.qe.QEParser.final_structure", "api/io/_autosummary/pyprocar.io.qe.QEParser.getKpointLabels", "api/io/_autosummary/pyprocar.io.qe.QEParser.initial_structure", "api/io/_autosummary/pyprocar.io.qe.QEParser.kpoints_cart", "api/io/_autosummary/pyprocar.io.qe.QEParser.species", "api/io/_autosummary/pyprocar.io.qe.QEParser.structure", "api/io/_autosummary/pyprocar.io.qe.QEParser.structures", "api/io/_autosummary/pyprocar.io.siesta.SiestaParser", "api/io/_autosummary/pyprocar.io.siesta.SiestaParser.__init__", "api/io/_autosummary/pyprocar.io.vasp.Kpoints", "api/io/_autosummary/pyprocar.io.vasp.Kpoints.__init__", "api/io/_autosummary/pyprocar.io.vasp.Outcar", "api/io/_autosummary/pyprocar.io.vasp.Outcar.__init__", "api/io/_autosummary/pyprocar.io.vasp.Outcar.efermi", "api/io/_autosummary/pyprocar.io.vasp.Outcar.get_symmetry_operations", "api/io/_autosummary/pyprocar.io.vasp.Outcar.reciprocal_lattice", "api/io/_autosummary/pyprocar.io.vasp.Outcar.rotations", "api/io/_autosummary/pyprocar.io.vasp.Poscar", "api/io/_autosummary/pyprocar.io.vasp.Poscar.__init__", "api/io/_autosummary/pyprocar.io.vasp.Procar", "api/io/_autosummary/pyprocar.io.vasp.Procar.__init__", "api/io/_autosummary/pyprocar.io.vasp.Procar.kpoints_cartesian", "api/io/_autosummary/pyprocar.io.vasp.Procar.kpoints_reduced", "api/io/_autosummary/pyprocar.io.vasp.Procar.repair", "api/io/_autosummary/pyprocar.io.vasp.Procar.symmetrize", "api/io/_autosummary/pyprocar.io.vasp.VaspXML", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.__init__", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.bands", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.bands_projected", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.conv", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.convergence", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.convergence_electronic", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.convergence_ionic", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.dos", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.dos_projected", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.dos_to_dict", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.dos_total", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.energies", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.energy", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.fermi", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.final_structure", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.forces", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_general", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_params", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_scstep", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_set", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_structure", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_varray", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.incar", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.initial_structure", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.is_finished", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.iteration_data", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.kpoints", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.kpoints_list", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.last_energy", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.parse_vasprun", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.potcar_info", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.read", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.species", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.structure", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.structures", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.text_to_bool", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.vasp_parameters", "api/io/abinit", "api/io/bxsf", "api/io/index", "api/io/lobster", "api/io/qe", "api/io/siesta", "api/io/vasp", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.__init__", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.draw_fermi", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.grid", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.legend", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_dos", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_parametric", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_parametric_line", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_stack", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_stack_orbitals", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_stack_species", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.save", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_xlabel", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_xlim", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_xticks", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_ylabel", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_ylim", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_yticks", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.show", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.update_config", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.__init__", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.draw_fermi", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.grid", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.legend", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.plot_atomic_levels", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.plot_bands", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.plot_parameteric", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.plot_parameteric_overlay", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.plot_scatter", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.save", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_title", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_xlabel", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_xlim", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_xticks", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_ylabel", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_ylim", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_yticks", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.show", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.update_config", "api/plotter/_autosummary/pyprocar.plotter.ProcarPlot", "api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.__init__", "api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.atomicPlot", "api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.parametricPlot", "api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.plotBands", "api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.scatterPlot", "api/plotter/bandsplot", "api/plotter/dosplot", "api/plotter/index", "api/plotter/procarplot", "api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar", "api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.__init__", "api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.add", "api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.load_from_data", "api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.parse", "api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.remove", "api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.sort", "api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.write", "api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.xyz", "api/pyposcar/_autosummary/pyprocar.pyposcar.poscarDiff", "api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify", "api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.__init__", "api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.add", "api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.change_elements", "api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.pos_multiply", "api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.pos_sum", "api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.remove", "api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.scale_lattice", "api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.shift", "api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.write", "api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_supercell", "api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_supercell.__init__", "api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_supercell.supercell", "api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_supercell.write", "api/pyposcar/index", "api/pyposcar/poscar", "api/pyposcar/poscarutils", "api/scripts/_autosummary/pyprocar.scripts.FermiHandler", "api/scripts/_autosummary/pyprocar.scripts.FermiHandler.__init__", "api/scripts/_autosummary/pyprocar.scripts.FermiHandler.create_isovalue_gif", "api/scripts/_autosummary/pyprocar.scripts.FermiHandler.plot_fermi_cross_section", "api/scripts/_autosummary/pyprocar.scripts.FermiHandler.plot_fermi_cross_section_box_widget", "api/scripts/_autosummary/pyprocar.scripts.FermiHandler.plot_fermi_isoslider", "api/scripts/_autosummary/pyprocar.scripts.FermiHandler.plot_fermi_surface", "api/scripts/_autosummary/pyprocar.scripts.FermiHandler.print_default_settings", "api/scripts/_autosummary/pyprocar.scripts.bandgap", "api/scripts/_autosummary/pyprocar.scripts.bandsdosplot", "api/scripts/_autosummary/pyprocar.scripts.bandsplot", "api/scripts/_autosummary/pyprocar.scripts.bandsplot_2d", "api/scripts/_autosummary/pyprocar.scripts.cat", "api/scripts/_autosummary/pyprocar.scripts.dosplot", "api/scripts/_autosummary/pyprocar.scripts.fermi2D", "api/scripts/_autosummary/pyprocar.scripts.fermi3D", "api/scripts/_autosummary/pyprocar.scripts.generate2dkmesh", "api/scripts/_autosummary/pyprocar.scripts.kpath", "api/scripts/_autosummary/pyprocar.scripts.repair", "api/scripts/bandgap", "api/scripts/bandsdosplot", "api/scripts/bandsplot", "api/scripts/bandsplot_2d", "api/scripts/cat", "api/scripts/dosplot", "api/scripts/fermi2d", "api/scripts/fermi3d", "api/scripts/fermihandler", "api/scripts/generate2dkmesh", "api/scripts/index", "api/scripts/kpath", "api/scripts/repair", "dftprep/abinit", "dftprep/dftb+", "dftprep/elk", "dftprep/index", "dftprep/lobster", "dftprep/qe", "dftprep/siesta", "dftprep/vasp", "examples/00-band_structure/index", "examples/00-band_structure/plot_atomic_levels", "examples/00-band_structure/plot_autobands", "examples/00-band_structure/plot_bandsplot_configurations", "examples/00-band_structure/plot_colinear", "examples/00-band_structure/plot_compare_bands", "examples/00-band_structure/plot_ipr", "examples/00-band_structure/plot_noncolinear_qe", "examples/00-band_structure/plot_noncolinear_vasp", "examples/00-band_structure/plot_spin_polarized", "examples/00-band_structure/plot_unfolding", "examples/00-band_structure/sg_execution_times", "examples/01-dos/index", "examples/01-dos/plot_colinear_dos", "examples/01-dos/plot_dosplot_configurations", "examples/01-dos/plot_noncolinear_dos_qe", "examples/01-dos/plot_noncolinear_dos_vasp", "examples/01-dos/plot_spin_polarized_dos", "examples/01-dos/sg_execution_times", "examples/02-bands_dos/index", "examples/02-bands_dos/plot_bandsdosplot", "examples/02-bands_dos/plot_bandsdosplot_configurations", "examples/02-bands_dos/sg_execution_times", "examples/03-fermi2d/index", "examples/03-fermi2d/plot_fermi2d", "examples/03-fermi2d/plot_fermi2d_configurations", "examples/03-fermi2d/plot_fermi2d_spin_texture", "examples/03-fermi2d/plot_rashba_spin_spliting", "examples/03-fermi2d/sg_execution_times", "examples/04-fermi3d/index", "examples/04-fermi3d/plot_de_hass_van_alphen", "examples/04-fermi3d/plot_fermi3d_configurations", "examples/04-fermi3d/plot_fermi3d_cross_section", "examples/04-fermi3d/plot_fermi3d_isoslider", "examples/04-fermi3d/plot_fermi3d_isovalue_gif", "examples/04-fermi3d/plot_fermi3d_plain", "examples/04-fermi3d/plot_fermi3d_spin-polarized", "examples/04-fermi3d/plot_fermi3d_spin_texture", "examples/04-fermi3d/sg_execution_times", "examples/05-other/index", "examples/05-other/plot_2dkmesh_generation", "examples/05-other/plot_bandgap", "examples/05-other/plot_ebs", "examples/05-other/plot_kpath_generation", "examples/05-other/sg_execution_times", "examples/06-PyPoscar/index", "examples/06-PyPoscar/plot_clusters_pyposcar", "examples/06-PyPoscar/plot_finding_defects_pyposcar", "examples/06-PyPoscar/plot_rdf_cutoff_pyposcar", "examples/06-PyPoscar/plot_subsitution_pyposcar", "examples/06-PyPoscar/plot_utils_pyposcar", "examples/06-PyPoscar/sg_execution_times", "examples/index", "getting-started/authors", "getting-started/index", "getting-started/installation", "getting-started/why", "index", "user-guide/atomic_projections", "user-guide/bands", "user-guide/cat", "user-guide/comparebands", "user-guide/dos", "user-guide/ebs", "user-guide/fermi2d", "user-guide/fermi3d", "user-guide/filter", "user-guide/index", "user-guide/kpath", "user-guide/repair", "user-guide/structure", "user-guide/unfold"], "filenames": ["api\\cfg\\band_structure.rst", "api\\cfg\\band_structure_2d.rst", "api\\cfg\\dos.rst", "api\\cfg\\fermi_surface_2d.rst", "api\\cfg\\fermi_surface_3d.rst", "api\\cfg\\index.rst", "api\\cfg\\unfold.rst", "api\\core\\_autosummary\\pyprocar.core.BrillouinZone.rst", "api\\core\\_autosummary\\pyprocar.core.BrillouinZone.__init__.rst", "api\\core\\_autosummary\\pyprocar.core.BrillouinZone.wigner_seitz.rst", "api\\core\\_autosummary\\pyprocar.core.DensityOfStates.rst", "api\\core\\_autosummary\\pyprocar.core.DensityOfStates.__init__.rst", "api\\core\\_autosummary\\pyprocar.core.DensityOfStates.coupled_to_uncoupled_basis.rst", "api\\core\\_autosummary\\pyprocar.core.DensityOfStates.dos_sum.rst", "api\\core\\_autosummary\\pyprocar.core.DensityOfStates.get_current_basis.rst", "api\\core\\_autosummary\\pyprocar.core.DensityOfStates.is_non_collinear.rst", "api\\core\\_autosummary\\pyprocar.core.DensityOfStates.n_dos.rst", "api\\core\\_autosummary\\pyprocar.core.DensityOfStates.n_energies.rst", "api\\core\\_autosummary\\pyprocar.core.DensityOfStates.n_spins.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.__init__.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.bands_gradient.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.bands_gradient_mesh.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.bands_hessian.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.bands_hessian_mesh.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.bands_mesh.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.calculate_scalar_gradient.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.calculate_scalar_integral.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.create_nd_mesh.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.create_scaler_mesh.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.create_vector_mesh.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.ebs_ipr.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.ebs_ipr_atom.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.ebs_sum.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.fermi_speed.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.fermi_speed_mesh.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.fermi_velocity.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.fermi_velocity_mesh.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.harmonic_average_effective_mass.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.harmonic_average_effective_mass_mesh.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.ibz2fbz.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.index_mesh.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.interpolate_mesh_grid.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.is_non_collinear.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.kpoints_cartesian.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.kpoints_cartesian_mesh.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.kpoints_mesh.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.kpoints_reduced.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.mesh_to_array.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.n_kx.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.n_ky.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.n_kz.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.natoms.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.nbands.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.nkpoints.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.norbitals.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.nprincipals.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.nspins.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.plot_kpoints.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.projected_mesh.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.projected_phase_mesh.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.ravel_array.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.unfold.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.update_weights.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.weights_mesh.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface.__init__.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface.add_axes_labels.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface.add_legend.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface.find_energy.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface.plot.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface.savefig.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface.show.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface.spin_texture.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface3D.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface3D.__init__.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface3D.extend_surface.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface3D.project_atomic_projections.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface3D.project_fermi_speed.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface3D.project_fermi_velocity.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface3D.project_harmonic_effective_mass.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface3D.project_spin_texture_atomic_projections.rst", "api\\core\\_autosummary\\pyprocar.core.Isosurface.rst", "api\\core\\_autosummary\\pyprocar.core.Isosurface.__init__.rst", "api\\core\\_autosummary\\pyprocar.core.Isosurface.dxyz.rst", "api\\core\\_autosummary\\pyprocar.core.Isosurface.nX.rst", "api\\core\\_autosummary\\pyprocar.core.Isosurface.nY.rst", "api\\core\\_autosummary\\pyprocar.core.Isosurface.nZ.rst", "api\\core\\_autosummary\\pyprocar.core.Isosurface.surface_boundaries.rst", "api\\core\\_autosummary\\pyprocar.core.KPath.rst", "api\\core\\_autosummary\\pyprocar.core.KPath.__init__.rst", "api\\core\\_autosummary\\pyprocar.core.KPath.get_kpoints_transformed.rst", "api\\core\\_autosummary\\pyprocar.core.KPath.get_optimized_kpoints_transformed.rst", "api\\core\\_autosummary\\pyprocar.core.KPath.kdistances.rst", "api\\core\\_autosummary\\pyprocar.core.KPath.nsegments.rst", "api\\core\\_autosummary\\pyprocar.core.KPath.tick_names.rst", "api\\core\\_autosummary\\pyprocar.core.KPath.tick_positions.rst", "api\\core\\_autosummary\\pyprocar.core.KPath.write_to_file.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.__init__.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.a.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.alpha.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.atomic_numbers.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.b.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.beta.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.c.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.cell_convex_hull.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.density.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.gamma.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.get_space_group_international.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.get_space_group_number.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.get_spglib_symmetry_dataset.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.get_wyckoff_positions.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.is_point_inside.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.lattice_corners.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.masses.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.natoms.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.nspecies.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.plot_cell_convex_hull.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.reciprocal_lattice.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.species.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.supercell.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.transform.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.volume.rst", "api\\core\\_autosummary\\pyprocar.core.Surface.rst", "api\\core\\_autosummary\\pyprocar.core.Surface.__init__.rst", "api\\core\\_autosummary\\pyprocar.core.Surface.centers.rst", "api\\core\\_autosummary\\pyprocar.core.Surface.export.rst", "api\\core\\_autosummary\\pyprocar.core.Surface.faces_array.rst", "api\\core\\_autosummary\\pyprocar.core.Surface.set_color_with_cmap.rst", "api\\core\\_autosummary\\pyprocar.core.Surface.set_scalars.rst", "api\\core\\_autosummary\\pyprocar.core.Surface.set_vectors.rst", "api\\core\\brillouin_zone.rst", "api\\core\\dos.rst", "api\\core\\ebs.rst", "api\\core\\fermi2d.rst", "api\\core\\fermi3d.rst", "api\\core\\index.rst", "api\\core\\isosurface.rst", "api\\core\\kpath.rst", "api\\core\\structure.rst", "api\\core\\surface.rst", "api\\index.rst", "api\\io\\_autosummary\\pyprocar.io.abinit.AbinitKpoints.rst", "api\\io\\_autosummary\\pyprocar.io.abinit.AbinitKpoints.__init__.rst", "api\\io\\_autosummary\\pyprocar.io.abinit.AbinitProcar.rst", "api\\io\\_autosummary\\pyprocar.io.abinit.AbinitProcar.__init__.rst", "api\\io\\_autosummary\\pyprocar.io.abinit.Output.rst", "api\\io\\_autosummary\\pyprocar.io.abinit.Output.__init__.rst", "api\\io\\_autosummary\\pyprocar.io.bxsf.BxsfParser.rst", "api\\io\\_autosummary\\pyprocar.io.bxsf.BxsfParser.__init__.rst", "api\\io\\_autosummary\\pyprocar.io.bxsf.BxsfParser.parse_bxsf.rst", "api\\io\\_autosummary\\pyprocar.io.lobster.LobsterParser.rst", "api\\io\\_autosummary\\pyprocar.io.lobster.LobsterParser.__init__.rst", "api\\io\\_autosummary\\pyprocar.io.lobster.LobsterParser.dos.rst", "api\\io\\_autosummary\\pyprocar.io.lobster.LobsterParser.dos_parametric.rst", "api\\io\\_autosummary\\pyprocar.io.lobster.LobsterParser.dos_projected.rst", "api\\io\\_autosummary\\pyprocar.io.lobster.LobsterParser.dos_to_dict.rst", "api\\io\\_autosummary\\pyprocar.io.lobster.LobsterParser.dos_total.rst", "api\\io\\_autosummary\\pyprocar.io.lobster.LobsterParser.final_structure.rst", "api\\io\\_autosummary\\pyprocar.io.lobster.LobsterParser.initial_structure.rst", "api\\io\\_autosummary\\pyprocar.io.lobster.LobsterParser.parse_structure.rst", "api\\io\\_autosummary\\pyprocar.io.lobster.LobsterParser.species.rst", "api\\io\\_autosummary\\pyprocar.io.lobster.LobsterParser.structure.rst", "api\\io\\_autosummary\\pyprocar.io.lobster.LobsterParser.structures.rst", "api\\io\\_autosummary\\pyprocar.io.qe.QEParser.rst", "api\\io\\_autosummary\\pyprocar.io.qe.QEParser.__init__.rst", "api\\io\\_autosummary\\pyprocar.io.qe.QEParser.final_structure.rst", "api\\io\\_autosummary\\pyprocar.io.qe.QEParser.getKpointLabels.rst", "api\\io\\_autosummary\\pyprocar.io.qe.QEParser.initial_structure.rst", "api\\io\\_autosummary\\pyprocar.io.qe.QEParser.kpoints_cart.rst", "api\\io\\_autosummary\\pyprocar.io.qe.QEParser.species.rst", "api\\io\\_autosummary\\pyprocar.io.qe.QEParser.structure.rst", "api\\io\\_autosummary\\pyprocar.io.qe.QEParser.structures.rst", "api\\io\\_autosummary\\pyprocar.io.siesta.SiestaParser.rst", "api\\io\\_autosummary\\pyprocar.io.siesta.SiestaParser.__init__.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.Kpoints.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.Kpoints.__init__.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.Outcar.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.Outcar.__init__.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.Outcar.efermi.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.Outcar.get_symmetry_operations.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.Outcar.reciprocal_lattice.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.Outcar.rotations.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.Poscar.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.Poscar.__init__.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.Procar.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.Procar.__init__.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.Procar.kpoints_cartesian.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.Procar.kpoints_reduced.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.Procar.repair.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.Procar.symmetrize.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.__init__.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.bands.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.bands_projected.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.conv.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.convergence.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.convergence_electronic.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.convergence_ionic.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.dos.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.dos_projected.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.dos_to_dict.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.dos_total.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.energies.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.energy.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.fermi.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.final_structure.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.forces.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.get_general.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.get_params.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.get_scstep.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.get_set.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.get_structure.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.get_varray.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.incar.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.initial_structure.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.is_finished.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.iteration_data.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.kpoints.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.kpoints_list.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.last_energy.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.parse_vasprun.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.potcar_info.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.read.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.species.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.structure.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.structures.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.text_to_bool.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.vasp_parameters.rst", "api\\io\\abinit.rst", "api\\io\\bxsf.rst", "api\\io\\index.rst", "api\\io\\lobster.rst", "api\\io\\qe.rst", "api\\io\\siesta.rst", "api\\io\\vasp.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.__init__.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.draw_fermi.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.grid.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.legend.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.plot_dos.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.plot_parametric.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.plot_parametric_line.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.plot_stack.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.plot_stack_orbitals.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.plot_stack_species.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.save.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.set_xlabel.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.set_xlim.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.set_xticks.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.set_ylabel.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.set_ylim.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.set_yticks.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.show.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.update_config.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.__init__.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.draw_fermi.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.grid.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.legend.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.plot_atomic_levels.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.plot_bands.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.plot_parameteric.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.plot_parameteric_overlay.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.plot_scatter.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.save.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.set_title.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.set_xlabel.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.set_xlim.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.set_xticks.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.set_ylabel.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.set_ylim.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.set_yticks.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.show.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.update_config.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.ProcarPlot.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.ProcarPlot.__init__.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.ProcarPlot.atomicPlot.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.ProcarPlot.parametricPlot.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.ProcarPlot.plotBands.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.ProcarPlot.scatterPlot.rst", "api\\plotter\\bandsplot.rst", "api\\plotter\\dosplot.rst", "api\\plotter\\index.rst", "api\\plotter\\procarplot.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.Poscar.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.Poscar.__init__.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.Poscar.add.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.Poscar.load_from_data.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.Poscar.parse.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.Poscar.remove.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.Poscar.sort.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.Poscar.write.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.Poscar.xyz.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.poscarDiff.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.poscar_modify.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.poscar_modify.__init__.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.poscar_modify.add.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.poscar_modify.change_elements.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.poscar_modify.pos_multiply.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.poscar_modify.pos_sum.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.poscar_modify.remove.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.poscar_modify.scale_lattice.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.poscar_modify.shift.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.poscar_modify.write.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.poscar_supercell.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.poscar_supercell.__init__.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.poscar_supercell.supercell.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.poscar_supercell.write.rst", "api\\pyposcar\\index.rst", "api\\pyposcar\\poscar.rst", "api\\pyposcar\\poscarutils.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.FermiHandler.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.FermiHandler.__init__.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.FermiHandler.create_isovalue_gif.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.FermiHandler.plot_fermi_cross_section.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.FermiHandler.plot_fermi_cross_section_box_widget.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.FermiHandler.plot_fermi_isoslider.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.FermiHandler.plot_fermi_surface.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.FermiHandler.print_default_settings.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.bandgap.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.bandsdosplot.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.bandsplot.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.bandsplot_2d.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.cat.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.dosplot.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.fermi2D.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.fermi3D.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.generate2dkmesh.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.kpath.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.repair.rst", "api\\scripts\\bandgap.rst", "api\\scripts\\bandsdosplot.rst", "api\\scripts\\bandsplot.rst", "api\\scripts\\bandsplot_2d.rst", "api\\scripts\\cat.rst", "api\\scripts\\dosplot.rst", "api\\scripts\\fermi2d.rst", "api\\scripts\\fermi3d.rst", "api\\scripts\\fermihandler.rst", "api\\scripts\\generate2dkmesh.rst", "api\\scripts\\index.rst", "api\\scripts\\kpath.rst", "api\\scripts\\repair.rst", "dftprep\\abinit.rst", "dftprep\\dftb+.rst", "dftprep\\elk.rst", "dftprep\\index.rst", "dftprep\\lobster.rst", "dftprep\\qe.rst", "dftprep\\siesta.rst", "dftprep\\vasp.rst", "examples\\00-band_structure\\index.rst", "examples\\00-band_structure\\plot_atomic_levels.rst", "examples\\00-band_structure\\plot_autobands.rst", "examples\\00-band_structure\\plot_bandsplot_configurations.rst", "examples\\00-band_structure\\plot_colinear.rst", "examples\\00-band_structure\\plot_compare_bands.rst", "examples\\00-band_structure\\plot_ipr.rst", "examples\\00-band_structure\\plot_noncolinear_qe.rst", "examples\\00-band_structure\\plot_noncolinear_vasp.rst", "examples\\00-band_structure\\plot_spin_polarized.rst", "examples\\00-band_structure\\plot_unfolding.rst", "examples\\00-band_structure\\sg_execution_times.rst", "examples\\01-dos\\index.rst", "examples\\01-dos\\plot_colinear_dos.rst", "examples\\01-dos\\plot_dosplot_configurations.rst", "examples\\01-dos\\plot_noncolinear_dos_qe.rst", "examples\\01-dos\\plot_noncolinear_dos_vasp.rst", "examples\\01-dos\\plot_spin_polarized_dos.rst", "examples\\01-dos\\sg_execution_times.rst", "examples\\02-bands_dos\\index.rst", "examples\\02-bands_dos\\plot_bandsdosplot.rst", "examples\\02-bands_dos\\plot_bandsdosplot_configurations.rst", "examples\\02-bands_dos\\sg_execution_times.rst", "examples\\03-fermi2d\\index.rst", "examples\\03-fermi2d\\plot_fermi2d.rst", "examples\\03-fermi2d\\plot_fermi2d_configurations.rst", "examples\\03-fermi2d\\plot_fermi2d_spin_texture.rst", "examples\\03-fermi2d\\plot_rashba_spin_spliting.rst", "examples\\03-fermi2d\\sg_execution_times.rst", "examples\\04-fermi3d\\index.rst", "examples\\04-fermi3d\\plot_de_hass_van_alphen.rst", "examples\\04-fermi3d\\plot_fermi3d_configurations.rst", "examples\\04-fermi3d\\plot_fermi3d_cross_section.rst", "examples\\04-fermi3d\\plot_fermi3d_isoslider.rst", "examples\\04-fermi3d\\plot_fermi3d_isovalue_gif.rst", "examples\\04-fermi3d\\plot_fermi3d_plain.rst", "examples\\04-fermi3d\\plot_fermi3d_spin-polarized.rst", "examples\\04-fermi3d\\plot_fermi3d_spin_texture.rst", "examples\\04-fermi3d\\sg_execution_times.rst", "examples\\05-other\\index.rst", "examples\\05-other\\plot_2dkmesh_generation.rst", "examples\\05-other\\plot_bandgap.rst", "examples\\05-other\\plot_ebs.rst", "examples\\05-other\\plot_kpath_generation.rst", "examples\\05-other\\sg_execution_times.rst", "examples\\06-PyPoscar\\index.rst", "examples\\06-PyPoscar\\plot_clusters_pyposcar.rst", "examples\\06-PyPoscar\\plot_finding_defects_pyposcar.rst", "examples\\06-PyPoscar\\plot_rdf_cutoff_pyposcar.rst", "examples\\06-PyPoscar\\plot_subsitution_pyposcar.rst", "examples\\06-PyPoscar\\plot_utils_pyposcar.rst", "examples\\06-PyPoscar\\sg_execution_times.rst", "examples\\index.rst", "getting-started\\authors.rst", "getting-started\\index.rst", "getting-started\\installation.rst", "getting-started\\why.rst", "index.rst", "user-guide\\atomic_projections.rst", "user-guide\\bands.rst", "user-guide\\cat.rst", "user-guide\\comparebands.rst", "user-guide\\dos.rst", "user-guide\\ebs.rst", "user-guide\\fermi2d.rst", "user-guide\\fermi3d.rst", "user-guide\\filter.rst", "user-guide\\index.rst", "user-guide\\kpath.rst", "user-guide\\repair.rst", "user-guide\\structure.rst", "user-guide\\unfold.rst"], "titles": ["band structure plotting Options", "band structure 2d plotting Options", "dos plotting Options", "fermi surface 2d plotting Options", "fermi surface 3d plotting Options", "Configuration Files", "unfold plotting Options", "pyprocar.core.BrillouinZone", "__init__", "wigner_seitz", "pyprocar.core.DensityOfStates", "__init__", "coupled_to_uncoupled_basis", "dos_sum", "get_current_basis", "is_non_collinear", "n_dos", "n_energies", "n_spins", "pyprocar.core.ElectronicBandStructure", "__init__", "bands_gradient", "bands_gradient_mesh", "bands_hessian", "bands_hessian_mesh", "bands_mesh", "calculate_scalar_gradient", "calculate_scalar_integral", "create_nd_mesh", "create_scaler_mesh", "create_vector_mesh", "ebs_ipr", "ebs_ipr_atom", "ebs_sum", "fermi_speed", "fermi_speed_mesh", "fermi_velocity", "fermi_velocity_mesh", "harmonic_average_effective_mass", "harmonic_average_effective_mass_mesh", "ibz2fbz", "index_mesh", "interpolate_mesh_grid", "is_non_collinear", "kpoints_cartesian", "kpoints_cartesian_mesh", "kpoints_mesh", "kpoints_reduced", "mesh_to_array", "n_kx", "n_ky", "n_kz", "natoms", "nbands", "nkpoints", "norbitals", "nprincipals", "nspins", "plot_kpoints", "projected_mesh", "projected_phase_mesh", "ravel_array", "unfold", "update_weights", "weights_mesh", "pyprocar.core.FermiSurface", "__init__", "add_axes_labels", "add_legend", "find_energy", "plot", "savefig", "show", "spin_texture", "pyprocar.core.FermiSurface3D", "__init__", "extend_surface", "project_atomic_projections", "project_fermi_speed", "project_fermi_velocity", "project_harmonic_effective_mass", "project_spin_texture_atomic_projections", "pyprocar.core.Isosurface", "__init__", "dxyz", "nX", "nY", "nZ", "surface_boundaries", "pyprocar.core.KPath", "__init__", "get_kpoints_transformed", "get_optimized_kpoints_transformed", "kdistances", "nsegments", "tick_names", "tick_positions", "write_to_file", "pyprocar.core.Structure", "__init__", "a", "alpha", "atomic_numbers", "b", "beta", "c", "cell_convex_hull", "density", "gamma", "get_space_group_international", "get_space_group_number", "get_spglib_symmetry_dataset", "get_wyckoff_positions", "is_point_inside", "lattice_corners", "masses", "natoms", "nspecies", "plot_cell_convex_hull", "reciprocal_lattice", "species", "supercell", "transform", "volume", "pyprocar.core.Surface", "__init__", "centers", "export", "faces_array", "set_color_with_cmap", "set_scalars", "set_vectors", "BrillouinZone", "DensityOfStates", "ElectronicBandStructure", "FermiSurface", "FermiSurface3D", "Core API", "Isosurface", "KPath", "Structure", "Surface", "API Reference", "pyprocar.io.abinit.AbinitKpoints", "__init__", "pyprocar.io.abinit.AbinitProcar", "__init__", "pyprocar.io.abinit.Output", "__init__", "pyprocar.io.bxsf.BxsfParser", "__init__", "parse_bxsf", "pyprocar.io.lobster.LobsterParser", "__init__", "dos", "dos_parametric", "dos_projected", "dos_to_dict", "dos_total", "final_structure", "initial_structure", "parse_structure", "species", "structure", "structures", "pyprocar.io.qe.QEParser", "__init__", "final_structure", "getKpointLabels", "initial_structure", "kpoints_cart", "species", "structure", "structures", "pyprocar.io.siesta.SiestaParser", "__init__", "pyprocar.io.vasp.Kpoints", "__init__", "pyprocar.io.vasp.Outcar", "__init__", "efermi", "get_symmetry_operations", "reciprocal_lattice", "rotations", "pyprocar.io.vasp.Poscar", "__init__", "pyprocar.io.vasp.Procar", "__init__", "kpoints_cartesian", "kpoints_reduced", "repair", "symmetrize", "pyprocar.io.vasp.VaspXML", "__init__", "bands", "bands_projected", "conv", "convergence", "convergence_electronic", "convergence_ionic", "dos", "dos_projected", "dos_to_dict", "dos_total", "energies", "energy", "fermi", "final_structure", "forces", "get_general", "get_params", "get_scstep", "get_set", "get_structure", "get_varray", "incar", "initial_structure", "is_finished", "iteration_data", "kpoints", "kpoints_list", "last_energy", "parse_vasprun", "potcar_info", "read", "species", "structure", "structures", "text_to_bool", "vasp_parameters", "AbinitParser", "BxsfParser", "IO API", "LobsterParser", "QEParser", "SiestaParser", "VaspParser", "pyprocar.plotter.DOSPlot", "__init__", "draw_fermi", "grid", "legend", "plot_dos", "plot_parametric", "plot_parametric_line", "plot_stack", "plot_stack_orbitals", "plot_stack_species", "save", "set_xlabel", "set_xlim", "set_xticks", "set_ylabel", "set_ylim", "set_yticks", "show", "update_config", "pyprocar.plotter.EBSPlot", "__init__", "draw_fermi", "grid", "legend", "plot_atomic_levels", "plot_bands", "plot_parameteric", "plot_parameteric_overlay", "plot_scatter", "save", "set_title", "set_xlabel", "set_xlim", "set_xticks", "set_ylabel", "set_ylim", "set_yticks", "show", "update_config", "pyprocar.plotter.ProcarPlot", "__init__", "atomicPlot", "parametricPlot", "plotBands", "scatterPlot", "EBSPlot", "DosPlot", "Plotter API", "ProcarPlot", "pyprocar.pyposcar.Poscar", "__init__", "add", "load_from_data", "parse", "remove", "sort", "write", "xyz", "poscarDiff", "pyprocar.pyposcar.poscar_modify", "__init__", "add", "change_elements", "pos_multiply", "pos_sum", "remove", "scale_lattice", "shift", "write", "pyprocar.pyposcar.poscar_supercell", "__init__", "supercell", "write", "PyPoscar API", "Poscar", "poscarUtils", "pyprocar.scripts.FermiHandler", "__init__", "create_isovalue_gif", "plot_fermi_cross_section", "plot_fermi_cross_section_box_widget", "plot_fermi_isoslider", "plot_fermi_surface", "print_default_settings", "bandgap", "bandsdosplot", "bandsplot", "bandsplot_2d", "cat", "dosplot", "fermi2D", "fermi3D", "generate2dkmesh", "kpath", "repair", "bandgap", "bandsdosplot", "bandsplot", "bandsplot_2d", "cat", "dosplot", "fermi2D", "fermi3D", "FermiHandler", "generate2dkmesh", "Scripts API", "kpath", "reapir", "Abinit Perperation", "DFTB+ Preparation", "Elk Perperation", "DFT Prep", "Lobster Perperation", "Quantum Espresso Preparation", "Siesta Perperation", "VASP Preparation", "Band Structure", "Plotting Atomic Levels", "Autobands plotting", "Plotting with Configurations in pyprocar", "Plotting band structure", "Comparing band structures", "Plotting Inverse participation ratio", "Plotting non colinear band structures in Quantum Espresso", "Plotting non colinear band structures in VASP", "Plotting spin polarized band structures", "Unfolding Band Structure", "Computation times", "Density of States", "Plotting density of states", "Plotting with Configurations in pyprocar", "Plotting non colinear dos in Quantum Espresso", "Plotting non colinear dos in VASP", "Plotting spin-polarized density of states", "Computation times", "Bands and Dos plot", "Plotting bandsdosplot", "Plotting bandsdosplot", "Computation times", "Fermi 2D", "Plotting fermi2d", "Plotting with Configurations in pyprocar", "Plotting fermi2d noncolinear", "Plotting rashba spin splitting", "Computation times", "Fermi 3D", "Showing how to get van alphen fequencies from the fermi surface", "Plotting with Configurations in pyprocar", "Plotting fermi3d cross_section", "Plotting fermi3d isoslider", "Plotting fermi3d isovalue_gif", "Plotting fermi3d plain", "Plotting fermi3d spin-polarized", "Plotting fermi3d spin_texture", "Computation times", "Other", "Example of kmesh_generator", "Example of finding the bandgap", "Example of finding the bandgap", "Example of kpath_generator", "Computation times", "PyPoscar", "Visualizing Clusters in Bi2Se3 Slab", "Finding defects in a POSCAR file", "Analyzing Radial Distribution Functions (RDF)", "Substituting Atoms in a POSCAR File", "Modifying a POSCAR File: Scaling, Supercells, and Defects", "Computation times", "Examples", "Authors & Citation", "Getting started", "Installation", "Why PyProcar?", "PyProcar", "Atomic Projections", "Band structure", "Concatenating multiple calculations", "Compare bands", "Density of States", "ElectronicBandStructure", "2D spin-texture", "3D Fermi surface", "Filtering data", "User Guide", "K Path", "Repair", "Structure", "Band unfolding"], "terms": {"descript": [0, 1, 2, 3, 4, 5, 6, 82, 88, 215, 357, 368, 379, 385, 416], "The": [0, 1, 2, 3, 4, 5, 6, 10, 13, 16, 17, 18, 19, 26, 31, 32, 33, 40, 42, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 62, 65, 69, 70, 73, 74, 82, 85, 86, 87, 90, 91, 92, 94, 95, 96, 100, 101, 103, 104, 105, 108, 109, 110, 112, 113, 119, 121, 122, 124, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 139, 140, 141, 149, 152, 158, 161, 165, 175, 176, 178, 179, 183, 184, 186, 188, 189, 191, 192, 194, 195, 200, 202, 230, 231, 233, 234, 235, 236, 237, 239, 241, 242, 243, 248, 249, 250, 252, 253, 257, 259, 262, 264, 265, 266, 274, 283, 284, 287, 288, 295, 296, 303, 305, 306, 309, 312, 313, 315, 316, 317, 318, 319, 320, 322, 323, 324, 325, 326, 327, 328, 329, 330, 332, 333, 334, 335, 336, 337, 338, 340, 341, 342, 343, 344, 345, 347, 350, 351, 353, 355, 356, 357, 360, 363, 367, 368, 371, 374, 375, 379, 384, 385, 395, 396, 397, 400, 401, 402, 404, 407, 408, 409, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425], "line": [0, 2, 3, 4, 6, 7, 239, 244, 259, 295, 357, 360, 363, 368, 371, 375, 379, 385, 386, 397, 402, 407, 409, 419, 421, 425], "valu": [0, 1, 2, 3, 4, 6, 16, 17, 74, 82, 129, 131, 134, 136, 137, 138, 178, 191, 245, 296, 324, 325, 327, 328, 329, 330, 356, 357, 368, 379, 380, 385, 388, 402, 413, 414, 416, 418, 419], "blue": [0, 2, 3, 6, 239, 242, 281, 329, 357, 360, 368, 378, 379, 380, 390, 394, 396, 397, 413, 419, 425], "red": [0, 2, 3, 6, 329, 357, 360, 368, 375, 379, 380, 390, 397, 419], "black": [0, 1, 2, 4, 6, 271, 357, 368, 385, 400, 401, 402, 403, 404, 415], "colormap": [0, 1, 2, 3, 4, 6, 129, 329, 357, 368, 375, 379, 385, 415, 419], "us": [0, 1, 2, 3, 4, 5, 6, 7, 62, 65, 74, 82, 88, 124, 127, 129, 130, 132, 133, 134, 135, 136, 137, 138, 139, 141, 142, 149, 156, 165, 175, 178, 191, 201, 215, 219, 220, 223, 229, 230, 231, 232, 233, 234, 235, 236, 279, 283, 284, 285, 287, 288, 291, 293, 312, 313, 315, 323, 324, 327, 328, 329, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 350, 351, 353, 355, 356, 357, 360, 363, 364, 368, 371, 375, 378, 379, 380, 381, 384, 385, 386, 394, 396, 397, 400, 401, 402, 403, 404, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425], "jet": [0, 1, 2, 3, 4, 6, 65, 280, 329, 357, 368, 379, 385, 390, 413, 415, 419], "scale": [0, 1, 2, 3, 4, 6, 287, 297, 301, 304, 356, 357, 368, 379, 385, 396, 399, 405, 406], "bar": [0, 1, 2, 3, 4, 6, 323, 329, 357, 368, 379, 385, 419], "none": [0, 1, 2, 3, 4, 6, 7, 8, 10, 11, 12, 13, 19, 20, 33, 58, 62, 65, 66, 69, 73, 76, 82, 83, 89, 90, 98, 99, 113, 124, 125, 127, 129, 145, 146, 147, 148, 152, 153, 155, 161, 184, 185, 186, 187, 191, 192, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 257, 258, 261, 262, 263, 264, 265, 266, 270, 271, 273, 274, 277, 278, 279, 280, 281, 282, 288, 289, 291, 316, 317, 318, 319, 320, 322, 323, 324, 325, 326, 327, 328, 329, 331, 357, 368, 378, 379, 380, 381, 384, 385, 396, 407, 413, 414, 418, 419, 420, 425], "fermi": [0, 1, 2, 5, 6, 19, 34, 35, 37, 65, 70, 73, 74, 75, 78, 134, 135, 136, 137, 142, 147, 161, 180, 186, 239, 259, 315, 316, 317, 318, 319, 320, 322, 323, 324, 325, 327, 328, 329, 339, 343, 350, 357, 360, 368, 375, 378, 379, 380, 381, 385, 386, 387, 388, 389, 390, 391, 392, 394, 407, 410, 411, 412, 413, 417, 418, 420, 421, 425], "dot": [0, 2, 6, 239, 357, 368, 375, 379, 400, 401, 402, 403, 404], "1": [0, 1, 2, 3, 4, 6, 10, 11, 12, 13, 19, 33, 64, 74, 75, 82, 83, 88, 122, 124, 155, 161, 186, 187, 192, 193, 239, 243, 244, 246, 247, 280, 287, 303, 305, 317, 318, 323, 324, 325, 326, 327, 328, 329, 331, 347, 350, 351, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 371, 374, 375, 378, 379, 380, 381, 385, 386, 387, 388, 389, 390, 391, 394, 395, 396, 397, 400, 401, 402, 403, 404, 407, 414, 418, 419, 420, 421, 425], "If": [0, 2, 6, 69, 178, 179, 237, 257, 287, 291, 296, 305, 326, 327, 329, 347, 353, 357, 368, 386, 407, 408, 413, 414, 416, 419, 420], "true": [0, 1, 2, 3, 4, 6, 13, 33, 58, 89, 90, 143, 144, 176, 177, 191, 217, 245, 280, 289, 294, 299, 300, 301, 302, 303, 305, 306, 310, 314, 315, 317, 318, 319, 320, 322, 323, 324, 325, 327, 329, 331, 348, 350, 351, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 394, 396, 397, 400, 401, 402, 403, 404, 413, 414, 416, 418, 419, 423, 425], "shown": [0, 2, 6, 327, 357, 368], "fals": [0, 1, 2, 3, 4, 6, 19, 58, 92, 287, 288, 289, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 310, 314, 315, 316, 317, 318, 319, 320, 323, 324, 325, 326, 327, 328, 329, 351, 357, 359, 368, 378, 379, 384, 385, 386, 387, 388, 389, 390, 391, 396, 400, 401, 403, 404, 413, 414, 415, 418, 419, 420, 425], "which": [0, 2, 6, 69, 82, 128, 155, 327, 328, 329, 343, 351, 353, 355, 356, 357, 360, 363, 368, 371, 390, 407, 412, 413, 417, 418, 419, 422, 425], "axi": [0, 1, 2, 4, 6, 70, 305, 327, 357, 368, 385, 418], "both": [0, 2, 6, 296, 327, 356, 357, 360, 364, 368, 375, 407, 410, 411, 413, 416, 425], "should": [0, 1, 2, 4, 6, 10, 33, 92, 130, 190, 210, 301, 302, 304, 306, 326, 327, 347, 357, 368, 385, 395, 407, 412, 413, 414, 418, 420, 425], "drawn": [0, 2, 6, 357, 368], "grei": [0, 2, 6, 357, 368, 402], "solid": [0, 2, 3, 6, 82, 357, 368, 379], "draw": [0, 2, 6, 239, 259, 357, 368], "major": [0, 2, 6, 274, 357, 360, 368, 407], "minor": [0, 2, 6, 274, 357, 368], "uparrow": [0, 2, 6, 357, 368, 416, 421], "downarrow": [0, 2, 6, 357, 368, 416, 421], "dash": [0, 2, 3, 6, 357, 368, 379], "0": [0, 1, 2, 3, 4, 6, 10, 12, 13, 58, 74, 75, 82, 88, 122, 124, 155, 190, 192, 193, 259, 281, 287, 292, 296, 300, 303, 305, 317, 318, 327, 328, 329, 331, 347, 348, 350, 351, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 367, 368, 369, 370, 371, 372, 374, 375, 376, 378, 379, 380, 382, 385, 386, 387, 388, 389, 390, 391, 392, 394, 395, 396, 397, 398, 400, 401, 402, 403, 404, 405, 407, 412, 413, 416, 418, 419, 420, 421, 422, 423, 425], "style": [0, 1, 2, 4, 6, 239, 357, 363, 368, 371, 385], "point": [0, 1, 2, 4, 6, 10, 40, 41, 54, 56, 58, 82, 84, 85, 86, 87, 90, 113, 135, 137, 138, 143, 183, 190, 262, 264, 265, 266, 279, 323, 329, 330, 355, 356, 357, 360, 368, 375, 379, 385, 394, 397, 400, 401, 402, 403, 404, 410, 411, 415, 417, 418, 419, 421, 425], "o": [0, 2, 6, 281, 282, 327, 329, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 394, 395, 396, 397, 400, 401, 402, 403, 404, 412, 413, 416, 419], "v": [0, 2, 6, 82, 83, 327, 329, 357, 368, 375, 412, 413, 416, 419], "d": [0, 2, 6, 10, 12, 21, 22, 23, 24, 36, 37, 327, 329, 357, 358, 368, 407, 412, 413, 415, 416, 419], "size": [0, 1, 2, 3, 4, 6, 58, 62, 65, 73, 92, 130, 281, 282, 290, 300, 309, 323, 329, 355, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 379, 385, 386, 397, 404, 419, 420, 425], "2": [0, 1, 2, 3, 6, 10, 12, 13, 32, 42, 74, 82, 88, 155, 327, 329, 350, 351, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 384, 385, 386, 387, 388, 389, 390, 400, 401, 402, 403, 404, 407, 418, 419, 420, 421, 425], "file": [0, 2, 6, 97, 145, 147, 149, 151, 152, 161, 165, 168, 175, 176, 178, 179, 180, 183, 184, 186, 192, 230, 231, 233, 234, 235, 236, 267, 287, 288, 291, 294, 295, 296, 306, 310, 312, 313, 315, 322, 323, 326, 327, 329, 331, 332, 337, 343, 345, 346, 347, 348, 350, 351, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 367, 368, 369, 370, 371, 372, 374, 375, 376, 378, 379, 380, 381, 382, 384, 385, 386, 387, 388, 389, 390, 391, 392, 394, 397, 398, 399, 400, 405, 406, 407, 410, 411, 412, 413, 414, 416, 419, 420, 421, 423, 425], "name": [0, 2, 6, 19, 95, 130, 131, 152, 161, 165, 249, 251, 252, 254, 267, 269, 271, 272, 289, 294, 295, 306, 310, 315, 322, 323, 324, 325, 329, 357, 368, 407, 412, 413, 419, 420, 425], "save": [0, 2, 3, 6, 71, 165, 287, 310, 323, 324, 325, 327, 328, 329, 351, 357, 368, 378, 379, 380, 381, 401, 404, 413, 415, 418, 419, 425], "figur": [0, 2, 3, 6, 327, 343, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 413, 415, 425], "null": [0, 2, 6, 357, 368], "displai": [0, 2, 6, 355, 357, 368, 403, 407, 415], "weight": [0, 2, 6, 19, 20, 62, 63, 64, 134, 137, 220, 262, 264, 265, 266, 350, 357, 368, 417, 420, 421, 425], "width": [0, 2, 6, 262, 264, 266, 357, 368, 397, 419, 425], "height": [0, 2, 6, 357, 368], "inch": [0, 2, 6, 357, 368, 375, 379], "9": [0, 2, 6, 280, 281, 346, 355, 357, 360, 361, 368, 369, 379, 380, 381, 386, 387, 388, 391, 396, 400, 412, 421], "6": [0, 1, 2, 4, 6, 10, 13, 155, 327, 329, 348, 355, 357, 358, 359, 362, 363, 364, 367, 368, 370, 371, 374, 375, 378, 379, 380, 381, 385, 386, 387, 388, 389, 390, 391, 394, 397, 400, 407, 412, 413, 415, 419, 421, 422], "resolut": [0, 2, 6, 357, 360, 368], "per": [0, 1, 2, 4, 6, 156, 288, 293, 357, 368, 375, 379, 385], "": [0, 2, 6, 10, 12, 13, 142, 155, 292, 300, 327, 329, 346, 355, 356, 357, 368, 384, 396, 397, 400, 401, 402, 404, 407, 412, 416, 418, 419, 420, 421], "control": [1, 3, 4, 5, 74, 329, 350, 360, 364, 379, 385, 407, 419], "surfac": [1, 5, 7, 65, 70, 73, 74, 76, 77, 78, 79, 80, 81, 82, 88, 125, 126, 127, 128, 129, 130, 131, 135, 136, 137, 138, 239, 315, 316, 317, 318, 319, 320, 328, 329, 339, 343, 356, 379, 381, 383, 385, 386, 387, 388, 389, 390, 391, 392, 394, 406, 407, 410, 411, 412, 413, 418, 421], "color": [1, 4, 58, 65, 73, 124, 129, 130, 239, 242, 262, 264, 266, 271, 281, 323, 328, 329, 355, 356, 357, 359, 363, 368, 371, 375, 378, 379, 385, 394, 396, 397, 400, 401, 402, 403, 404, 412, 413, 415, 416, 418, 419, 425], "spin": [1, 2, 3, 4, 10, 13, 18, 33, 57, 65, 73, 79, 81, 135, 149, 155, 158, 242, 243, 244, 245, 246, 247, 257, 258, 262, 264, 265, 266, 316, 317, 318, 319, 320, 323, 324, 325, 326, 327, 328, 329, 343, 348, 351, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 364, 365, 366, 367, 368, 369, 370, 372, 374, 375, 377, 378, 379, 382, 383, 384, 385, 387, 388, 389, 392, 394, 395, 396, 397, 406, 407, 410, 411, 414, 416, 417, 419, 421, 425], "polar": [1, 354, 355, 356, 357, 358, 359, 360, 364, 365, 366, 367, 368, 372, 374, 375, 378, 383, 384, 385, 387, 388, 389, 392, 395, 396, 397, 406, 412, 413, 414, 421, 425], "opac": [1, 4, 357, 368, 385], "how": [1, 4, 58, 90, 142, 329, 351, 355, 357, 368, 375, 379, 383, 385, 392, 401, 403, 406, 407, 419], "mani": [1, 4, 90, 329, 385, 407, 412, 413, 419, 420], "zone": [1, 4, 7, 58, 82, 132, 137, 329, 385, 414, 417, 418, 419, 425], "gener": [1, 4, 7, 82, 132, 136, 137, 138, 141, 145, 307, 311, 313, 326, 327, 328, 329, 330, 342, 343, 344, 346, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 394, 395, 396, 397, 400, 401, 402, 403, 404, 406, 407, 410, 411, 414, 416, 418, 419, 420, 421], "thi": [1, 4, 5, 7, 10, 12, 15, 19, 32, 42, 43, 58, 62, 65, 70, 73, 74, 82, 88, 124, 127, 136, 137, 138, 141, 142, 143, 145, 147, 149, 151, 155, 165, 168, 196, 209, 210, 211, 212, 217, 223, 228, 229, 232, 285, 291, 293, 300, 306, 308, 309, 311, 315, 323, 325, 326, 327, 328, 329, 331, 332, 343, 346, 347, 349, 351, 353, 355, 356, 357, 360, 364, 368, 375, 379, 380, 384, 385, 386, 387, 388, 389, 390, 391, 394, 396, 397, 400, 401, 402, 403, 404, 407, 408, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425], "i": [1, 4, 5, 13, 15, 19, 21, 22, 23, 24, 25, 32, 34, 35, 36, 37, 38, 39, 43, 59, 60, 62, 64, 65, 73, 74, 82, 113, 122, 124, 127, 129, 132, 133, 134, 135, 136, 137, 138, 139, 141, 142, 149, 151, 165, 175, 190, 210, 217, 230, 231, 232, 233, 234, 235, 236, 237, 242, 257, 283, 284, 285, 286, 287, 288, 289, 294, 295, 296, 298, 299, 300, 301, 302, 303, 304, 305, 306, 308, 309, 310, 311, 312, 313, 315, 323, 325, 326, 327, 328, 329, 333, 334, 335, 336, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 349, 350, 351, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 394, 396, 397, 400, 401, 402, 403, 404, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 423, 425], "list": [1, 2, 4, 7, 8, 13, 19, 20, 21, 23, 31, 32, 33, 34, 36, 38, 41, 48, 65, 66, 70, 73, 74, 75, 76, 82, 83, 84, 88, 90, 95, 96, 98, 102, 115, 120, 124, 126, 128, 130, 137, 140, 149, 151, 155, 156, 159, 160, 162, 163, 164, 167, 169, 171, 172, 173, 204, 218, 227, 241, 242, 243, 244, 245, 246, 247, 250, 251, 253, 254, 257, 258, 261, 262, 264, 265, 266, 270, 271, 273, 274, 288, 290, 292, 297, 299, 300, 301, 302, 303, 305, 316, 317, 318, 319, 320, 323, 324, 325, 326, 327, 328, 329, 331, 350, 351, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 400, 401, 403, 404, 407, 413, 414, 416, 417, 418, 419, 420], "direct": [1, 4, 49, 50, 51, 74, 76, 82, 84, 85, 86, 87, 287, 288, 289, 290, 294, 299, 301, 302, 304, 305, 306, 327, 329, 330, 385, 394, 403, 407, 412, 413, 414, 417, 418, 419, 420], "ex": [1, 4, 385], "high": [1, 4, 74, 297, 298, 329, 355, 356, 360, 385, 413, 414, 419], "project": [1, 3, 4, 10, 11, 12, 19, 20, 31, 32, 33, 40, 59, 60, 65, 73, 74, 77, 79, 80, 81, 133, 134, 135, 137, 155, 156, 157, 165, 191, 195, 201, 202, 324, 325, 327, 329, 347, 351, 353, 355, 357, 358, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 378, 379, 385, 390, 407, 410, 411, 414, 415, 416, 417, 419, 420, 421], "algorithmus": [1, 4, 385], "either": [1, 4, 385, 407], "normal": [1, 4, 74, 75, 124, 129, 325, 329, 385, 407, 418, 419], "interpol": [1, 4, 10, 42, 70, 73, 82, 88, 136, 137, 152, 161, 186, 192, 324, 325, 329, 385, 413, 419], "factor": [1, 4, 10, 74, 82, 152, 161, 186, 192, 287, 297, 301, 302, 304, 325, 329, 385, 396, 404, 419, 425], "wirefram": [1, 4, 385, 419], "brillouin": [1, 4, 7, 58, 82, 132, 137, 329, 385, 414, 418, 419, 425], "3": [1, 3, 4, 7, 10, 12, 13, 19, 21, 22, 23, 24, 26, 36, 37, 45, 46, 62, 82, 98, 124, 126, 155, 289, 290, 301, 302, 327, 329, 350, 355, 357, 358, 360, 371, 375, 378, 379, 380, 381, 384, 385, 389, 390, 396, 397, 400, 401, 403, 404, 407, 409, 418, 419, 420, 421, 425], "5": [1, 4, 10, 12, 13, 82, 109, 110, 111, 112, 124, 155, 191, 327, 329, 347, 348, 351, 353, 357, 358, 359, 360, 362, 363, 364, 367, 368, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 394, 397, 400, 401, 402, 403, 404, 407, 412, 413, 415, 419, 421, 422, 425], "linewidth": [1, 4, 239, 280, 357, 368, 379, 385], "textur": [1, 3, 4, 73, 79, 81, 135, 316, 317, 318, 319, 320, 329, 379, 381, 385, 394, 407, 412, 413, 419, 421], "ax": [1, 3, 4, 237, 238, 257, 258, 279, 280, 281, 282, 323, 324, 325, 327, 355, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 379, 385, 402, 413, 415, 425], "limit": [1, 270, 273, 327, 355, 357, 368, 375, 379, 385, 407, 413], "energi": [1, 2, 4, 10, 11, 17, 19, 65, 69, 70, 73, 74, 133, 134, 135, 137, 147, 158, 161, 180, 186, 206, 221, 259, 279, 316, 319, 322, 323, 324, 325, 327, 328, 329, 347, 353, 355, 356, 360, 367, 368, 369, 370, 371, 378, 379, 380, 385, 387, 388, 390, 410, 411, 413, 417, 418, 419, 421, 425], "kx": [1, 4, 49, 50, 385], "label": [1, 2, 3, 4, 19, 20, 67, 68, 90, 241, 249, 252, 261, 269, 272, 350, 351, 353, 357, 360, 364, 368, 379, 385, 397, 400, 401, 402, 403, 404, 413, 416, 417, 421, 425], "ky": [1, 4, 51, 385], "kz": [1, 4, 385], "linewdith": [1, 4, 385], "th": [1, 4, 72, 385, 407], "colorbar": [1, 2, 4, 368, 385], "scalar": [1, 4, 26, 27, 124, 125, 130, 136, 137, 138, 385, 396, 400, 401, 403, 404], "ital": [1, 4, 385], "bold": [1, 4, 385], "titl": [1, 4, 155, 268, 323, 325, 356, 357, 368, 385, 396, 400, 401, 402, 403, 404, 407, 416, 418, 419, 425], "font": [1, 4, 368, 385], "4": [1, 4, 10, 12, 13, 32, 58, 155, 327, 329, 355, 357, 358, 359, 360, 362, 363, 367, 368, 370, 371, 375, 378, 379, 380, 381, 384, 385, 386, 389, 390, 391, 396, 400, 403, 404, 407, 412, 415, 419, 421, 425], "x": [1, 2, 3, 4, 73, 82, 84, 85, 131, 249, 250, 269, 270, 271, 299, 301, 305, 327, 330, 346, 348, 350, 351, 368, 379, 380, 381, 385, 394, 402, 409, 413, 418, 419, 420, 421], "posit": [1, 4, 88, 96, 112, 251, 254, 271, 287, 289, 290, 297, 299, 301, 302, 305, 310, 329, 385, 386, 400, 401, 402, 403, 404, 419], "01": [1, 4, 296, 328, 365, 372, 382, 385, 392, 404, 418], "y": [1, 2, 3, 4, 73, 82, 84, 86, 131, 252, 253, 272, 273, 274, 299, 301, 305, 327, 330, 368, 379, 380, 381, 385, 394, 397, 402, 403, 418, 419, 420, 421], "outlin": [1, 4, 385], "white": [1, 4, 329, 385, 419, 423], "background": [1, 4, 329, 385, 419], "36": [1, 4, 385, 397, 400, 401, 403, 404, 425], "number": [1, 4, 10, 13, 16, 17, 18, 33, 49, 50, 51, 52, 53, 54, 55, 56, 57, 74, 85, 86, 87, 94, 102, 109, 110, 116, 117, 130, 162, 171, 243, 244, 246, 247, 288, 301, 302, 316, 319, 329, 330, 360, 385, 396, 407, 413, 415, 417, 419, 421, 422, 423], "orbit": [1, 4, 10, 12, 13, 14, 19, 33, 55, 73, 155, 243, 244, 245, 246, 247, 316, 317, 318, 319, 320, 323, 324, 325, 327, 328, 329, 356, 357, 359, 361, 362, 363, 367, 368, 369, 370, 371, 375, 378, 379, 380, 381, 385, 389, 390, 396, 410, 411, 415, 416, 417, 418, 419, 421, 425], "05": [1, 4, 109, 110, 111, 112, 191, 331, 372, 385, 392, 397, 400, 401, 403, 404], "step": [1, 4, 178, 204, 208, 211, 218, 226, 227, 351, 353, 385, 400, 401, 403, 404, 407], "show": [1, 4, 58, 317, 318, 319, 320, 323, 324, 325, 327, 329, 347, 350, 351, 353, 357, 359, 368, 379, 383, 385, 386, 387, 389, 390, 391, 392, 394, 396, 397, 401, 402, 403, 406, 407, 413, 415, 416, 418, 419, 425], "larg": [1, 360, 402, 414, 420], "clip": [1, 82], "term": [1, 309, 384, 407], "k": [1, 26, 32, 54, 58, 135, 137, 139, 143, 178, 190, 269, 279, 342, 343, 348, 350, 355, 357, 358, 359, 360, 361, 362, 363, 364, 374, 375, 394, 402, 410, 411, 414, 415, 417, 418, 419, 421, 425], "_": [1, 364, 374, 375, 378, 379, 380, 381, 394, 397, 421], "aa": [1, 3, 379], "ev": [1, 2, 272, 355, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 387, 388, 395, 418], "add": [1, 3, 67, 68, 74, 279, 287, 293, 297, 302, 347, 351, 379, 403, 407], "plane": [1, 135, 137, 328, 329, 386, 394, 412, 413, 418, 419], "level": [1, 65, 70, 73, 259, 279, 287, 288, 297, 298, 311, 312, 323, 329, 347, 354, 356, 360, 365, 381, 387, 388, 406, 412, 413, 419, 420], "25": [1, 353, 384, 388, 400, 401, 404], "text": [1, 2, 196, 228, 368], "whether": [1, 4, 327, 356, 385, 407, 425], "plotter": [1, 4, 142, 283, 284, 286, 355, 360, 364, 385, 394, 396, 397, 400, 401, 403, 404], "render": [1, 4, 58, 384, 385, 386, 387, 388, 389, 390, 391, 394, 396, 397, 400, 401, 403, 404, 407, 419], "offscreen": [1, 4, 385], "caemera": [1, 4, 385], "iso": [1, 4, 328, 329, 385, 418, 419], "isoslid": [1, 4, 383, 385, 392, 406], "modern": [1, 4, 385], "slice": [1, 4, 329, 385, 419], "wheather": [1, 4, 385], "cross": [1, 4, 329, 385, 407, 419], "section": [1, 4, 142, 232, 329, 343, 346, 347, 351, 357, 363, 368, 371, 375, 379, 385, 407, 416, 418, 419, 421], "area": [1, 4, 327, 329, 385, 386, 407, 416, 419], "green": [2, 329, 368, 419], "cyan": [2, 368], "magenta": [2, 368], "yellow": [2, 368], "orang": [2, 368, 416], "purpl": [2, 368], "brown": [2, 368], "navi": [2, 368, 378], "maroon": [2, 368], "oliv": [2, 368], "arial": [2, 368], "16": [2, 323, 329, 361, 368, 369, 381, 384, 385, 392, 400, 401, 407, 412, 419], "total": [2, 10, 11, 133, 137, 157, 158, 202, 203, 288, 327, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 367, 368, 369, 370, 371, 372, 374, 375, 376, 378, 379, 380, 381, 382, 384, 385, 386, 387, 388, 389, 390, 391, 392, 394, 395, 396, 397, 398, 400, 401, 402, 403, 404, 405, 413, 414, 416, 420, 421], "up": [2, 10, 149, 158, 190, 296, 363, 368, 371, 409, 413, 416, 419, 420, 425], "down": [2, 10, 158, 363, 368, 371, 413, 416, 419, 420, 425], "program": [2, 368, 407], "print": [2, 316, 317, 318, 319, 320, 324, 327, 328, 351, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 396, 400, 401, 402, 403, 404, 413, 418, 425], "detail": [2, 133, 134, 135, 136, 139, 140, 178, 327, 347, 358, 361, 362, 363, 367, 368, 369, 370, 371, 397, 407, 413, 419], "inform": [2, 124, 133, 134, 137, 139, 140, 143, 149, 152, 161, 168, 175, 178, 211, 218, 220, 223, 224, 294, 343, 347, 353, 368, 379, 380, 394, 396, 397, 407, 412, 413, 416, 417, 419, 420, 421], "rang": [2, 316, 319, 329, 355, 368, 387, 388, 394, 400, 419, 420, 425], "stack": [2, 245, 246, 247, 327, 367, 368, 369, 370, 374, 375, 421], "mode": [2, 70, 316, 317, 318, 319, 320, 323, 324, 325, 327, 328, 329, 343, 347, 350, 351, 353, 356, 357, 359, 360, 364, 368, 375, 379, 380, 381, 384, 385, 386, 407, 412, 413, 415, 418, 419, 421, 425], "boolean": [3, 15, 19, 43, 58, 92, 113, 176, 191, 239, 315, 316, 317, 318, 319, 320, 322, 323, 324, 325, 326, 327, 328, 329, 368, 379, 413, 414, 417, 418, 419], "legend": [3, 357, 364, 368, 379, 402], "arrow": [3, 4, 73, 328, 329, 379, 380, 385, 396, 418, 419], "repres": [3, 7, 21, 22, 23, 24, 36, 37, 98, 124, 130, 149, 197, 198, 199, 227, 245, 327, 329, 356, 379, 407, 416, 419, 425], "densiti": [3, 5, 10, 13, 32, 133, 137, 142, 152, 157, 158, 165, 202, 232, 237, 242, 243, 285, 323, 327, 334, 338, 343, 347, 349, 350, 368, 372, 375, 379, 410, 411, 412, 413, 420, 421, 424], "10": [3, 327, 329, 347, 357, 358, 359, 361, 368, 369, 375, 379, 380, 384, 396, 397, 400, 401, 407, 412, 419, 420, 421], "z": [3, 70, 73, 82, 84, 87, 131, 299, 301, 305, 328, 330, 355, 357, 360, 364, 368, 378, 379, 380, 381, 385, 394, 418, 419, 420, 421], "imag": [3, 82, 329, 379, 384, 385, 386, 387, 388, 389, 390, 391, 394, 396, 397, 400, 401, 403, 404, 409, 413, 419], "k_": [3, 379, 394], "band": [4, 5, 19, 20, 21, 22, 23, 24, 25, 40, 53, 62, 65, 66, 69, 74, 82, 90, 94, 134, 135, 137, 139, 142, 149, 165, 166, 168, 191, 195, 237, 242, 257, 263, 267, 268, 277, 278, 283, 285, 286, 316, 317, 318, 319, 320, 322, 323, 324, 328, 329, 331, 335, 336, 340, 341, 343, 348, 350, 355, 356, 357, 360, 365, 371, 374, 375, 379, 381, 384, 385, 386, 387, 388, 389, 390, 391, 395, 397, 410, 411, 412, 416, 418, 419, 420, 421, 422], "pyprocar": [5, 32, 62, 91, 92, 121, 122, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 154, 155, 156, 159, 160, 163, 164, 167, 169, 172, 173, 191, 200, 201, 230, 231, 232, 233, 234, 235, 236, 283, 284, 285, 286, 296, 311, 312, 313, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 350, 351, 353, 354, 355, 356, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 369, 370, 371, 372, 374, 375, 377, 378, 380, 381, 382, 383, 384, 386, 387, 388, 389, 390, 391, 392, 394, 395, 396, 397, 400, 401, 402, 403, 404, 406, 409, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425], "cfg": [5, 142, 357, 368, 379, 385], "help": [5, 62, 65, 135, 137, 152, 347, 349, 351, 353, 407, 408, 420, 425], "custom": [5, 324, 325, 375, 379, 385, 407, 413], "plot": [5, 32, 58, 65, 67, 68, 71, 72, 73, 118, 135, 137, 139, 142, 237, 239, 240, 242, 243, 244, 245, 246, 247, 248, 250, 251, 253, 254, 255, 257, 260, 261, 262, 263, 264, 265, 266, 267, 275, 277, 279, 283, 284, 285, 286, 315, 316, 317, 318, 319, 320, 323, 324, 325, 327, 328, 329, 331, 334, 335, 336, 338, 339, 340, 341, 343, 348, 354, 359, 365, 366, 372, 376, 377, 382, 383, 384, 392, 396, 402, 410, 411, 412, 414, 415, 416, 417, 419, 420, 421, 423], "option": [5, 10, 13, 19, 33, 58, 62, 65, 70, 73, 74, 76, 90, 97, 109, 110, 111, 112, 113, 122, 127, 129, 131, 149, 152, 155, 161, 165, 176, 178, 179, 184, 186, 191, 192, 237, 239, 242, 243, 244, 245, 246, 247, 248, 250, 251, 253, 254, 257, 259, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 315, 316, 317, 318, 319, 320, 322, 323, 324, 325, 326, 327, 328, 329, 331, 346, 347, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 407, 413, 414, 418, 419, 420, 425], "our": [5, 355, 356, 360, 381, 407, 408, 418], "code": [5, 142, 149, 152, 153, 215, 232, 314, 315, 322, 323, 324, 325, 327, 328, 329, 346, 347, 348, 350, 351, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 394, 395, 396, 397, 400, 401, 402, 403, 404, 406, 407, 410, 411, 412, 413, 415, 416, 417, 418, 419, 421, 422, 424, 425], "base": [5, 292, 300, 329, 356, 397, 407, 413, 417, 419], "each": [5, 10, 21, 22, 23, 24, 25, 34, 35, 36, 37, 38, 39, 59, 60, 64, 82, 84, 115, 124, 133, 137, 204, 214, 218, 261, 262, 264, 265, 266, 287, 288, 297, 301, 302, 305, 327, 329, 356, 360, 400, 402, 407, 412, 413, 414, 415, 416, 417, 419, 420, 421], "yaml": 5, "contain": [5, 9, 10, 65, 82, 90, 128, 147, 270, 273, 323, 327, 328, 329, 343, 353, 355, 356, 357, 360, 368, 378, 380, 403, 407, 413, 418, 419, 420], "set": [5, 70, 82, 129, 130, 131, 182, 212, 249, 250, 251, 252, 253, 254, 268, 269, 270, 271, 272, 273, 274, 287, 326, 327, 328, 329, 346, 347, 348, 350, 351, 353, 357, 358, 359, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 397, 401, 402, 410, 411, 412, 413, 414, 415, 416, 418, 419, 423, 425], "relat": [5, 293, 396, 417, 422, 424], "properti": [5, 15, 16, 17, 18, 21, 22, 23, 24, 25, 34, 35, 36, 37, 38, 39, 41, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59, 60, 64, 84, 85, 86, 87, 88, 93, 94, 95, 96, 100, 101, 102, 103, 104, 105, 106, 107, 108, 114, 115, 116, 117, 119, 120, 123, 126, 128, 154, 156, 157, 158, 159, 160, 162, 163, 164, 167, 169, 171, 172, 173, 178, 180, 182, 183, 188, 189, 194, 195, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 215, 216, 217, 218, 219, 220, 221, 223, 225, 226, 227, 229, 297, 298, 329, 357, 368, 375, 384, 385, 386, 387, 388, 389, 390, 391, 407, 419], "below": [5, 356, 358, 359, 361, 362, 363, 364, 367, 369, 370, 371, 374, 375, 378, 380, 381, 384, 386, 387, 388, 389, 390, 391, 397, 407, 412, 413, 415], "ar": [5, 12, 58, 62, 69, 73, 82, 90, 124, 137, 158, 165, 228, 245, 285, 287, 289, 296, 297, 299, 305, 324, 325, 327, 328, 329, 343, 347, 348, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 400, 401, 402, 404, 407, 408, 409, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421], "some": [5, 149, 190, 329, 343, 351, 356, 396, 407, 412, 419], "kei": [5, 158, 178, 245, 296, 324, 325, 327, 356, 407, 413, 419], "you": [5, 142, 288, 310, 329, 347, 349, 350, 351, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 394, 396, 397, 400, 401, 402, 403, 404, 407, 408, 409, 416, 417, 419, 420, 422, 424, 425], "might": [5, 82, 407, 409, 416], "find": [5, 62, 69, 70, 73, 82, 88, 180, 182, 183, 322, 356, 393, 398, 399, 402, 405, 406, 407, 413, 425], "chapter": [5, 137, 285, 311], "intend": [5, 137, 142, 285, 311, 407], "describ": [5, 137, 285, 311], "data": [5, 137, 142, 178, 285, 287, 290, 311, 315, 343, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 395, 396, 397, 400, 401, 402, 403, 404, 407, 410, 411, 417, 421, 422, 424], "type": [5, 9, 12, 13, 14, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 43, 44, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 62, 64, 69, 70, 74, 82, 84, 85, 86, 87, 88, 91, 92, 93, 94, 95, 96, 98, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 119, 120, 121, 122, 123, 126, 127, 128, 137, 142, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 167, 169, 170, 171, 172, 173, 178, 180, 182, 183, 188, 189, 194, 195, 196, 200, 201, 202, 203, 215, 219, 220, 224, 237, 239, 240, 241, 242, 248, 249, 252, 255, 257, 263, 285, 288, 296, 309, 311, 322, 324, 325, 328, 329, 330, 343, 360, 401, 404, 407, 412, 413, 418, 419], "assist": [5, 74, 137, 285], "process": [5, 137, 145, 343, 356, 364, 374, 375, 378, 379, 380, 381, 394, 397, 407, 410, 411, 413, 418, 420, 421, 425], "electron": [5, 19, 134, 137, 142, 161, 178, 194, 197, 198, 204, 218, 237, 257, 283, 285, 312, 313, 356, 364, 374, 375, 378, 379, 380, 381, 394, 396, 397, 407, 410, 411, 412, 413, 419, 421], "structur": [5, 19, 62, 90, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 134, 137, 139, 142, 147, 159, 160, 165, 167, 169, 178, 186, 187, 191, 207, 209, 213, 216, 237, 238, 257, 263, 268, 277, 285, 286, 287, 311, 313, 323, 331, 335, 336, 340, 341, 343, 348, 350, 356, 357, 360, 365, 368, 374, 375, 378, 379, 380, 381, 385, 394, 395, 396, 397, 400, 402, 407, 410, 411, 412, 415, 416, 420, 421, 422, 425], "ha": [5, 82, 137, 145, 175, 176, 229, 232, 285, 311, 327, 329, 343, 346, 347, 350, 351, 353, 360, 384, 404, 407, 419, 425], "follow": [5, 10, 82, 137, 190, 232, 285, 311, 327, 329, 343, 347, 348, 350, 351, 353, 355, 356, 357, 360, 368, 375, 379, 380, 385, 394, 397, 407, 409, 412, 413, 414, 416, 417, 419, 420, 421, 425], "band_structur": [5, 365], "yml": 5, "band_structure_2d": 5, "2d": [5, 65, 70, 73, 135, 137, 325, 328, 329, 336, 339, 341, 342, 343, 379, 380, 394, 410, 411, 419, 421], "do": [5, 16, 74, 142, 155, 156, 165, 201, 203, 237, 238, 245, 246, 247, 248, 310, 323, 327, 329, 350, 351, 353, 355, 356, 357, 360, 363, 364, 366, 367, 368, 371, 372, 374, 375, 379, 384, 385, 386, 387, 388, 389, 390, 391, 394, 396, 397, 400, 401, 403, 404, 407, 412, 413, 415, 416, 419], "state": [5, 10, 13, 82, 133, 137, 142, 152, 157, 158, 202, 237, 242, 243, 285, 323, 327, 328, 334, 338, 343, 347, 350, 356, 368, 372, 375, 407, 410, 411, 412, 413, 418, 421], "fermi_surface_3d": 5, "3d": [5, 42, 74, 136, 137, 316, 317, 318, 319, 320, 329, 343, 385, 410, 411, 421], "fermi_surface_2d": 5, "unfold": [5, 353, 354, 365, 406, 410, 411, 421], "class": [7, 10, 19, 65, 73, 74, 82, 89, 98, 124, 133, 134, 136, 137, 138, 140, 141, 143, 145, 147, 149, 152, 165, 174, 175, 176, 178, 184, 186, 192, 237, 257, 277, 286, 287, 289, 290, 291, 294, 297, 298, 306, 307, 308, 309, 312, 313, 314, 315, 384, 385, 386, 387, 388, 389, 390, 391, 402, 407, 417, 419, 422, 424], "reciprocal_lattic": [7, 8, 19, 20, 145, 146, 161, 186, 187, 417, 424], "ndarrai": [7, 8, 10, 11, 19, 20, 21, 22, 23, 24, 25, 26, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 47, 48, 58, 59, 60, 62, 64, 65, 73, 82, 83, 91, 92, 93, 112, 113, 114, 119, 121, 122, 124, 125, 130, 131, 161, 170, 183, 186, 187, 188, 189, 194, 195, 201, 219, 262, 264, 265, 266, 288, 289, 290, 300, 301, 302, 303, 304, 305, 309, 324, 325, 402, 413], "transformation_matrix": [7, 8, 58, 62, 91, 92, 122, 425], "int": [7, 8, 10, 11, 13, 16, 17, 18, 19, 20, 33, 49, 50, 51, 52, 53, 54, 55, 56, 57, 70, 73, 74, 75, 76, 82, 83, 85, 86, 87, 94, 110, 116, 117, 155, 161, 162, 171, 186, 187, 242, 243, 244, 245, 246, 247, 250, 251, 253, 254, 257, 258, 262, 264, 265, 266, 271, 288, 292, 300, 303, 316, 317, 318, 319, 320, 323, 324, 325, 326, 327, 328, 329, 330, 331, 413, 414, 418, 419, 420], "sourc": [7, 8, 9, 10, 11, 12, 13, 14, 19, 20, 26, 27, 28, 29, 30, 31, 32, 33, 40, 42, 48, 58, 61, 62, 63, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 89, 90, 91, 92, 97, 98, 99, 109, 110, 111, 112, 113, 118, 121, 122, 124, 125, 127, 129, 130, 131, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 155, 161, 165, 166, 168, 170, 174, 175, 176, 177, 178, 179, 181, 184, 185, 186, 187, 190, 191, 192, 193, 196, 209, 210, 211, 212, 213, 214, 222, 224, 228, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 394, 395, 396, 397, 400, 401, 402, 403, 404, 406, 407, 408, 410, 411, 413, 414, 418, 419, 420, 423, 425], "A": [7, 10, 19, 65, 69, 91, 92, 98, 113, 118, 121, 126, 128, 151, 156, 161, 176, 178, 184, 186, 191, 192, 237, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 257, 259, 260, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 277, 287, 290, 304, 309, 316, 317, 318, 319, 320, 322, 323, 324, 325, 326, 328, 329, 348, 360, 364, 374, 375, 378, 379, 380, 381, 384, 394, 397, 402, 407, 412, 413, 414, 418, 419, 420, 425], "object": [7, 19, 65, 74, 90, 124, 129, 154, 155, 156, 165, 179, 186, 200, 201, 215, 219, 220, 237, 257, 296, 297, 298, 299, 300, 303, 309, 313, 327, 329, 359, 384, 385, 386, 387, 388, 389, 390, 391, 396, 407, 417, 419, 421, 422, 424], "vert": [7, 9, 82, 124, 125], "face": [7, 9, 124, 125, 126, 128, 130, 137, 141, 419], "represent": [7, 45, 46, 82, 417, 419], "calcul": [7, 9, 10, 26, 27, 33, 43, 74, 77, 78, 79, 80, 81, 82, 152, 162, 165, 171, 175, 186, 191, 197, 198, 199, 200, 205, 215, 218, 219, 220, 221, 223, 224, 229, 312, 313, 315, 316, 317, 318, 319, 320, 323, 324, 325, 326, 327, 328, 329, 343, 346, 348, 349, 350, 356, 360, 363, 364, 371, 383, 384, 385, 386, 387, 388, 389, 390, 391, 395, 402, 406, 410, 411, 412, 413, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425], "correspond": [7, 21, 23, 34, 36, 38, 48, 65, 82, 119, 328, 356, 407, 412, 413, 418, 420, 425], "reciproc": [7, 19, 58, 76, 119, 132, 134, 137, 147, 161, 182, 186, 353, 413, 425], "lattic": [7, 19, 40, 58, 76, 98, 99, 100, 101, 103, 104, 105, 108, 113, 114, 119, 122, 132, 134, 137, 140, 147, 161, 182, 186, 287, 288, 290, 295, 296, 297, 304, 309, 348, 353, 400, 401, 403, 413, 424, 425], "paramet": [7, 10, 13, 19, 26, 33, 40, 42, 48, 58, 62, 65, 69, 70, 73, 74, 76, 82, 90, 91, 92, 97, 98, 109, 110, 111, 112, 113, 121, 122, 124, 127, 129, 130, 131, 149, 151, 152, 155, 161, 165, 175, 176, 178, 179, 184, 186, 191, 192, 215, 229, 237, 239, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 257, 259, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 288, 289, 290, 291, 292, 294, 295, 296, 298, 299, 300, 301, 302, 303, 304, 305, 306, 308, 309, 310, 315, 316, 317, 318, 319, 320, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 351, 353, 356, 397, 407, 413, 414, 415, 416, 418, 419, 420, 423, 425], "np": [7, 10, 19, 21, 22, 23, 24, 25, 26, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 47, 48, 58, 59, 60, 62, 64, 65, 73, 82, 91, 92, 93, 112, 113, 114, 119, 121, 122, 131, 161, 170, 182, 183, 186, 188, 189, 194, 195, 201, 219, 262, 264, 265, 266, 288, 289, 290, 299, 300, 301, 302, 303, 304, 305, 324, 325, 327, 364, 395, 396, 397, 400, 401, 402, 403, 404, 413, 425], "usgin": 7, "wigner": [7, 9, 421], "seitz": [7, 9, 421], "float": [7, 13, 19, 20, 31, 32, 33, 58, 69, 74, 75, 82, 83, 84, 98, 100, 101, 103, 104, 105, 107, 108, 109, 110, 111, 112, 115, 123, 124, 126, 129, 161, 186, 187, 191, 192, 193, 239, 259, 270, 273, 274, 288, 296, 299, 301, 302, 305, 316, 317, 318, 319, 322, 323, 324, 325, 327, 328, 329, 330, 331, 413, 418, 419], "ani": [7, 10, 11, 209, 212, 329, 356, 360, 407, 413, 415, 418, 419, 423], "transform": [7, 62, 82, 91, 92, 121, 355, 360, 407, 413], "appli": [7, 40, 82, 305, 315, 360, 396, 407, 412, 413, 423], "unit": [7, 123, 287, 400, 401, 403, 404], "cell": [7, 9, 82, 106, 107, 117, 120, 123, 364, 400, 401, 403, 404, 410, 411, 419, 425], "rotat": [7, 40, 98, 99, 184, 185, 328, 378, 379, 380, 381, 396, 417, 419, 421, 424], "supercel": [7, 74, 75, 307, 308, 313, 329, 360, 385, 399, 405, 406, 419, 420, 425], "default": [7, 10, 13, 19, 33, 58, 62, 65, 70, 73, 74, 76, 82, 90, 97, 109, 110, 111, 112, 113, 122, 124, 127, 129, 131, 149, 152, 155, 161, 165, 176, 178, 179, 184, 186, 191, 192, 237, 239, 242, 243, 244, 245, 246, 247, 248, 250, 251, 253, 254, 257, 261, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 288, 289, 291, 294, 296, 298, 299, 300, 301, 302, 303, 304, 305, 306, 308, 310, 315, 316, 317, 318, 319, 320, 322, 323, 324, 325, 326, 327, 328, 329, 353, 356, 363, 371, 375, 380, 385, 413, 414, 416, 418, 419, 420], "method": [7, 10, 19, 58, 62, 65, 67, 68, 69, 70, 71, 72, 73, 74, 76, 77, 78, 79, 80, 81, 82, 89, 91, 92, 98, 113, 118, 121, 124, 143, 145, 147, 149, 151, 152, 161, 165, 168, 174, 176, 178, 179, 184, 186, 191, 192, 237, 239, 240, 241, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 257, 259, 260, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 277, 287, 293, 297, 306, 307, 308, 310, 314, 315, 316, 317, 318, 319, 320, 384, 385, 386, 387, 388, 389, 390, 391, 407, 413, 417, 421], "attribut": [7, 10, 19, 74, 82, 89, 98, 124, 152, 165, 178, 186, 192, 407, 417], "brillouinzon": [8, 9, 137], "initi": [8, 75, 83, 125, 154, 179, 216, 315, 386, 396, 403, 407], "polydata": [8, 58, 75, 83, 124, 125, 137, 141, 396, 400, 401, 403, 404], "form": [9, 183, 219, 220, 400, 407, 417], "tupl": [9, 76, 88, 124, 317, 318, 329, 419], "return": [9, 12, 13, 14, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 62, 64, 69, 70, 84, 85, 86, 87, 88, 91, 92, 93, 94, 95, 96, 98, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 119, 120, 121, 122, 123, 126, 127, 128, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 167, 169, 170, 171, 172, 173, 180, 182, 183, 188, 189, 194, 195, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 213, 214, 215, 216, 217, 218, 219, 220, 221, 223, 224, 225, 227, 229, 237, 239, 240, 241, 242, 248, 249, 252, 255, 257, 263, 296, 309, 322, 327, 328, 329, 330, 359, 407, 418, 419], "n_vert": 9, "n_face": 9, "dtype": [10, 11], "float64": [10, 11], "interpolation_factor": [10, 11, 42, 74, 75, 82, 83, 161, 186, 187, 323, 324, 325, 329, 385, 413, 419, 425], "function": [10, 42, 82, 88, 127, 145, 155, 196, 209, 210, 211, 212, 228, 232, 313, 322, 323, 324, 325, 327, 328, 329, 337, 339, 343, 346, 349, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 399, 403, 405, 406, 407, 410, 411, 413, 415, 416, 418, 419, 421, 425], "theori": [10, 327, 349, 411], "spectrum": 10, "shape": [10, 19, 21, 22, 23, 24, 25, 26, 34, 35, 36, 37, 38, 39, 41, 45, 46, 59, 60, 64, 355, 356, 357, 358, 359, 360, 361, 362, 363, 375, 378, 379, 380, 381, 384, 385, 386, 389, 390, 391, 396, 403], "n_do": 10, "element": [10, 159, 160, 163, 167, 169, 172, 209, 212, 261, 287, 288, 289, 290, 293, 296, 297, 299, 300, 327, 401, 403, 420], "etc": [10, 304, 356, 412, 413], "n_atom": [10, 19, 59, 60, 65], "n_princip": 10, "n_orbit": [10, 59, 60, 65], "n_spin": [10, 19, 24, 59, 60, 65, 133, 137], "i_princip": 10, "work": [10, 329, 374, 375, 378, 383, 384, 385, 386, 387, 388, 389, 390, 391, 406, 407, 408, 413, 418, 419], "like": [10, 73, 287, 288, 300, 311, 312, 347, 356, 407, 412, 413, 417], "princip": [10, 33, 56, 243, 244, 246, 247], "quantum": [10, 13, 33, 56, 165, 231, 232, 233, 234, 235, 243, 244, 246, 247, 349, 350, 354, 365, 366, 372, 406, 411, 412, 413, 417, 421], "n": [10, 13, 32, 82, 98, 126, 353, 360, 401, 402, 403, 404, 421, 422], "last": [10, 159, 163, 167, 172, 180, 182, 198, 205, 221, 226, 404, 413], "index": [10, 13, 41, 65, 155, 292, 300, 303, 316, 317, 318, 319, 320, 328, 356, 360, 404, 411, 412, 413, 417, 418, 420, 421], "p": [10, 12, 327, 329, 353, 358, 396, 400, 401, 402, 403, 404, 412, 416, 419, 420, 422], "i_orbit": 10, "similar": [10, 327, 329, 346, 407, 416, 419], "angular": [10, 421], "l": [10, 12, 351, 412, 413, 421, 425], "same": [10, 13, 92, 98, 130, 290, 296, 300, 309, 323, 329, 334, 343, 348, 350, 351, 353, 363, 371, 402, 407, 412, 413, 415, 416, 418, 419, 420, 421], "order": [10, 12, 13, 98, 288, 290, 303, 309, 327, 329, 397, 407, 412, 413, 415, 419], "7": [10, 13, 155, 327, 329, 357, 358, 359, 362, 363, 367, 368, 370, 371, 375, 378, 379, 380, 384, 385, 386, 387, 388, 389, 390, 391, 394, 400, 401, 402, 403, 407, 412, 413, 415, 416, 419, 421], "8": [10, 13, 155, 327, 329, 351, 357, 358, 359, 361, 362, 363, 367, 368, 369, 370, 371, 375, 378, 379, 380, 384, 385, 386, 387, 388, 389, 390, 391, 396, 400, 401, 412, 413, 415, 416, 419, 421], "py": [10, 13, 155, 327, 329, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 367, 368, 369, 370, 371, 372, 374, 375, 376, 378, 379, 380, 381, 382, 384, 385, 386, 387, 388, 389, 390, 391, 392, 394, 395, 396, 397, 398, 400, 401, 402, 403, 404, 405, 409, 419, 420, 421], "pz": [10, 13, 155, 327, 329, 419, 420, 421], "px": [10, 13, 155, 327, 329, 419, 420, 421], "dxy": [10, 13, 155, 327, 329, 419, 421], "dyz": [10, 13, 155, 327, 329, 419, 421], "dz2": [10, 13, 155, 327, 329, 419, 421], "dxz": [10, 13, 155, 327, 329, 419, 421], "dx2": [10, 421], "y2": [10, 13, 82, 155, 327, 329, 330, 394, 419], "i_spin": 10, "magnet": [10, 178, 412, 413, 421], "m": [10, 12, 123, 347, 348, 402, 412, 413, 414, 421, 425], "increas": [10, 74, 82, 329, 419, 425], "densityofst": [11, 12, 13, 14, 15, 16, 17, 18, 137, 154, 155, 156, 200, 237, 238, 285], "convert": [12, 48, 196, 400, 401, 403, 404, 421], "coupl": [12, 361, 369, 419], "uncoupl": 12, "assum": [12, 407], "coupled_orbit": 12, "j": [12, 397, 407, 412], "uncoupled_orbit": 12, "ret": [12, 13, 31, 32, 33, 209, 212, 355, 356, 357, 358, 359, 361, 362, 363, 375, 378, 379, 380, 381, 384, 385, 386, 389, 390, 391], "atom": [13, 32, 33, 52, 73, 77, 79, 80, 81, 98, 99, 102, 115, 116, 137, 140, 155, 156, 162, 165, 171, 178, 243, 244, 245, 246, 287, 288, 289, 290, 292, 293, 296, 297, 299, 300, 303, 316, 317, 318, 319, 320, 323, 324, 325, 327, 328, 329, 343, 354, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 385, 389, 390, 396, 399, 400, 401, 402, 404, 405, 406, 410, 411, 416, 417, 418, 419, 421, 424, 425], "principal_q_numb": [13, 33, 243, 244, 246, 247], "sum_noncolinear": [13, 33], "bool": [13, 15, 19, 33, 43, 58, 90, 92, 113, 176, 191, 245, 287, 288, 289, 294, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 310, 314, 315, 316, 317, 318, 319, 320, 322, 323, 324, 325, 326, 327, 328, 329, 331, 413, 414, 418, 419, 420, 425], "tabl": [13, 327, 329, 419, 425], "lm": [13, 412, 413, 421], "tot": [13, 413, 421], "x2": [13, 82, 155, 327, 329, 330, 394, 419], "need": [13, 58, 145, 155, 217, 279, 288, 327, 346, 347, 355, 356, 357, 360, 364, 368, 375, 379, 384, 385, 386, 387, 388, 389, 390, 391, 394, 396, 397, 400, 401, 403, 404, 407, 413, 415, 416, 419, 420, 425], "sume": [13, 155], "over": [13, 26, 33, 155, 329, 407, 408, 410, 411, 416, 417, 419, 421], "count": [13, 300, 327, 329, 412, 413, 418, 419, 420], "from": [13, 73, 124, 127, 132, 137, 138, 141, 145, 147, 152, 155, 165, 178, 287, 303, 306, 323, 326, 327, 329, 347, 356, 364, 381, 383, 392, 394, 397, 400, 401, 402, 403, 404, 406, 407, 408, 409, 410, 411, 412, 414, 415, 416, 417, 418, 419, 420, 421, 423, 425], "zero": [13, 327, 329, 412, 413, 419, 421], "input": [13, 175, 178, 232, 287, 311, 312, 326, 327, 329, 332, 343, 346, 347, 350, 351, 413, 414, 419, 423], "sum": [13, 33, 155, 297, 413, 416, 417], "string": [14, 129, 162, 171, 178, 242, 243, 244, 245, 246, 247, 261, 267, 268, 269, 272, 287, 299, 323, 324, 325, 326, 386, 413, 414], "current": [14, 62, 350, 356, 383, 384, 385, 386, 387, 388, 389, 390, 391, 406, 411, 412, 413], "basi": [14, 44, 47, 49, 50, 51, 58, 62, 305, 361, 369, 412, 417], "str": [14, 58, 65, 70, 74, 75, 82, 83, 97, 98, 109, 120, 127, 129, 130, 131, 152, 155, 161, 165, 166, 174, 175, 176, 178, 179, 184, 186, 187, 191, 192, 228, 239, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 254, 259, 261, 267, 268, 269, 271, 272, 287, 288, 289, 290, 291, 294, 295, 296, 297, 298, 299, 300, 306, 307, 308, 310, 314, 315, 316, 317, 318, 319, 320, 322, 323, 324, 325, 326, 327, 328, 329, 331, 332, 413, 414, 418, 419, 420, 423], "non": [15, 33, 43, 327, 329, 351, 353, 354, 356, 358, 359, 364, 365, 366, 367, 372, 374, 375, 379, 380, 381, 384, 385, 386, 387, 388, 389, 391, 395, 396, 397, 406, 407, 412, 413, 417, 419, 420, 421, 425], "colinear": [15, 33, 43, 326, 348, 351, 353, 354, 355, 357, 360, 363, 365, 366, 368, 371, 372, 378, 379, 380, 381, 386, 390, 391, 397, 406, 412, 413, 414, 420], "calc": [15, 217], "channel": [18, 57, 327, 360, 412, 413, 421], "kpoint": [19, 20, 21, 23, 34, 36, 38, 40, 41, 44, 45, 46, 47, 48, 49, 50, 51, 58, 62, 65, 66, 74, 90, 91, 92, 97, 134, 136, 137, 143, 144, 161, 170, 177, 186, 188, 189, 191, 220, 232, 277, 278, 315, 328, 329, 331, 350, 351, 353, 355, 360, 364, 394, 396, 397, 413, 417, 419, 420, 421, 425], "efermi": [19, 20, 145, 146, 186, 187, 348, 396, 417, 425], "n_kx": [19, 20, 22, 24, 25, 26, 35, 37, 39, 41, 45, 46, 59, 60, 64, 186, 187, 417], "n_ky": [19, 20, 22, 24, 25, 26, 35, 37, 39, 41, 45, 46, 59, 60, 64, 186, 187, 417], "n_kz": [19, 20, 22, 24, 25, 26, 35, 37, 39, 41, 45, 46, 59, 60, 64, 186, 187, 417], "projected_phas": [19, 20, 417], "kpath": [19, 20, 58, 90, 91, 92, 93, 94, 95, 96, 97, 134, 137, 145, 146, 168, 186, 187, 257, 258, 323, 343, 350, 397, 417, 421], "store": [19, 21, 22, 23, 24, 25, 34, 35, 36, 37, 38, 39, 41, 59, 60, 64, 74, 133, 134, 136, 137, 139, 140, 178, 179, 228, 287, 294, 296, 309, 312, 315, 329, 417, 419, 420], "informomr": 19, "arrai": [19, 21, 22, 23, 24, 25, 34, 35, 36, 37, 38, 39, 59, 60, 64, 65, 73, 74, 93, 122, 133, 135, 137, 138, 140, 156, 201, 214, 288, 293, 301, 309, 327, 329, 331, 397, 400, 401, 402, 403, 404, 412, 413, 417, 419, 425], "Will": 19, "have": [19, 32, 217, 329, 343, 347, 350, 360, 402, 403, 407, 408, 415, 416, 417, 418, 419, 420, 421], "n_kpoint": [19, 21, 23, 34, 36, 38, 65, 73], "n_band": [19, 21, 22, 23, 24, 25, 34, 35, 36, 37, 38, 39, 59, 60, 65, 73], "norbit": [19, 417], "full": [19, 178, 288, 329, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 394, 395, 396, 397, 400, 401, 402, 403, 404, 407, 414, 417, 419], "incud": 19, "complex": [19, 417], "part": [19, 199, 407, 419], "clacul": 19, "vector": [19, 98, 100, 101, 103, 104, 105, 108, 124, 125, 131, 147, 182, 269, 290, 304, 305, 309, 329, 353, 357, 358, 359, 360, 361, 362, 363, 364, 374, 375, 396, 400, 401, 403, 404, 412, 413, 419], "matrix": [19, 58, 62, 82, 91, 92, 98, 113, 119, 121, 122, 132, 137, 140, 161, 183, 186, 307, 328, 418, 419, 425], "shifted_to_efermi": [19, 417], "determin": [19, 33, 43, 58, 90, 92, 113, 176, 328, 356, 407, 418], "shift": [19, 74, 88, 297, 419], "electronicbandstructur": [20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 74, 137, 257, 258, 285, 396, 421, 422], "gradient": [21, 22, 26, 417], "numpi": [21, 22, 23, 24, 25, 34, 35, 36, 37, 38, 39, 59, 60, 64, 65, 73, 82, 133, 135, 137, 138, 140, 327, 329, 364, 395, 396, 397, 400, 401, 402, 403, 404, 409, 417, 419, 425], "self": [21, 23, 32, 34, 36, 38, 82, 197, 198, 211, 287, 288, 289, 293, 297, 347, 353, 355, 360, 364, 395], "where": [21, 22, 23, 24, 36, 37, 165, 245, 315, 324, 325, 328, 329, 343, 351, 356, 357, 360, 368, 379, 385, 386, 400, 407, 413, 414, 418, 419, 420, 421], "second": [21, 23, 24, 36, 101, 103, 108, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 394, 395, 396, 397, 400, 401, 402, 403, 404], "dimens": [21, 22, 23, 24, 36, 37, 313], "dx": [21, 22, 23, 24, 36, 37], "dy": [21, 22, 23, 24, 36, 37], "dz": [21, 22, 23, 24, 36, 37], "fradient": [21, 22], "mesh": [22, 24, 25, 26, 35, 37, 39, 41, 42, 45, 46, 48, 59, 60, 64, 342, 353, 394, 410, 411, 417, 419, 421], "grid": [22, 24, 25, 26, 35, 37, 39, 41, 42, 45, 46, 59, 60, 64, 82, 84, 85, 86, 87, 92, 323, 329, 353, 357, 368, 394, 397, 402, 413, 417, 418, 419], "first": [22, 24, 37, 82, 100, 104, 108, 160, 169, 296, 304, 348, 353, 355, 356, 358, 359, 360, 361, 362, 363, 364, 367, 369, 370, 371, 374, 378, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 397, 401, 404, 407, 415, 418, 419, 420, 425], "hessian": [23, 24, 417], "third": [23, 101, 104, 105, 407], "scalar_mesh": [26, 27], "cartesian": [26, 44, 45, 58, 170, 188, 287, 288, 289, 294, 297, 299, 301, 302, 304, 305, 306, 310, 400, 401, 403, 404, 417, 421], "coordin": [26, 82, 137, 138, 140, 170, 188, 189, 288, 289, 301, 302, 305, 306, 330, 394, 400, 401, 403, 404, 417, 421], "scalar_gradient_mesh": 26, "integr": 27, "nd_list": 28, "scalar_list": 29, "vector_list": 30, "_summary_": [31, 33, 330], "ipr": [31, 32, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 374, 375], "It": [32, 73, 149, 190, 279, 290, 296, 300, 306, 309, 327, 347, 356, 357, 368, 375, 379, 385, 400, 404, 407, 412, 413, 418], "resolv": [32, 407, 412, 413, 416], "pipr": 32, "pipr_j": 32, "frac": [32, 360, 384, 421], "c_j": 32, "sum_i": 32, "c_i": 32, "clearli": [32, 407], "sum_j": 32, "mind": [32, 327, 329, 347, 404, 419, 420], "wavefunct": [32, 347, 353, 421], "c": [32, 304, 384, 400, 402, 404, 407, 408, 409, 419, 424], "_i": 32, "we": [32, 217, 327, 329, 347, 350, 351, 353, 355, 356, 357, 360, 364, 368, 375, 379, 381, 384, 385, 400, 401, 402, 403, 404, 407, 408, 412, 416, 418, 419, 421, 425], "alreadi": [32, 65, 73, 407], "quantiti": 32, "NOT": [32, 407], "readi": [32, 407], "FOR": [32, 407], "pleas": [32, 358, 361, 362, 363, 364, 367, 369, 370, 371, 374, 375, 378, 379, 380, 381, 394, 397, 407, 408, 409, 419, 421], "prefer": [32, 310, 407, 408], "ebs_ipr": 32, "speed": [34, 35, 78], "veloc": [35, 37, 329, 410, 411, 419], "harmon": [38, 39, 329, 419, 421], "averag": [38, 39], "effect": [38, 39, 329, 356, 384, 407, 418, 419], "mass": [38, 39, 329, 419], "symmetri": [40, 90, 109, 110, 111, 112, 176, 183, 191, 315, 356, 378, 379, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 391, 396, 406, 413, 414, 417, 419], "oper": [40, 183, 301, 302, 407, 418], "particular": [41, 329, 350, 407, 417, 418, 419, 420], "mesh_grid": [42, 61], "an": [42, 69, 82, 93, 136, 137, 138, 141, 179, 214, 237, 257, 295, 296, 310, 311, 313, 346, 347, 353, 356, 360, 381, 384, 385, 386, 387, 388, 389, 390, 391, 394, 396, 397, 400, 401, 402, 403, 404, 407, 412, 413, 416, 419, 421], "nd": [42, 288], "nx": [42, 82], "ny": [42, 82], "nz": [42, 82], "rtype": [45, 46], "fraction": [47, 98, 137, 140, 290], "eb": [48, 74, 75, 165, 257, 258, 363, 371, 396, 417, 422], "lsit": 48, "uniqu": [49, 50, 51, 397, 417], "reduc": [49, 50, 51, 58, 189, 315, 404, 417, 420, 421], "numbersk": 56, "show_brillouin_zon": 58, "r": [58, 272, 347, 348, 402, 413, 416, 419], "point_siz": [58, 394, 396, 397, 400, 401, 403, 404], "render_points_as_spher": [58, 394, 396, 397, 400, 401, 403, 404], "move": [58, 347, 353, 419], "core": [58, 62, 91, 92, 121, 122, 132, 133, 134, 135, 136, 138, 139, 140, 141, 142, 154, 155, 156, 159, 160, 163, 164, 167, 169, 172, 173, 186, 191, 200, 201, 219, 220, 227, 237, 257, 419], "updat": [58, 62, 130, 131, 287, 293, 400, 407], "new": [58, 62, 190, 289, 329, 404, 407, 419, 420], "implement": [58, 279, 356, 407, 413], "pyvista": [58, 82, 124, 137, 141, 329, 384, 385, 386, 387, 388, 389, 390, 391, 394, 396, 397, 400, 401, 403, 404, 409, 419], "wether": 58, "phase": [60, 134, 137, 353, 356, 417, 425], "done": [62, 301, 302, 327, 353, 356, 374, 395, 409, 414, 418], "expect": [62, 65, 134, 135, 137, 140, 285, 343, 407], "materi": [62, 109, 110, 329, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 395, 396, 397, 407, 412, 413, 415, 419], "spd": [65, 66, 77, 277, 278, 355, 360], "band_indic": [65, 66, 328, 378, 380, 418], "band_color": [65, 66, 328, 378, 380, 418], "loglevel": [65, 66], "30": [65, 66, 327, 347, 351, 400, 401, 403, 404, 407], "kwarg": [65, 66, 237, 238, 257, 258, 316, 317, 318, 319, 320, 323, 324, 325, 327, 328, 413, 418, 425], "nx3": 65, "substract": 65, "n_kppint": 65, "cmap": [65, 129, 279, 280, 282, 329, 357, 368, 375, 379, 412, 413, 419], "indic": [65, 327, 328, 329, 355, 358, 361, 362, 363, 367, 369, 370, 371, 379, 381, 401, 407, 413, 418, 419, 425], "given": [65, 69, 135, 137, 155, 289, 292, 305, 309, 313, 328, 378, 384, 390, 394, 397, 407, 410, 411, 416, 418, 425], "_type_": [65, 152, 323, 324, 325, 330, 332, 413, 420, 423], "verbos": [65, 287, 288, 297, 298, 307, 308, 368, 400, 401, 404], "log": 65, "warn": [65, 401], "fermisurfac": [66, 67, 68, 69, 70, 71, 72, 73, 137], "matplotlib": [67, 68, 70, 237, 257, 324, 325, 327, 328, 329, 364, 402, 409, 412, 419, 421], "search": [69, 74, 329, 360, 387, 388, 411, 419], "around": [69, 329, 360, 387, 388, 419, 421], "rais": [69, 70, 73, 122, 192, 328, 418, 420], "runtimeerror": [69, 70, 73, 328, 418, 420], "found": [69, 180, 190, 192, 296, 351, 395, 397, 401, 407, 416, 421], "error": [69, 70, 73, 122, 190, 217, 296, 356, 360, 414, 418], "500": [70, 392], "along": [70, 73, 93, 305, 407, 414, 417, 422], "onli": [70, 73, 97, 124, 190, 287, 289, 315, 327, 329, 350, 360, 367, 371, 378, 380, 384, 385, 386, 387, 388, 389, 390, 391, 401, 407, 408, 412, 413, 419, 420], "layer": [70, 73, 356, 360, 400, 419], "geometri": [70, 73, 313, 356, 425], "pyplot": [70, 328, 402, 421], "instanc": [70, 298, 308, 309, 343, 356, 360, 364, 412, 413, 423, 425], "wa": [70, 73, 327, 404, 407, 413, 421], "call": [70, 73, 315, 332, 343, 347, 350, 351, 353, 384, 385, 386, 387, 388, 389, 390, 391, 400, 407, 415, 419, 423], "befor": [70, 73, 355, 356, 357, 360, 368, 375, 379, 385, 403, 418, 423, 425], "sx": 73, "sy": 73, "sz": 73, "300": [73, 357, 358, 359, 362, 363, 368, 375, 379], "enhanc": 73, "version": [73, 346, 364, 374, 375, 378, 379, 380, 381, 394, 397, 407, 408, 409, 416, 419, 420], "nkpoint": [73, 417], "nband": [73, 417, 421], "thei": [73, 190, 356, 407, 415], "also": [73, 329, 346, 347, 351, 356, 357, 363, 368, 371, 375, 378, 379, 380, 385, 407, 412, 413, 418, 419, 425], "other": [73, 82, 209, 327, 329, 347, 356, 375, 385, 397, 398, 402, 407, 413, 417, 418, 419, 420, 421, 423], "compon": [73, 407, 418, 420, 421], "marker": [73, 281, 282, 357, 368, 375, 379], "fermi_shift": [74, 75, 329, 419], "projection_accuraci": [74, 75, 329, 385, 419], "manapul": 74, "fermi_toler": [74, 329, 419], "improv": [74, 329, 356, 419], "effienc": [74, 329, 419], "prior": [74, 145, 329, 407, 409, 419], "select": [74, 288, 289, 327, 329, 356, 363, 371, 416, 419, 421], "within": [74, 329, 356, 360, 397, 400, 407, 409, 413, 419, 420, 421, 425], "toler": [74, 109, 110, 111, 112, 296, 329, 397, 419], "everi": [74, 327, 407, 410, 411, 421], "accuraci": [74, 329, 419], "pad": [74, 82, 83], "isosurfac": [74, 83, 84, 85, 86, 87, 88, 136, 137, 388, 419], "fermisurface3d": [75, 76, 77, 78, 79, 80, 81, 137, 419], "extended_zone_direct": [76, 329, 385, 419], "extend": [76, 360, 407], "vecctor": 76, "expand": [76, 355, 360], "fermi_spe": [78, 384, 385, 386, 387, 388, 389, 390, 391, 396], "fermi_veloc": [79, 329, 384, 385, 386, 387, 388, 389, 390, 391, 396, 419], "harmonic_effective_mass": [80, 384, 385, 386, 387, 388, 389, 390, 391], "spd_spin": 81, "xyz": [82, 83, 287, 297, 306, 310], "isovalu": [82, 83, 137, 138, 329, 419], "v_matrix": [82, 83], "algorithm": [82, 83], "lewin": [82, 83], "transform_matrix": [82, 83], "boundari": [82, 83, 305, 356], "all": [82, 155, 180, 208, 227, 229, 287, 291, 297, 303, 305, 326, 327, 329, 356, 402, 406, 407, 413, 414, 416, 418, 419, 420, 421, 425], "equat": [82, 419, 421], "f": [82, 228, 350, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 395, 396, 397, 403, 407, 412, 413, 418, 419], "must": [82, 287, 329, 343, 350, 351, 386, 397, 407, 413, 419, 425], "between": [82, 84, 90, 101, 104, 108, 124, 296, 360, 402, 407, 413, 423], "x1": [82, 330, 394], "y1": [82, 330, 394], "z1": 82, "z2": 82, "v1": [82, 327, 329, 419], "v2": 82, "constant": [82, 304, 381, 418], "One": [82, 329, 356, 412, 413, 418, 419], "can": [82, 124, 142, 149, 178, 327, 329, 343, 346, 347, 348, 351, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 394, 395, 396, 397, 400, 402, 406, 407, 408, 409, 412, 413, 414, 415, 416, 417, 418, 419, 420, 422, 424, 425], "present": [82, 117, 120, 182, 291, 326, 327, 329, 347, 407, 413, 414, 419], "instead": [82, 287, 291, 347, 364, 388, 407, 413, 418], "togeth": [82, 287, 346, 407, 412, 413], "provid": [82, 129, 178, 179, 237, 257, 307, 309, 315, 326, 327, 329, 343, 346, 347, 353, 356, 357, 360, 368, 375, 379, 385, 402, 407, 410, 411, 412, 413, 414, 416, 417, 419, 421, 422, 424], "scikit": [82, 409], "possibl": [82, 407, 412, 413, 419], "classic": 82, "modul": [82, 232, 326, 331, 332, 399, 406, 411, 414, 415, 418, 420, 423, 425], "fourier": [82, 329, 419], "dafault": [82, 416], "period": 82, "dataset": [82, 111, 419, 420], "e": [82, 180, 272, 296, 299, 300, 305, 327, 329, 351, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 374, 375, 384, 402, 407, 416, 418, 419, 420], "g": [82, 299, 327, 329, 350, 351, 356, 384, 397, 402, 413, 414, 418, 419, 420], "1st": [82, 329, 419], "bz": [82, 414, 425], "cover": [82, 360, 407], "fulli": [82, 360], "so": [82, 327, 400, 407, 413, 415, 417, 420, 421], "one": [82, 88, 124, 180, 182, 279, 287, 288, 289, 292, 300, 315, 327, 329, 347, 350, 351, 353, 380, 397, 407, 412, 413, 414, 416, 418, 419, 420], "want": [82, 124, 310, 327, 329, 355, 386, 404, 407, 408, 418, 419, 420], "wrap": 82, "look": [82, 329, 360, 390, 419], "afterward": 82, "easili": [82, 416], "doabl": 82, "trimesh": [82, 127, 129, 329, 409, 419], "goe": [82, 413, 416, 420], "eigen_matrix": 82, "In": [82, 142, 327, 329, 347, 353, 355, 356, 364, 384, 397, 400, 401, 402, 403, 404, 407, 408, 412, 413, 416, 419, 420, 421, 425], "word": [82, 327, 329, 419], "creat": [82, 124, 308, 309, 313, 327, 329, 331, 347, 350, 351, 353, 364, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 394, 397, 413, 419, 420], "super": [82, 410, 411], "withpad": 82, "vertic": [82, 137, 141, 239, 243, 244, 245, 246, 247, 327, 348, 402, 416, 419], "verts_prim": 82, "t": [82, 228, 279, 350, 407, 408], "exampl": [82, 124, 155, 327, 347, 350, 351, 353, 354, 355, 357, 358, 359, 360, 361, 362, 363, 364, 366, 367, 368, 369, 370, 371, 373, 374, 375, 377, 378, 379, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 391, 393, 398, 399, 400, 401, 402, 403, 404, 407, 408, 412, 413, 416, 418, 419, 420, 421], "space": [84, 109, 110, 311, 356, 384, 385, 386, 387, 388, 389, 390, 391, 397, 402, 418, 419, 423, 425], "length": [84, 407], "tri": [88, 190], "correct": [88, 407], "abl": [88, 386, 412, 413, 419, 421], "min": 88, "max": 88, "kname": [89, 90, 323, 324, 325, 347, 413, 422, 425], "ktick": [89, 90, 323, 324, 325, 347, 413, 422, 425], "special_kpoint": [89, 90, 422], "ngrid": [89, 90, 422], "has_time_revers": [89, 90, 143, 144, 176, 177], "handl": [90, 232, 315, 364, 396, 402, 419, 423], "tick": [90, 95, 96, 251, 254, 271, 274, 280, 281, 282, 422], "map": [90, 124, 129, 130, 178, 329, 356, 412, 413, 418, 419], "special": [90, 356, 407, 412, 418], "time": [90, 176, 287, 289, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 394, 395, 396, 397, 400, 401, 402, 403, 404, 407, 425], "revers": [90, 176, 397, 407], "get": [91, 92, 168, 333, 350, 383, 392, 396, 397, 400, 401, 404, 406, 407, 419], "same_grid_s": 92, "optim": [92, 356], "after": [92, 403, 407, 416, 421], "transformm": 92, "retain": [92, 407], "segment": [94, 418, 422], "filenam": [97, 143, 144, 149, 151, 152, 161, 165, 176, 177, 178, 179, 184, 185, 186, 187, 191, 192, 193, 248, 267, 287, 288, 294, 295, 296, 297, 298, 306, 308, 310, 322, 323, 327, 328, 332, 386, 401, 416, 418, 423, 425], "fmt": 97, "vasp": [97, 145, 152, 215, 229, 232, 236, 287, 322, 323, 324, 325, 327, 328, 329, 346, 347, 349, 350, 354, 355, 356, 357, 358, 359, 360, 363, 364, 365, 366, 368, 371, 372, 374, 375, 378, 379, 380, 381, 384, 385, 386, 389, 390, 391, 395, 396, 397, 400, 401, 402, 403, 404, 406, 411, 412, 413, 415, 416, 417, 418, 419, 421, 422, 423, 424, 425], "write": [97, 287, 295, 297, 404, 407, 420], "support": [97, 329, 347, 350, 351, 364, 407, 409, 411, 412, 413, 419], "moment": [97, 178, 421], "_description_": [97, 323, 325, 328, 330, 418, 420], "cartesian_coordin": [98, 99, 424], "fractional_coordin": [98, 99, 424], "defin": [98, 327, 329, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 397, 400, 401, 403, 404, 407, 413, 416, 418, 419, 420, 421], "perid": 98, "crystal": [98, 100, 101, 103, 104, 105, 108, 113, 114, 119, 226, 287, 311, 313, 347, 350, 351, 397, 410, 411], "symbol": [98, 137, 140, 290], "natom": [98, 290, 417, 424], "coordinatesd": 98, "magnitud": [100, 103, 105, 329, 412, 413, 419], "angl": [101, 104, 108, 296, 397, 403, 418], "convex": [106, 118], "hull": [106, 118], "scipi": [106, 409], "spatial": 106, "convexhul": 106, "symprec": [109, 110, 111, 112, 191, 331, 397], "1e": [109, 110, 111, 112, 191, 331, 347, 397], "intern": [109, 287, 293], "group": [109, 110, 287, 384, 385, 386, 387, 388, 389, 390, 391], "spglib": [111, 191], "dict": [111, 157, 158, 178, 202, 203, 220, 224, 245, 288, 296, 323, 324, 325, 327, 413, 416], "wyckoff": 112, "insid": [113, 149, 407], "unitcel": [113, 364], "question": 113, "corner": [114, 416], "speci": [117, 247, 288, 299, 327, 402, 416], "differ": [120, 296, 327, 329, 347, 350, 351, 353, 357, 361, 364, 368, 369, 375, 379, 381, 385, 401, 403, 407, 413, 414, 415, 416, 419], "crystla": 122, "valueerror": [122, 192], "proper": 122, "face_norm": [124, 125], "vert_norm": [124, 125], "face_color": [124, 125], "vert_color": [124, 125], "hold": 124, "about": [124, 142, 178, 223, 224, 356, 379, 380, 396, 407, 408, 416, 419], "inherit": 124, "To": [124, 326, 329, 346, 347, 348, 350, 351, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 407, 409, 413, 414, 416, 418, 419, 421], "minimum": [124, 129, 325, 327, 329, 413, 418, 419, 420], "requir": [124, 346, 347, 348, 350, 351, 353, 356, 407, 413, 415, 417, 418, 419, 420], "nvert": 124, "vertici": 124, "integ": [124, 309], "nface": 124, "connect": [124, 397, 407, 419], "vertex": 124, "attach": [124, 407], "glyph": [124, 396], "file_obj": 127, "output": [127, 148, 152, 178, 232, 294, 310, 326, 327, 329, 332, 346, 407, 413, 414, 416, 419, 423], "glb": [127, 329, 419], "file_typ": 127, "new_fac": 128, "viridi": [129, 357, 368, 375, 385], "vmin": [129, 279, 280, 282, 325, 329, 413, 418, 419, 425], "vmax": [129, 279, 280, 282, 325, 329, 413, 418, 419, 425], "maximum": [129, 325, 327, 329, 413, 418, 419, 420], "scalar_nam": 130, "vectors_x": 131, "vectors_i": 131, "vectors_z": 131, "vectors_nam": 131, "manipul": [133, 134, 137, 311, 312, 313], "1d": [133, 137, 138, 401], "n_energi": [133, 137], "see": [133, 134, 135, 136, 139, 140, 308, 347, 364, 384, 396, 402, 407, 408, 412, 413, 418, 425], "further": [133, 134, 135, 136, 139, 140, 145, 407, 413, 418, 420, 425], "informt": [136, 137], "includ": [136, 137, 142, 155, 178, 183, 240, 241, 245, 287, 343, 350, 353, 356, 407, 410, 411, 412, 413, 421, 425], "extens": [136, 137, 138, 141, 295, 306, 310, 360, 407], "path": [137, 139, 165, 178, 179, 327, 329, 343, 348, 350, 351, 353, 355, 356, 357, 360, 364, 368, 379, 385, 400, 401, 402, 403, 404, 410, 411, 414, 415, 419, 421], "tick_label": [137, 139], "tick_posit": [137, 139, 251, 254, 271, 422], "n_segement": [137, 139], "kdistanc": [137, 139, 422], "learn": [142, 408], "more": [142, 180, 182, 279, 287, 292, 300, 329, 343, 363, 371, 379, 380, 397, 401, 407, 408, 412, 413, 416, 419, 420], "pars": [142, 143, 145, 147, 149, 151, 152, 161, 165, 168, 175, 176, 178, 184, 186, 192, 194, 195, 209, 224, 230, 231, 232, 233, 234, 235, 236, 287, 288, 328, 401, 404, 416, 418], "dft": [142, 327, 329, 347, 350, 355, 397, 407, 410, 411, 412, 413, 414, 416, 417, 419, 421, 424, 425], "highlight": [142, 356, 425], "python": [142, 157, 202, 228, 327, 329, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 394, 395, 396, 397, 400, 401, 402, 403, 404, 406, 407, 408, 409, 410, 411, 419], "interfac": [142, 360, 407, 419], "configur": [142, 354, 355, 356, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 369, 370, 371, 372, 374, 375, 377, 378, 380, 381, 382, 383, 384, 386, 387, 388, 389, 390, 391, 392, 406], "io": [142, 230, 231, 233, 234, 235, 236, 347, 396, 417, 422, 424], "pyposcar": [142, 296, 312, 313, 356, 400, 401, 402, 403, 404, 405], "modulu": 142, "script": [142, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 344, 345, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 394, 395, 396, 397, 400, 401, 402, 403, 404, 407, 413, 414, 418, 419, 420, 423, 425], "bandsplot": [142, 323, 343, 347, 350, 351, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 371, 374, 375, 413, 415, 416], "dosplot": [142, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 285, 323, 343, 350, 351, 353, 367, 368, 369, 370, 371, 374, 375, 416], "bandsdosplot": [142, 343, 350, 351, 353, 373, 376, 406, 416], "abinitkpoint": [144, 232], "dirnam": [145, 146, 152, 153, 165, 166, 314, 315, 322, 323, 324, 325, 327, 328, 329, 347, 350, 351, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 395, 413, 415, 416, 418, 419, 425], "infil": [145, 146, 149, 150, 151, 326, 329, 331, 332, 397, 414, 419, 420, 423], "abinit_output": [145, 146, 147, 148, 326, 329, 346, 413, 414, 419], "procar": [145, 152, 153, 161, 187, 188, 189, 190, 191, 232, 315, 322, 323, 326, 329, 332, 337, 343, 345, 346, 347, 353, 395, 409, 410, 411, 412, 413, 414, 418, 419, 420, 421, 423, 425], "unlik": 145, "here": [145, 190, 279, 288, 306, 347, 349, 350, 351, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 406, 408, 413], "merg": [145, 326, 346, 407, 414], "fix": [145, 190, 217, 297, 326, 346, 360, 407, 414], "format": [145, 190, 228, 232, 311, 326, 327, 329, 346, 347, 350, 394, 395, 396, 397, 407, 410, 411, 413, 414, 419, 421, 423], "issu": [145, 326, 346, 414, 423], "abinitprocar": [146, 232], "through": [149, 151, 316, 319, 356, 407, 412, 413, 417, 418, 419, 422, 424, 425], "becaus": [149, 407, 413], "multipl": [149, 326, 337, 346, 410, 411, 416, 421], "bsxf": 149, "sown": 149, "bxsfparser": [150, 151, 232], "bxsf": [150, 151, 231, 232, 329, 419], "helper": 151, "qe": [152, 153, 232, 233, 234, 327, 350, 351, 353, 359, 361, 367, 369, 387, 388], "lobsterin": [152, 153, 350], "lobsterout": [152, 153, 350], "scfin_filenam": [152, 153], "scf": [152, 153, 165, 166, 347, 350, 351, 353], "outcar": [152, 153, 161, 179, 180, 181, 182, 183, 191, 232, 322, 329, 353, 395, 413, 419, 425], "poscar": [152, 153, 161, 185, 225, 232, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 303, 306, 307, 308, 309, 311, 313, 327, 329, 364, 397, 399, 405, 406, 419, 420, 425], "dos_interpolation_factor": [152, 153, 192, 193], "directori": [152, 165, 315, 324, 325, 326, 327, 328, 343, 347, 348, 350, 351, 353, 355, 356, 357, 360, 368, 403, 413, 414, 418], "put": [152, 327, 329, 414, 419], "lobsterpars": [153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 232], "retrun": 154, "dos_paramater": 155, "separatli": 155, "pychemia": [155, 207, 215, 216, 219, 220, 227, 409], "visual": [155, 360, 399, 405, 406, 418, 419], "multi": [156, 201], "diment": [156, 201, 419], "complet": [157, 202, 348], "dictionari": [157, 178, 202, 210, 213, 245, 296, 323, 324, 325, 327, 343, 413], "denis": 157, "sturcutu": 161, "scf_in_filenam": [165, 166], "bands_in_filenam": [165, 166], "pdos_in_filenam": [165, 166], "pdo": [165, 166, 351], "kpdos_in_filenam": [165, 166], "kpdo": [165, 166, 351], "atomic_proj_xml": [165, 166], "atomic_proj": [165, 166, 351], "xml": [165, 166, 192, 193, 196, 217, 224, 327, 347, 351, 416], "expresso": 165, "most": [165, 327, 356, 402, 407, 413, 416], "import": [165, 327, 329, 350, 351, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 394, 395, 396, 397, 400, 401, 402, 403, 404, 407, 409, 417, 418, 419, 422, 424, 425], "come": [165, 407, 410, 411], "parser": [165, 217, 232, 396, 413, 417, 422, 424], "took": 165, "place": [165, 343, 351, 360, 407, 419], "case": [165, 327, 329, 343, 355, 402, 407, 413, 414, 419, 420, 425], "ofstat": 165, "locat": [165, 237, 257, 274, 355, 356, 357, 360, 368, 375, 379, 385, 420], "outdir": 165, "prefix": 165, "qepars": [166, 167, 168, 169, 170, 171, 172, 173, 232], "fdf_file": [174, 175], "siestapars": [175, 232], "siesta": [175, 232, 235, 349], "fdf": 175, "vlaue": 176, "kpioint": 176, "run": [178, 288, 346, 347, 348, 350, 351, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 394, 395, 396, 397, 400, 401, 402, 403, 404, 407, 414, 421], "extract": [178, 211, 212, 353, 420], "summari": [178, 347], "eigenvalu": 178, "stress": 178, "tensor": 178, "forc": [178, 407], "local": [178, 356, 358, 359, 360, 361, 362, 363, 364, 367, 369, 370, 371, 374, 378, 380, 381, 384, 386, 387, 388, 389, 390, 391, 394, 395, 396, 397, 402, 407], "charg": [178, 347, 360, 407], "dielectr": 178, "amount": [178, 297, 305], "written": [178, 295, 306, 310, 347, 353, 394, 397, 407, 425], "onto": [178, 412, 413, 421], "chosen": 178, "modifi": [178, 287, 298, 308, 327, 399, 405, 406, 407, 412, 413], "nwrite": 178, "tag": [178, 214, 347, 413, 418], "incar": [178, 353, 419], "act": 178, "access": [178, 407, 412, 421], "variabl": [178, 291, 413], "union": [178, 179], "file_str": 178, "content": [178, 179, 291, 306, 309, 310, 407], "constructor": 179, "read": [179, 217, 329, 351, 397, 407, 416, 419, 425], "specifi": [179, 196, 315, 327, 329, 348, 351, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 394, 395, 396, 397, 407, 413, 416, 419], "its": [179, 360, 407], "just": [180, 182, 279, 288, 305, 306, 310, 419, 420], "field": 180, "keep": [180, 327, 329, 407, 412, 419, 420], "than": [180, 182, 209, 279, 327, 329, 347, 401, 407, 412, 413, 419, 420, 425], "ndaarai": 182, "them": [183, 228, 287, 356, 360, 407, 413, 421], "matric": [183, 421], "stupid": 190, "problem": [190, 407], "due": [190, 423, 425], "fortran": [190, 423], "now": [190, 350, 351, 404, 418, 420, 421], "separ": [190, 407, 412, 413, 414], "61": [190, 401], "00000000": [190, 421], "50000000": 190, "But": [190, 380, 407, 418], "precis": [191, 407], "vasprun": [192, 193, 222, 224, 327, 416], "vaspxml": [193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 232], "el": 196, "_type": 196, "attrib": 196, "tree": 196, "boolian": [197, 198, 199, 228, 327], "consist": [197, 198, 211, 347, 353, 395, 407, 412, 413, 421], "ionic": [197, 199, 204, 208, 218, 227], "converg": [198, 199], "system": [205, 221, 288, 350, 356, 407, 414, 418, 425], "final": [207, 404, 407, 413, 414], "xml_tree": [209, 210, 211, 212, 213, 214], "calculatio": 209, "scstep": 209, "dest": 210, "recurc": [210, 212], "check": [210, 326, 408, 414], "spell": 210, "tage": 212, "varrai": 214, "vaspincar": 215, "alwai": [217, 287, 305, 418], "accord": [217, 360, 407, 418], "finish": 217, "pseudopotenti": 223, "potcar": 223, "covert": 228, "abinit": [230, 232, 326, 327, 329, 349, 350, 411, 412, 413, 414, 419], "espresso": [231, 232, 233, 234, 235, 349, 350, 354, 365, 366, 372, 406, 411, 412, 413], "decrib": 232, "result": [232, 384, 407, 420, 425], "lobster": [232, 233, 323, 325, 327, 328, 349, 411, 418], "abinitpars": 232, "vasppars": 232, "mpl": [237, 257], "orient": [239, 242, 243, 244, 245, 246, 247, 323, 327, 386, 396, 412, 413, 416], "horizont": [239, 242, 243, 244, 245, 246, 247, 323, 327, 416], "linestyl": [239, 357, 368, 379, 402], "THe": 239, "plain": [242, 263, 323, 324, 325, 327, 328, 329, 347, 350, 351, 353, 355, 356, 357, 359, 360, 364, 368, 369, 370, 375, 379, 380, 381, 383, 384, 385, 386, 391, 392, 406, 410, 411, 415, 418, 419, 421, 425], "parametr": [243, 244, 265, 327, 329, 343, 355, 356, 357, 359, 360, 364, 368, 374, 375, 379, 380, 381, 384, 385, 386, 387, 388, 391, 412, 413, 415, 419, 421], "item": [245, 323, 324, 325, 327, 358, 367, 371, 407, 413, 416, 425], "plot_tot": [245, 327, 368, 416], "contribut": [245, 246, 247, 327, 329, 407, 408, 412, 413, 416, 419], "eachoth": 247, "pdf": [248, 267, 327], "interv": [250, 253, 270, 273, 274, 355, 360, 415], "xlim": [250, 355, 360], "tick_nam": [251, 254, 271, 422], "xtick": 251, "ylim": 253, "ytick": 254, "config_dict": [256, 276], "ebsplot": [258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 285], "fermi_level": 259, "methdo": 261, "width_mask": [262, 264, 266], "color_mask": [262, 264, 266], "width_weight": [262, 264, 266], "color_weight": [262, 264, 266], "scatter": [262, 264, 266, 355, 356, 357, 359, 360, 361, 362, 364, 374, 375, 413], "mask": [262, 264, 266, 280, 282, 324, 325, 407, 413], "overlai": [265, 355, 356, 357, 359, 360, 361, 362, 363, 364, 374, 375, 384, 385, 386, 387, 388, 389, 390, 391], "fo": [269, 272], "begin": [270, 273, 330, 421], "end": [270, 273, 330, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 394, 395, 396, 397, 400, 401, 402, 403, 404, 407, 416, 421], "_f": [272, 355, 357, 358, 359, 360, 361, 362, 363, 364, 374, 375], "depeci": 277, "ot": 277, "procarplot": [278, 279, 280, 281, 282, 285], "hot_r": [279, 282], "handler": 279, "parametricplot": 279, "fake": 279, "shouldn": 279, "invok": [279, 306, 407, 409], "discontinu": [280, 281, 282, 323, 351, 421], "figsiz": [280, 281], "13": [280, 281, 361, 369, 391, 392, 400, 407, 412, 420, 421], "plot_bar": [280, 368], "02": [281, 365, 376, 392], "50": [282, 353, 401, 420], "structutu": 283, "stuctur": 285, "depreci": 286, "low": [287, 311, 312, 355, 360, 420], "tailor": 287, "manual": [287, 386, 397, 413, 414], "coord": [287, 305, 310, 330], "_set_cartesian": 287, "_set_direct": 287, "ie": 287, "angstrom": [287, 290], "load": [287, 288, 290, 291, 347, 384, 385, 386, 387, 388, 389, 390, 391, 400, 401, 404], "whole": [287, 329, 360, 407, 419], "_unpars": 287, "sort": 287, "remov": [287, 297, 403, 407], "automat": [288, 293, 295, 306, 327, 329, 347, 353, 355, 360, 394, 397, 401, 407, 413, 419], "debug": [288, 407], "cpo": 288, "nadarrai": [288, 299], "dpo": [288, 400, 401, 403, 404], "lat": [288, 400, 401, 403, 404], "3x3": [288, 309], "typesp": 288, "aam": 288, "numbersp": 288, "ntotal": [288, 404], "elm": [288, 400, 401, 403, 404], "dynam": [288, 407], "selectflag": 288, "flag": [288, 326, 346, 347, 348, 350, 351, 353, 414, 425], "Not": [288, 407], "conveni": [288, 306, 310, 407], "volum": [288, 407, 419, 424], "box": [288, 407], "product": [288, 400, 401, 403, 404, 407], "selectiveflag": 289, "1x3": 289, "direct_posit": 290, "essenci": 290, "direct_po": 290, "coordiant": [290, 299], "fromstr": 291, "memori": [291, 384, 385, 386, 387, 388, 389, 390, 391, 420], "popul": 291, "when": [293, 315, 328, 329, 346, 353, 356, 359, 363, 371, 384, 385, 386, 387, 388, 389, 390, 391, 394, 396, 397, 400, 401, 403, 404, 407, 412, 414, 415, 418, 419, 420, 422], "out": [294, 327, 329, 346, 347, 348, 350, 351, 356, 407, 419], "positon": 294, "falseposit": 294, "comment": [295, 421], "ad": [295, 306, 310, 329, 350, 407, 419], "poscar1": 296, "poscar2": 296, "compar": [296, 313, 354, 365, 384, 406, 410, 411, 421, 425], "two": [296, 313, 327, 329, 401, 404, 407, 413, 419], "small": [296, 407, 419], "numer": [296, 407], "ignor": [296, 402, 420], "empti": 296, "comparison": [296, 413, 415], "doe": [296, 303, 327, 329, 356, 364, 378, 383, 384, 385, 386, 387, 388, 389, 390, 391, 406, 407, 416, 418, 419, 420], "distanc": [296, 402, 422, 425], "rel": [296, 420], "consid": [296, 327, 329, 367, 371, 407, 408, 410, 411, 412, 413, 419], "equal": [296, 359, 387, 388], "chang": [297, 298, 300, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 403, 404, 407, 416], "pos_multipli": 297, "multipli": [297, 301, 304], "pos_sum": 297, "human": [297, 300, 303, 404], "singl": [297, 299, 360, 407, 414], "scale_lattic": [297, 404], "poscar_modifi": [298, 299, 300, 301, 302, 303, 304, 305, 306, 311, 313, 404], "cu": 299, "newel": [300, 404], "replac": [300, 358, 359, 361, 362, 363, 364, 367, 369, 370, 371, 374, 378, 380, 381, 384, 386, 387, 388, 389, 390, 391, 397], "fx": [301, 302], "fy": [301, 302], "fz": [301, 302], "trivial": [303, 356], "equival": [303, 327, 407], "desir": [303, 309, 397, 413, 416], "onc": [303, 347, 355, 356, 357, 360, 368, 375, 379, 385, 409], "start": [303, 327, 329, 400, 401, 404, 407, 412, 413, 418, 419, 420], "keep_cartesian": [304, 404], "b": [304, 402, 403, 404, 407, 424], "what": [304, 406, 407], "cooddin": 304, "remain": [304, 407, 421], "pbc": 305, "enforc": [305, 407], "perod": 305, "condit": [305, 407], "too": [306, 404, 407, 423], "poscar_supercel": [308, 309, 310, 311, 313, 404], "origin": [309, 329, 378, 379, 380, 381, 407, 413, 417, 419, 420], "overwritten": 309, "b1x": 309, "b1y": 309, "b1z": 309, "b2x": 309, "b2y": 309, "b2z": 309, "b3x": 309, "b3y": 309, "b3z": 309, "note": [309, 356, 395, 402, 409, 413, 414, 416, 425], "creation": [309, 407], "make": [309, 347, 351, 353, 355, 360, 383, 384, 385, 386, 387, 388, 389, 390, 391, 403, 404, 406, 407, 418, 420], "deep": 309, "copi": [309, 351, 407, 416], "analysi": [311, 347, 419, 420], "real": [311, 356, 420], "featur": [311, 329, 353, 356, 363, 371, 407, 418, 419, 420], "storag": [311, 407], "util": [311, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 394, 395, 396, 397, 402, 403, 407, 414, 418, 419, 420, 423], "poscarutil": [311, 404], "poscardiff": [311, 313], "strcutur": 312, "repair": [314, 315, 322, 323, 329, 343, 345, 407, 419, 421], "apply_symmetri": [314, 315, 384, 385, 386, 387, 388, 389, 390, 391], "fermihandl": [315, 316, 317, 318, 319, 320, 321, 343, 347, 353, 384, 385, 386, 387, 388, 389, 390, 391], "Then": [315, 353, 358, 359, 361, 362, 363, 364, 367, 369, 370, 371, 374, 378, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 397, 425], "srufac": [315, 316, 319], "iso_rang": [316, 319, 329, 387, 388, 419], "iso_surfac": [316, 319, 329, 387, 388, 419], "iso_valu": [316, 319, 388], "spin_textur": [316, 317, 318, 319, 320, 328, 329, 378, 379, 380, 381, 383, 384, 385, 386, 387, 388, 389, 390, 392, 406, 418, 419], "property_nam": [316, 317, 318, 319, 320], "save_gif": [316, 320, 388], "print_plot_opt": [316, 317, 318, 319, 320, 323, 324, 327, 328, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 413, 418, 425], "slide": [316, 319], "go": [316, 319, 327, 329, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 394, 395, 396, 397, 400, 401, 402, 403, 404, 409, 419], "ther": [316, 319, 325], "slider": [316, 319, 329, 419], "slice_norm": [317, 318, 329, 384, 386, 419], "slice_origin": [317, 318, 329, 384, 386, 419], "save_2d": [317, 318, 319, 320], "save_2d_slic": [317, 318, 386], "save_mp4": 320, "save_3d": 320, "gap": [322, 356, 360, 395], "bands_set": [323, 343, 374, 375], "elimit": [323, 324, 325, 327, 355, 359, 360, 364, 413, 415, 416, 425], "cubic": [323, 324, 325, 413, 425], "interpolation_typ": [323, 324, 325, 413, 425], "projection_mask": [323, 324, 325, 327, 413, 425], "dos_set": [323, 343, 374, 375], "dos_limit": [323, 327], "savefig": [323, 324, 325, 327, 328, 357, 368, 413, 415, 416, 418, 425], "k_limit": 323, "title_fonts": 323, "draw_fermi": 323, "plot_color_bar": [323, 357, 368, 379, 380, 381], "keyword": [323, 343, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 407, 417], "argument": [323, 327, 329, 343, 347, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 407, 416, 417, 419, 422, 424], "window": [323, 324, 325, 327, 356, 407, 413, 419], "structutr": [324, 413], "sting": [324, 413], "kanem": [324, 413], "decid": [324, 407, 413, 418], "plt": [324, 325, 327, 328, 402, 413, 418, 425], "kdirect": [325, 413, 425], "bandstructur": [325, 334, 407, 414], "kitck": 325, "objext": 325, "outfil": [326, 331, 332, 397, 414, 420, 423], "procar_merg": [326, 414], "gz": [326, 414], "mergeparallel": [326, 414], "fixformat": [326, 414], "nspin": [326, 351, 414, 417], "concaten": [326, 337, 343, 346, 421], "procar_": [326, 414], "compress": [326, 414], "parallel": [326, 346, 414], "detect": [326, 360, 414], "nsppol": [326, 414], "being": [327, 384, 407], "carri": [327, 356, 407, 413, 416], "srvo3": 327, "perform": [327, 329, 347, 348, 351, 353, 407, 410, 411, 418, 419, 420, 422, 425], "explain": [327, 346, 407, 419], "exmapl": [327, 384, 386, 387, 388, 389, 390, 391, 394, 396, 397, 400, 401, 403, 404], "tutori": [327, 364, 408, 419], "parametric_lin": [327, 368, 369, 370, 374, 375, 421], "stack_orbit": [327, 367, 368, 369, 370, 371, 374, 375, 421], "stack_speci": [327, 368, 369, 370, 374, 375, 421], "polor": 327, "packag": [327, 329, 351, 355, 357, 368, 375, 379, 385, 402, 403, 404, 407, 413, 416, 419], "relev": [327, 329, 347, 356, 407, 419], "srvo": [327, 329, 412, 413, 416, 419], "choos": [327, 329, 356, 407, 419], "oxygen": [327, 329, 416, 419], "sr1": [327, 329, 419], "o3": [327, 329, 419], "900891": [327, 329, 419], "000000": [327, 329, 419, 423], "sr": [327, 329, 412, 413, 416, 419], "500000": [327, 329, 419], "noth": [327, 329, 407, 419], "indeci": [327, 329, 419], "relav": [327, 329, 419], "while": [327, 329, 356, 407, 416, 419, 420], "ask": [327, 407, 416], "graph": [327, 407], "higher": 327, "accept": [327, 407, 417], "png": [327, 329, 386, 413, 416, 419, 425], "jpg": 327, "interact": [327, 402, 407, 419], "well": [327, 356, 378, 380, 407, 413, 414, 419], "entri": [327, 364, 404], "cal": 327, "argumnet": [327, 416], "elk": [327, 349, 411, 412, 413, 415, 416], "fill": [327, 416], "under": [327, 407, 416], "curv": [327, 416], "For": [327, 343, 353, 358, 360, 361, 362, 363, 364, 367, 369, 370, 371, 379, 380, 384, 385, 386, 387, 388, 389, 390, 391, 394, 407, 412, 413, 416, 418, 419, 420, 421, 425], "clarif": 327, "visit": 327, "specif": [327, 343, 350, 355, 356, 385, 402, 403, 407, 408, 412, 413, 416, 419], "clarifi": 327, "lingo": 327, "top": [327, 416], "take": [327, 343, 351, 356, 360, 361, 369, 407, 417, 422, 424], "treat": [327, 407, 418], "subplot": [327, 402, 403], "larger": [327, 407], "row": [327, 412, 413, 420], "colomun": 327, "fig": [327, 359, 402, 413], "linspac": 327, "pi": [327, 384], "1000": [327, 402], "sin": 327, "plt_show": 327, "skip": [327, 419], "set_ylim": 327, "k_z_plane": [328, 418], "k_z_plane_tol": [328, 418], "rot_symm": [328, 418], "translat": [328, 421], "exportplt": [328, 418, 425], "k_z": [328, 418], "invalid": [328, 407, 418], "background_color": [329, 385, 419], "save_color": [329, 419], "calculate_fermi_spe": [329, 419], "calculate_fermi_veloc": [329, 419], "calculate_effective_mass": [329, 419], "arrow_color": [329, 379, 380, 419], "arrow_s": [329, 379, 380, 381, 385, 386, 391, 419], "015": [329, 397, 419], "only_spin": [329, 419], "savegif": [329, 419], "savemp4": [329, 419], "save3d": [329, 419], "save_meshio": [329, 419], "perspect": [329, 419], "save2d": [329, 419], "show_slic": [329, 419], "show_cross_section_area": [329, 386, 419], "iso_slid": [329, 419], "camera_po": [329, 419], "widget": [329, 386, 419], "simul": [329, 360, 419], "mgb2": [329, 364, 419], "ni_f": [329, 419], "49": [329, 419, 422], "iter": [329, 419], "ones": [329, 416, 419], "14": [329, 361, 369, 380, 384, 392, 400, 412, 419, 421], "15": [329, 361, 364, 369, 380, 389, 392, 400, 401, 407, 412, 419, 425], "17": [329, 361, 369, 381, 400, 401, 412, 419], "kgrid": [329, 419], "5x5x5": [329, 419], "lead": [329, 419], "20x20x20": [329, 419], "uniform": [329, 419], "direect": [329, 419], "rgba": [329, 419], "whena": [329, 419], "recomend": [329, 419], "qualit": [329, 419], "grai": [329, 419], "allow": [329, 356, 360, 407, 412, 413, 418, 419, 425], "web": [329, 419], "page": [329, 407, 408, 411, 419], "http": [329, 347, 364, 384, 407, 409, 419], "org": [329, 364, 384, 407, 419], "user": [329, 343, 356, 358, 360, 361, 362, 363, 367, 369, 370, 371, 397, 407, 412, 413, 416, 418, 419], "html": [329, 347, 364, 407, 419], "surfca": [329, 419], "property_project": [329, 419], "fermi_velocity_vector": [329, 419], "mean": [329, 358, 360, 361, 362, 363, 367, 369, 370, 371, 407, 419], "effective_mass": [329, 419], "collinear": [329, 412, 413, 417, 419, 421], "As": [329, 356, 402, 407, 413, 419, 421], "suggest": [329, 419], "abov": [329, 350, 351, 353, 356, 381, 384, 387, 388, 401, 407, 412, 413, 415, 419], "belov": [329, 419], "fast": [329, 419], "rather": [329, 419, 420, 425], "inaccur": [329, 407, 419], "nearest": [329, 360, 402, 404, 419], "neighbor": [329, 360, 402, 404, 419], "accur": [329, 419], "linear": [329, 419], "gif": [329, 388, 419], "mp4": [329, 419], "video": [329, 419], "export": [329, 419, 421], "stl": [329, 419], "binari": [329, 419], "ply": [329, 419], "ascii": [329, 419], "off": [329, 383, 384, 385, 386, 387, 388, 389, 390, 391, 394, 396, 397, 400, 401, 403, 404, 406, 419], "obj": [329, 419], "gltf": [329, 419], "collada": [329, 419], "meshio": [329, 419], "illus": [329, 419], "depth": [329, 408, 419], "graphic": [329, 419], "turn": [329, 383, 384, 385, 386, 387, 388, 389, 390, 391, 406, 419], "largest": [329, 419], "show_curvatur": [329, 419], "curvatur": [329, 419], "curvature_typ": [329, 419], "avail": [329, 407, 408, 413, 418, 419, 425], "gaussian": [329, 419], "iso_energi": [329, 419], "view": [329, 407, 419], "camera": [329, 419], "nkx": 330, "nky": 330, "grid_siz": 331, "40": [331, 348, 384, 397, 401, 403, 413], "with_time_revers": 331, "recip": [331, 347, 397, 419], "hpkot": [331, 397], "threshold": [331, 397, 402], "07": [331, 382, 392, 397, 405], "angle_toler": 331, "supercell_matrix": [331, 364, 397, 425], "recepi": 331, "procarrepair": [332, 423], "exist": 333, "pre": [343, 364, 374, 375, 378, 379, 380, 381, 394, 397, 407, 410, 411], "post": [343, 364, 374, 375, 378, 379, 380, 381, 394, 397, 407, 410, 411, 420], "cat": [343, 346, 414, 421], "depend": [343, 409, 416], "mai": [343, 356, 363, 364, 371, 407, 413, 419], "orbitald": 343, "bandsplot_2d": 343, "bandtructur": 343, "combin": [343, 375, 379, 407, 412, 413, 414, 419], "fermi2d": [343, 377, 379, 381, 382, 406, 418], "fermi3d": [343, 350, 351, 383, 392, 406, 419], "generate2dkmesh": [343, 394], "kmesh": [343, 347, 350, 353, 396], "bandgap": [343, 393, 398, 406], "reapir": 343, "abinitoutput": 346, "prtprocar": 346, "nameofoutputfil": 346, "split": [346, 377, 382, 400, 401, 403, 404, 406, 414, 418], "guid": [347, 349, 351, 353, 358, 361, 362, 363, 367, 369, 370, 371, 408], "eigenvector": 347, "writeeigenvector": 347, "ye": 347, "eigenvectorsastext": 347, "block": [347, 413, 421], "calcualt": 347, "writebandout": 347, "analisi": 347, "writedetailedxml": 347, "writedetailedout": 347, "your": [347, 350, 351, 407, 408, 419], "dftb_in": 347, "hsd": 347, "ouput": 347, "much": [347, 360, 404], "faster": [347, 420], "variou": [347, 350, 351, 353, 357, 368, 375, 379, 385, 410, 411, 417, 421, 422, 424], "independ": [347, 350, 351, 353, 407], "bin": [347, 351, 402], "dftbplu": 347, "readthedoc": 347, "en": 347, "latest": 347, "basic": [347, 407, 410, 411, 413, 416], "bandstruct": 347, "sure": [347, 351, 353, 383, 384, 385, 386, 387, 388, 389, 390, 391, 403, 406, 407], "respect": [347, 360, 404, 407, 412, 413, 418, 420, 425], "readinitialcharg": 347, "maxscciter": 347, "hamiltonian": 347, "kpointsandweight": 347, "suppos": 347, "scctoler": 347, "kline": 347, "333333": 347, "20": [347, 362, 379, 380, 381, 382, 384, 386, 391, 394, 397, 400, 401, 404, 407], "gamma": [347, 348, 353, 355, 394, 413, 414, 422, 424, 425], "bandlin": 348, "band_": [348, 412, 413], "_a": 348, "obtain": [348, 400, 402, 410, 411, 413, 414, 421], "task": [348, 356, 410, 411], "22": [348, 369, 372, 400, 401, 404], "addition": [348, 417], "spinpol": 348, "These": [348, 354, 366, 373, 374, 375, 377, 383, 393, 399, 406, 407, 412, 413, 419], "join": [348, 357, 368, 379, 385, 400, 401, 402, 403, 404], "plot1d": 348, "were": [348, 401, 407], "prepar": 349, "perper": 349, "dftb": 349, "fatband": 350, "lobter": 350, "lobstercod": 350, "v6": [350, 351], "pw": [350, 351], "bands_dirnam": [350, 351, 353], "dos_dirnam": [350, 351, 353], "bands_mod": [350, 351, 353], "dos_mod": [350, 351, 353], "right": [350, 360, 402, 407, 416, 419, 421], "addit": [350, 351, 353, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 407, 421], "wf_collect": 350, "nosym": 350, "noinv": 350, "k_point": [350, 351], "520": 350, "0000000": 350, "1428571": 350, "2857143": 350, "4285714": 350, "0000000000": [350, 351], "0000": 350, "0200000000": 350, "4800000000": 350, "5000000000": [350, 351], "5110420726": 350, "4889579274": 350, "7539676705": 350, "2460323295": 350, "7650097432": 350, "2349902568": 350, "h2": 350, "h0": 350, "2238002446": 350, "meth": 350, "explicitli": [350, 351, 407], "lobster_input_fil": 350, "explicit": [350, 351], "createfatband": 350, "2p_x": 350, "2p_y": 350, "2p_z": 350, "li": [350, 407], "refer": [350, 358, 361, 362, 363, 367, 369, 370, 371, 379, 380, 407, 412, 413, 417, 421, 422, 424], "fe": [350, 357, 358, 359, 361, 362, 363, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 385, 386, 387, 388, 389, 390, 391, 395, 396, 397], "lobster_q": 350, "projwfc": 351, "kresolveddo": 351, "main": [351, 360, 417, 422, 424], "nscf": 351, "crystal_b": 351, "6250000000": 351, "2500000000": 351, "u": [351, 407, 408, 418], "3750000000": 351, "7500000000": 351, "w": [351, 407, 419], "occur": [351, 407, 413], "269": 351, "0083333333": 351, "0166666667": 351, "0250000000": 351, "0333333333": 351, "0416666667": 351, "4916666667": 351, "5062500000": 351, "0125000000": 351, "6125000000": 351, "2250000000": 351, "6187500000": 351, "2375000000": 351, "3691406250": 351, "7382812500": 351, "3632812500": 351, "7265625000": 351, "3574218750": 351, "7148437500": 351, "0058593750": 351, "0117187500": 351, "starting_magnet": 351, "branch": 351, "instal": [351, 403, 407], "git": [351, 409], "clone": 351, "gitlab": 351, "com": [351, 407, 409], "pietrodeluga": 351, "q": [351, 419], "cd": [351, 409], "checkout": 351, "new_proj": 351, "side": [351, 375, 403, 407], "noncolin": 351, "lspinorb": 351, "savesigma": 351, "still": [352, 407], "develop": [352, 364, 374, 375, 378, 379, 380, 381, 394, 397, 411], "lorbit": [353, 425], "11": [353, 361, 369, 400, 407, 412, 421], "12": [353, 357, 361, 363, 369, 375, 378, 390, 400, 401, 412, 419, 421, 425], "wave": [353, 421], "ispin": [353, 425], "lnoncollinear": 353, "icharg": 353, "math": [353, 412, 413], "chgcar": 353, "line_mod": 353, "h": [353, 360, 402, 407, 422, 425], "demonstr": [354, 357, 366, 368, 373, 375, 377, 379, 383, 385, 393, 399, 401, 403, 404, 406], "capabl": [354, 356, 366, 373, 377, 383, 393, 406, 410, 411, 413, 419], "autoband": [354, 365, 406], "invers": [354, 356, 365, 406], "particip": [354, 356, 365, 406], "ratio": [354, 356, 365, 406], "download": [355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 394, 395, 396, 397, 400, 401, 402, 403, 404, 406], "illustr": [355, 357, 368, 375, 379, 385, 416, 421], "compound": 355, "hbn": 355, "cncn": 355, "dive": [355, 356, 357, 360, 368, 375, 379, 385, 402, 403], "data_dir": [355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 394, 395, 396, 397, 400, 401, 402, 403, 404], "download_exampl": [355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 395, 396, 397], "save_dir": [355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 395, 396, 397], "cnn": 355, "spin_calc_typ": [355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 395, 396, 397], "calc_typ": [355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 395, 396, 397], "necessari": [355, 356, 360, 407, 413, 421], "librari": [355, 356, 360, 364, 374, 375, 378, 379, 380, 381, 394, 397, 407, 409, 410, 411], "root": [355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 395, 396, 397, 400, 401, 402, 403, 404], "sep": [355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 395, 396, 397, 400, 401, 403, 404], "focu": [355, 419], "re": [355, 420], "interest": [355, 356, 360, 407, 419], "96": 355, "97": 355, "42": [355, 392, 401], "44": 355, "clim": [355, 357, 360, 368, 375, 379], "There": [355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 407, 408], "pass": [355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 407], "overlay_speci": [355, 356, 357, 359, 360, 361, 362, 363, 364, 374, 375], "overlay_orbit": [355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 374, 375], "research": [355, 357, 360, 364, 368, 378, 379, 380, 381, 385, 407, 408], "ebs_plot": [355, 360, 364, 413, 415], "547": [355, 360], "userwarn": [355, 360, 364], "attempt": [355, 360, 407], "ident": [355, 360], "singular": [355, 360], "set_xlim": [355, 360], "246": 355, "98": 355, "900x600": [355, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371], "ylabel": [355, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375], "minut": [355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 394, 395, 396, 397, 400, 401, 402, 403, 404], "900": [355, 365], "plot_atomic_level": [355, 365], "jupyt": [355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 394, 395, 396, 397, 400, 401, 402, 403, 404, 406], "notebook": [355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 394, 395, 396, 397, 400, 401, 402, 403, 404, 406], "ipynb": [355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 394, 395, 396, 397, 400, 401, 402, 403, 404], "galleri": [355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 394, 395, 396, 397, 400, 401, 402, 403, 404, 406], "sphinx": [355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375, 378, 379, 380, 381, 384, 385, 386, 387, 388, 389, 390, 391, 394, 395, 396, 397, 400, 401, 402, 403, 404, 406], "power": [356, 407], "correl": [356, 412, 413], "defect": [356, 399, 402, 405, 406, 407], "tradition": 356, "That": [356, 410, 411], "tediou": 356, "prone": [356, 360], "care": [356, 418], "aim": [356, 407], "bulk": [356, 360], "fundament": [356, 360, 407], "insul": 356, "identifi": [356, 407, 412, 413, 418], "van": [356, 360, 383, 392, 406], "der": [356, 360], "waal": [356, 360], "suitabl": [356, 397, 407], "emphas": 356, "execut": [356, 365, 372, 376, 382, 392, 398, 405, 407, 413], "without": [356, 404, 407, 416, 419], "intervent": 356, "identif": [356, 360], "evalu": 356, "autom": 356, "statist": 356, "distinct": 356, "rest": 356, "scenario": 356, "readili": [356, 407], "appar": 356, "standard": [356, 407], "robust": [356, 410, 411], "geometr": 356, "yet": [356, 408], "captur": [356, 360], "howev": [356, 360, 407, 413, 419], "anticip": 356, "continu": [356, 407, 419], "feedback": 356, "bi2se3_data_dir": [356, 360], "auto": 356, "slab": [356, 360, 399, 405, 406], "topolog": 356, "bi": 356, "dirac": 356, "cone": 356, "upper": [356, 402], "report": [356, 421], "txt": 356, "info": 356, "compris": 356, "associ": [356, 407], "autobandsplot": 356, "unknow": 356, "did": [356, 416], "filter": [356, 396, 421], "ok": 356, "100": [356, 402], "206": 356, "953": 356, "956": 356, "27": [356, 365, 367, 372, 384, 400, 401, 404], "777": [356, 365], "plot_autoband": [356, 365], "wai": [357, 360, 368, 375, 379, 385, 402, 407, 408, 420], "explor": [357, 368, 375, 379, 385, 400, 402], "print_plot_op": 357, "config_path": [357, 368, 379, 385], "__path__": [357, 368, 379, 385], "spin_color": [357, 368, 385, 390], "fermi_color": [357, 368, 375], "fermi_linestyl": [357, 368, 375], "fermi_linewidth": [357, 368, 375], "grid_axi": [357, 368], "grid_color": [357, 368], "grid_linestyl": [357, 368], "grid_linewidth": [357, 368], "grid_which": [357, 368], "markers": [357, 368, 375], "weighted_color": [357, 368], "weighted_width": [357, 368], "figure_s": [357, 368, 375], "dpi": [357, 368, 375, 379], "xlabel": [357, 358, 359, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 374, 375], "1000x600": [357, 368], "895": [357, 365], "plot_bandsplot_configur": [357, 365], "ref": [358, 361, 362, 363, 367, 369, 370, 371], "atomic_project": [358, 361, 362, 363, 367, 369, 370, 371], "390": [358, 365], "plot_colinear": [358, 365], "vasp_data_dir": 359, "qe_data_dir": 359, "maplotlib": 359, "515": [359, 365], "plot_compare_band": [359, 365], "often": [360, 425], "typic": [360, 397, 407, 423], "usual": [360, 418], "procedur": [360, 407], "cumbersom": 360, "lowest": 360, "unoccupi": 360, "neutral": 360, "c_n": 360, "bn": 360, "practic": [360, 407], "delai": 360, "photon": 360, "emitt": 360, "jara2021": 360, "auburger2021": 360, "simpler": [360, 420], "ipr_": 360, "nk": [360, 421], "sum_": [360, 421], "c_": 360, "nki": 360, "left": [360, 402, 419, 421], "sum_a": 360, "nka": 360, "been": [360, 407, 419], "context": [360, 407], "anderson": 360, "evers2000": 360, "kind": [360, 407], "perfectli": 360, "would": [360, 387, 388, 407, 412, 413, 418, 419], "bi2se3": [360, 399, 405, 406], "spinorbit": 360, "c_data_dir": 360, "center": [360, 386, 394, 407, 418, 421], "zhang2009": 360, "six": 360, "quintupl": [360, 400], "five": [360, 412, 413], "thick": 360, "outer": 360, "contrast": [360, 407], "enough": 360, "clear": [360, 407, 415], "neg": [360, 423], "substitut": [360, 399, 405, 406], "plu": [360, 407], "adjac": 360, "vacanc": 360, "Its": 360, "ground": 360, "triplet": 360, "microwav": 360, "radiat": 360, "doherty2013": 360, "215": 360, "henc": 360, "to0": 360, "sever": [360, 404, 406, 419], "lie": 360, "dark": 360, "closest": 360, "doubl": [360, 425], "degener": 360, "occupi": 360, "optic": 360, "transit": [360, 418], "430": 360, "to431": 360, "to432": 360, "emiss": 360, "involv": 360, "excit": 360, "occup": 360, "mention": 360, "delta": 360, "scfmethod": 360, "jin2021": 360, "540": 360, "24": [360, 361, 365, 400], "654": [360, 365], "plot_ipr": [360, 365], "sphinx_gallery_thumbnail_numb": [361, 384, 386, 387, 388, 389, 390, 391, 394, 395, 396, 397], "express": [361, 369, 407], "therefor": [361, 369, 407, 412, 425], "91": 361, "621": [361, 365], "plot_noncolinear_q": [361, 365], "164": [362, 365], "plot_noncolinear_vasp": [362, 365], "few": [363, 371], "doc": [363, 371], "default_set": [363, 371], "ini": [363, 371], "706": [363, 365], "plot_spin_polar": [363, 365], "supercell_dir": 364, "supercell_band": 364, "primitive_dir": 364, "primitive_band": 364, "mgb2_unfold": 364, "reflect": 364, "unfold_mod": [364, 425], "diag": [364, 425], "____": [364, 374, 375, 378, 379, 380, 381, 394, 397], "__": [364, 374, 375, 378, 379, 380, 381, 394, 397], "___": [364, 374, 375, 378, 379, 380, 381, 394, 397], "jun": [364, 374, 375, 378, 379, 380, 381, 394, 397], "10th": [364, 374, 375, 378, 379, 380, 381, 394, 397], "2021": [364, 374, 375, 378, 379, 380, 381, 394, 397], "cite": [364, 374, 375, 378, 379, 380, 381, 394, 397, 419], "uthpala": [364, 374, 375, 378, 379, 380, 381, 394, 397, 407], "herath": [364, 374, 375, 378, 379, 380, 381, 394, 397, 407], "pedram": [364, 374, 375, 378, 379, 380, 381, 394, 397, 407], "tavadz": [364, 374, 375, 378, 379, 380, 381, 394, 397, 407], "xu": [364, 374, 375, 378, 379, 380, 381, 394, 397, 407], "he": [364, 374, 375, 378, 379, 380, 381, 394, 397, 407], "eric": [364, 374, 375, 378, 379, 380, 381, 394, 397, 407], "bousquet": [364, 374, 375, 378, 379, 380, 381, 394, 397, 407], "sobhit": [364, 374, 375, 378, 379, 380, 381, 394, 397, 407], "singh": [364, 374, 375, 378, 379, 380, 381, 394, 397, 407], "francisco": [364, 374, 375, 378, 379, 380, 381, 394, 397, 407], "mu\u00f1oz": [364, 374, 375, 378, 379, 380, 381, 394, 397, 407], "aldo": [364, 374, 375, 378, 379, 380, 381, 394, 397, 407], "romero": [364, 374, 375, 378, 379, 380, 381, 394, 397, 407], "comput": [364, 374, 375, 378, 379, 380, 381, 394, 397, 407], "physic": [364, 374, 375, 378, 379, 380, 381, 394, 397, 407], "commun": [364, 374, 375, 378, 379, 380, 381, 394, 397, 407], "251": [364, 374, 375, 378, 379, 380, 381, 394, 397, 407], "2020": [364, 374, 375, 378, 379, 380, 381, 394, 397, 407], "107080": [364, 374, 375, 378, 379, 380, 381, 394, 397, 407], "rees": [364, 374, 375, 378, 379, 380, 381, 394, 397, 407], "boucher": [364, 374, 375, 378, 379, 380, 381, 394, 397, 407], "logan": [364, 374, 375, 378, 379, 380, 381, 394, 397, 407], "lang": [364, 374, 375, 378, 379, 380, 381, 394, 397, 407], "freddi": [364, 374, 375, 378, 379, 380, 381, 394, 397, 407], "farah": [364, 374, 375, 378, 379, 380, 381, 394, 397, 407], "605": 364, "proxi": [364, 407], "artist": 364, "stabl": 364, "intermedi": 364, "legend_guid": 364, "23": [364, 365, 400, 404], "498": [364, 365], "plot_unfold": [364, 365], "31": [365, 400], "121": 365, "examples_00": 365, "00": [365, 372, 376, 382, 392, 398, 403, 405], "mb": [365, 372, 376, 382, 392, 398, 405], "03": [365, 372, 401], "759": [367, 372], "plot_colinear_do": [367, 372], "font_siz": [368, 397], "spin_label": 368, "stack_y_label": 368, "x_label": [368, 379], "y_label": [368, 379], "731": [368, 372], "plot_dosplot_configur": [368, 372], "943": [369, 372], "plot_noncolinear_dos_q": [369, 372], "284": [370, 372, 379, 382], "plot_noncolinear_dos_vasp": [370, 372], "244": [371, 372], "plot_spin_polarized_do": [371, 372], "961": [372, 381], "examples_01": 372, "bands_dir": [374, 375], "dos_dir": [374, 375], "1650x550": [374, 375], "401": [374, 376], "plot_bandsdosplot": [374, 376], "appear": [375, 379, 385], "ll": [375, 379, 385, 400, 401, 402, 403, 404], "adjust": [375, 379, 385, 386], "overal": 375, "470": [375, 376], "plot_bandsdosplot_configur": [375, 376], "871": 376, "examples_02": 376, "bands_do": 376, "noncolinear": [377, 382, 406, 412], "rashba": [377, 382, 406, 412, 413, 418], "comp": [378, 379, 380, 381], "rot": [378, 379, 380, 381], "trasl": [378, 379, 380, 381], "_____________________________________________________": [378, 379, 380, 381], "225": [378, 379, 380], "add_legend": [378, 379], "contact": [378, 407], "specfic": [378, 380, 384, 386, 387, 388, 389, 390, 391], "104": [378, 382], "plot_fermi2d": [378, 382], "plain_band": [379, 380, 381], "add_axes_label": 379, "no_arrow": [379, 381], "arrow_dens": [379, 380, 381], "spin_project": [379, 380, 381], "plot_fermi2d_configur": [379, 382], "By": [380, 407, 419, 425], "s_z": [380, 412, 413, 418], "arrow_project": 380, "19": [380, 381, 382, 400, 401], "870": [380, 382], "plot_fermi2d_spin_textur": [380, 382], "paper": [381, 384, 407], "had": [381, 407, 413], "bisb": 381, "60ev": 381, "fermei": 381, "90ev": 381, "bisb_monolay": 381, "21": [381, 400, 404, 405], "32": [381, 387, 392, 400, 401], "18": [381, 400], "51": [381, 382, 401], "294": [381, 382], "plot_rashba_spin_split": [381, 382], "38": 382, "552": 382, "examples_03": 382, "isovalue_gif": [383, 392, 406], "alphen": [383, 392, 406], "fequenc": [383, 392, 406], "cross_sect": [383, 392, 406], "de": [384, 407], "frequenc": 384, "theoret": 384, "freuqenc": 384, "taken": [384, 407], "experiment": 384, "copper": 384, "silver": 384, "gold": 384, "haa": 384, "doi": [384, 397, 407, 419], "1098": 384, "rsta": 384, "1962": 384, "0011": 384, "hbar": 384, "cg": 384, "768e": 384, "statcoulomb": 384, "0e": 384, "cm": 384, "0546e": 384, "erg": 384, "au": 384, "ensur": [384, 385, 386, 387, 388, 389, 390, 391, 394, 396, 397, 400, 401, 403, 404, 407], "screen": [384, 385, 386, 387, 388, 389, 390, 391, 394, 396, 397, 400, 401, 403, 404, 425], "off_screen": [384, 385, 386, 387, 388, 389, 390, 391, 394, 396, 397, 400, 401, 403, 404], "actual": [384, 385, 386, 387, 388, 389, 390, 391, 407], "plot_fermi_cross_section_box_widget": 384, "surface_opac": [384, 385], "Near": [384, 385, 386, 387, 388, 389, 390, 391], "3375": [384, 385, 386, 389, 390, 391, 396], "1586": 384, "ang": 384, "1586e": 384, "365e": 384, "f_": 384, "exp": 384, "50e": 384, "1596": 384, "1596e": 384, "68e": 384, "3956": 384, "3956e": 384, "61e": 384, "85e": 384, "712": [384, 392], "plot_de_hass_van_alphen": [384, 392], "plot_fermi_surfac": [385, 389, 390, 391], "surface_cmap": [385, 390], "surface_color": 385, "surface_bands_color": 385, "surface_clim": 385, "brillouin_zone_styl": 385, "brillouin_zone_line_width": 385, "brillouin_zone_color": 385, "brillouin_zone_opac": 385, "texture_cmap": 385, "texture_color": 385, "texture_s": 385, "texture_scal": 385, "texture_opac": 385, "add_ax": 385, "x_axes_label": 385, "y_axes_label": 385, "z_axes_label": 385, "axes_label_color": 385, "axes_line_width": 385, "add_scalar_bar": 385, "scalar_bar_label": 385, "scalar_bar_ital": 385, "scalar_bar_bold": 385, "scalar_bar_title_font_s": 385, "scalar_bar_label_font_s": 385, "scalar_bar_position_x": 385, "scalar_bar_position_i": 385, "scalar_bar_color": 385, "orbit_gif_n_point": 385, "orbit_gif_step": 385, "orbit_mp4_n_point": 385, "orbit_mp4_step": 385, "plotter_offscreen": 385, "plotter_camera_po": 385, "isoslider_titl": 385, "isoslider_styl": 385, "isoslider_color": 385, "cross_section_slice_linewidth": [385, 386], "cross_section_slice_show_area": 385, "685": [385, 392], "plot_fermi3d_configur": [385, 392], "outermost": 386, "line_width": [386, 400, 401, 403, 404], "plot_fermi_cross_sect": 386, "2d_slice": 386, "134": [386, 392], "plot_fermi3d_cross_sect": [386, 392], "throughout": [387, 388, 407], "plot_fermi_isoslid": 387, "204": [387, 392], "plot_fermi3d_isoslid": [387, 392], "exact": [388, 407], "create_isovalue_gif": 388, "33": [388, 392, 400, 401], "309": [388, 392], "plot_fermi3d_isovalue_gif": [388, 392], "921": [389, 392], "plot_fermi3d_plain": [389, 392], "29": [390, 392, 400, 401, 404, 407], "106": [390, 392], "plot_fermi3d_spin": [390, 392], "428": [391, 392], "plot_fermi3d_spin_textur": [391, 392], "examples_04": 392, "kmesh_gener": [393, 398, 406, 418], "kpath_gener": [393, 398, 406], "particularli": [394, 414, 418, 423], "command": [394, 407, 409, 414, 415], "num_grids_x": 394, "num_grids_i": 394, "add_mesh": [394, 396, 400, 401, 403, 404], "show_ax": [394, 397], "show_grid": [394, 397], "609": [394, 398], "plot_2dkmesh_gener": [394, 398], "band_gap": 395, "138": [395, 398], "plot_bandgap": [395, 398], "dir": [396, 417, 422, 424], "pv": [396, 400, 401, 403, 404], "e_fermi": 396, "ibz2fbz": [396, 417], "enectron": 396, "let": [396, 400, 401, 402, 404, 413], "band_0": 396, "atom_0": 396, "orbital_5": 396, "bands_gradi": 396, "08": [396, 405], "scalar_bar_arg": 396, "band_veloc": 396, "band_spe": 396, "show_scalar_bar": [396, 400, 401, 403, 404], "harmonic_average_effective_mass": 396, "915": [396, 398], "plot_eb": [396, 398], "momentum": [397, 419], "enabl": [397, 407, 418, 419, 425], "suffici": 397, "retriev": [397, 413], "slight": 397, "modif": [397, 404, 407], "regard": [397, 400, 401, 407, 418, 420], "seek": 397, "seekpath": [397, 409], "hinuma": 397, "et": [397, 419], "al": [397, 419], "pizzi": 397, "kumagai": 397, "oba": 397, "tanaka": 397, "diagram": 397, "crystallographi": 397, "scienc": [397, 407], "128": 397, "2017": 397, "140": 397, "184": 397, "1016": [397, 407], "commatsci": 397, "2016": 397, "k_path": 397, "k_label": 397, "ey": 397, "unique_label": 397, "unique_kpath": 397, "enumer": [397, 400, 402], "append": [397, 402], "ik": 397, "len": [397, 400], "add_lin": 397, "els": 397, "add_point_label": [397, 400, 401, 403, 404], "point_color": 397, "text_color": 397, "always_vis": [397, 400, 401, 403, 404], "view_yz": 397, "709": [397, 398], "plot_kpath_gener": [397, 398], "06": [398, 405], "371": 398, "examples_05": 398, "04": [398, 402], "cluster": [399, 401, 405, 406], "analyz": [399, 405, 406, 418], "radial": [399, 405, 406], "distribut": [399, 405, 406, 407, 408], "rdf": [399, 405, 406], "ql": 400, "itertool": [400, 401, 402, 403, 404], "def": [400, 401, 403, 404], "create_gif": [400, 401, 403, 404], "unit_cel": [400, 401, 403, 404], "save_fil": [400, 401, 403, 404], "add_titl": [400, 401, 403, 404], "delaunay_3d": [400, 401, 403, 404], "extract_feature_edg": [400, 401, 403, 404], "render_lines_as_tub": [400, 401, 403, 404], "show_point": [400, 401, 403, 404], "generate_orbital_path": [400, 401, 403, 404], "n_point": [400, 401, 403, 404], "open_gif": [400, 401, 403, 404], "orbit_on_path": [400, 401, 403, 404], "write_fram": [400, 401, 403, 404], "viewup": [400, 401, 403, 404], "close": [400, 401, 403, 404, 407, 419], "clusters_map": 400, "i_atom": 400, "clusters_arrai": 400, "26": [400, 401, 404], "28": [400, 404, 407], "34": 400, "atoms_befor": [400, 401, 403, 404], "labels_befor": [400, 401, 403, 404], "zip": [400, 401, 402, 403, 404, 406], "labels_aft": [400, 401, 403, 404], "unit_cell_comb": [400, 401, 403, 404], "repeat": [400, 401, 403, 404, 421], "comb": [400, 401, 403, 404], "unit_cell_befor": [400, 401, 404], "atoms_before_clust": 400, "atoms_after_clust": 400, "831": [400, 405], "plot_clusters_pyposcar": [400, 405], "agnr": [401, 402, 404], "finddefect": 401, "all_defect": 401, "nthe": 401, "write_defect": 401, "inspect": 401, "subtitut": 401, "0d": 401, "agrn": 401, "edg": 401, "tmp_a": [401, 404], "atoms_aft": [401, 403, 404], "unit_cell_aft": [401, 404], "atoms_before_defect_find": 401, "atoms_after_defect_find": 401, "find_forgein_atom": 401, "delimit": 401, "minima": 401, "maxima": 401, "less": 401, "nearest_neighbors_environ": 401, "environ": [401, 402], "abund": 401, "35": 401, "52": [401, 421], "53": 401, "54": [401, 425], "55": 401, "56": 401, "57": 401, "58": 401, "59": 401, "60": [401, 404, 407, 418, 420], "62": 401, "63": 401, "64": [401, 404], "65": [401, 404], "355": [401, 405], "plot_finding_defects_pyposcar": [401, 405], "insight": 402, "probabl": 402, "certain": [402, 407, 412, 413, 418], "anoth": [402, 416, 419], "understand": 402, "gridspec": 402, "my_rdf": 402, "thresholdsp": 402, "neighbor_thresholdsp": 402, "spcurv": 402, "kde_curvesp": 402, "share": [402, 407], "domain": [402, 407], "kde_spac": 402, "cutoff": 402, "inter": 402, "meaaningful": 402, "defen": 402, "databas": 402, "neighborsclass": 402, "latticeutil": [402, 404], "estimatemaxbonddist": 402, "neighbor_threshold": 402, "d_max": 402, "9500000000000002": 402, "6500000000000001": 402, "95": 402, "4772259999999975": 402, "height_ratio": 402, "ax1": 402, "ax2": 402, "ax3": 402, "kde_curv": 402, "set_titl": [402, 413], "cc": 402, "cycl": 402, "next": [402, 407, 419], "flatten": 402, "histogram": 402, "distance_matrix": 402, "patch": 402, "hist": 402, "edgecolor": 402, "alpha": [402, 421, 424], "set_xlabel": 402, "tolist": 402, "plotlabel": 402, "var_cutoff": 402, "leg1": 402, "loc": 402, "data_cutoff": 402, "leg2": 402, "color_label": 402, "add_artist": 402, "tight_layout": 402, "7725483399593904": 402, "8348023074035522": 402, "9434419177103412": 402, "7744469683442248": 402, "3036753236814713": 402, "4123149339882604": 402, "2433199846221439": 402, "0520815280171307": 402, "883086578651014": 402, "7140916292848973": 402, "766": [402, 405], "plot_rdf_cutoff_pyposcar": [402, 405], "boron": 403, "nitrogen": 403, "yb6": 403, "nelement": 403, "nposit": 403, "098": 403, "1989": 403, "8011": 403, "nchang": 403, "new_po": 403, "border": 403, "343": [403, 405], "plot_subsitution_pyposcar": [403, 405], "poscar_util": 404, "9agnr": 404, "shrink": [404, 425], "smaller": [404, 420], "atoms_before_sc": 404, "atoms_after_sc": 404, "3878": 404, "71": 404, "726": 404, "9087": 404, "nnow": 404, "3x1x1": 404, "311": 404, "atoms_before_supercel": 404, "atoms_after_supercel": 404, "nfinal": 404, "change_el": 404, "atoms_before_defect": 404, "atoms_after_defect": 404, "nn": 404, "nn_list": 404, "975": [404, 405], "plot_utils_pyposcar": [404, 405], "45": 405, "270": 405, "examples_06": 405, "examples_python": 406, "examples_jupyt": 406, "open": [407, 410, 411, 419], "head": [407, 408], "scientif": [407, 408], "visibl": [407, 408], "bibtex": 407, "articl": [407, 419], "herath2020107080": 407, "journal": [407, 419], "year": [407, 419], "issn": 407, "0010": 407, "4655": 407, "cpc": 407, "2019": [407, 419], "url": [407, 419], "www": 407, "sciencedirect": 407, "pii": 407, "s0010465519303935": 407, "condens": 407, "matter": 407, "who": 407, "made": 407, "substanti": 407, "concept": 407, "design": 407, "softwar": [407, 419], "draft": 407, "substant": 407, "revis": 407, "global": 407, "effort": 407, "team": 407, "thank": 407, "jan": 407, "janssen": 407, "litong": 407, "jiang": 407, "nichola": 407, "pike": 407, "don": [407, 408], "munoz": 407, "departamento": 407, "isica": 407, "facultad": 407, "ciencia": 407, "universidad": 407, "chile": 407, "santiago": 407, "nanosci": 407, "nanotechnologi": 407, "cedenna": 407, "depart": 407, "astronomi": 407, "west": 407, "virginia": 407, "univers": 407, "morgantown": 407, "wv": 407, "26505": 407, "6315": 407, "usa": 407, "rutger": 407, "piscatawai": 407, "nj": 407, "08854": 407, "physiqu": 407, "eoriqu": 407, "mat": 407, "eriaux": 407, "cesam": 407, "universit": 407, "eg": 407, "4000": 407, "sart": 407, "tilman": 407, "belgium": 407, "gnu": 407, "public": [407, 408, 419], "june": 407, "2007": 407, "copyright": 407, "free": 407, "foundat": 407, "inc": 407, "fsf": 407, "everyon": 407, "permit": 407, "verbatim": 407, "document": [407, 416], "preambl": 407, "copyleft": 407, "awai": 407, "freedom": 407, "guarante": 407, "releas": 407, "speak": 407, "price": 407, "wish": [407, 413], "receiv": 407, "piec": 407, "know": 407, "thing": 407, "protect": 407, "prevent": [407, 423], "deni": 407, "surrend": 407, "respons": 407, "grati": 407, "fee": 407, "recipi": 407, "And": 407, "gpl": 407, "assert": 407, "offer": 407, "give": [407, 418, 421], "legal": 407, "permiss": [407, 423], "warranti": 407, "sake": 407, "mark": 407, "erron": [407, 423], "previou": 407, "devic": 407, "although": 407, "manufactur": 407, "incompat": 407, "systemat": 407, "pattern": 407, "abus": 407, "individu": 407, "unaccept": 407, "prohibit": 407, "those": 407, "aris": [407, 423], "stand": 407, "provis": 407, "futur": [407, 413], "threaten": 407, "constantli": 407, "patent": 407, "restrict": 407, "purpos": [407, 425], "avoid": 407, "danger": 407, "could": [407, 413, 418, 420], "proprietari": 407, "assur": 407, "cannot": 407, "AND": 407, "definit": [407, 419], "law": 407, "semiconductor": 407, "license": 407, "address": 407, "organ": 407, "adapt": 407, "fashion": 407, "earlier": 407, "unmodifi": 407, "propag": 407, "anyth": 407, "directli": 407, "secondarili": 407, "liabl": 407, "infring": 407, "applic": 407, "except": 407, "privat": 407, "countri": 407, "activ": 407, "convei": 407, "parti": 407, "mere": 407, "network": 407, "transfer": 407, "appropri": 407, "notic": 407, "extent": 407, "promin": 407, "tell": 407, "menu": 407, "meet": 407, "criterion": 407, "offici": 407, "recogn": 407, "bodi": 407, "languag": 407, "wide": 407, "among": 407, "serv": 407, "essenti": [407, 417], "kernel": 407, "compil": 407, "produc": [407, 425], "interpret": 407, "tool": 407, "link": [407, 416], "subprogram": 407, "intim": 407, "flow": 407, "regener": 407, "grant": 407, "irrevoc": 407, "met": 407, "affirm": 407, "unlimit": 407, "constitut": 407, "acknowledg": [407, 408], "fair": 407, "long": [407, 413], "otherwis": 407, "sole": 407, "exclus": 407, "facil": 407, "compli": 407, "thu": [407, 412], "behalf": 407, "outsid": 407, "relationship": 407, "circumst": 407, "sublicens": 407, "unnecessari": 407, "anti": 407, "circumvent": 407, "No": [407, 413], "shall": 407, "deem": 407, "technolog": 407, "measur": 407, "fulfil": 407, "oblig": 407, "wipo": 407, "treati": 407, "adopt": 407, "decemb": 407, "1996": 407, "waiv": 407, "forbid": 407, "exercis": 407, "disclaim": 407, "intent": 407, "against": 407, "medium": 407, "conspicu": 407, "publish": [407, 419], "intact": 407, "absenc": 407, "date": [407, 409, 419], "entir": 407, "anyon": 407, "possess": 407, "regardless": 407, "natur": 407, "aggreg": 407, "beyond": [407, 413, 416], "inclus": 407, "caus": 407, "machin": 407, "readabl": 407, "embodi": 407, "accompani": 407, "durabl": 407, "customarili": 407, "interchang": 407, "valid": 407, "least": 407, "three": [407, 412, 413, 414, 419, 420], "spare": 407, "model": 407, "reason": [407, 413], "cost": 407, "server": 407, "altern": 407, "occasion": 407, "noncommerci": 407, "subsect": 407, "6b": 407, "maintain": 407, "sai": 407, "host": 407, "satisfi": 407, "peer": 407, "transmiss": 407, "6d": 407, "portion": 407, "whose": 407, "exclud": 407, "consum": 407, "tangibl": 407, "person": 407, "famili": 407, "household": 407, "sold": 407, "incorpor": [407, 413], "dwell": 407, "doubt": 407, "favor": 407, "coverag": 407, "common": 407, "statu": 407, "commerci": 407, "industri": 407, "unless": 407, "signific": 407, "suffic": 407, "interf": 407, "transact": 407, "perpetu": 407, "character": 407, "neither": 407, "nor": 407, "abil": 407, "rom": 407, "servic": 407, "itself": [407, 408], "advers": 407, "affect": 407, "violat": 407, "rule": 407, "protocol": 407, "across": [407, 421], "publicli": 407, "password": 407, "unpack": 407, "supplement": 407, "though": 407, "govern": 407, "own": 407, "notwithstand": 407, "holder": 407, "liabil": 407, "preserv": 407, "misrepresent": 407, "licensor": 407, "declin": 407, "trademark": 407, "trade": 407, "indemnif": 407, "contractu": 407, "assumpt": 407, "impos": 407, "relicens": 407, "surviv": 407, "statement": 407, "termin": [407, 409], "expressli": 407, "void": 407, "paragraph": 407, "ceas": 407, "reinstat": 407, "provision": 407, "until": 407, "perman": 407, "fail": 407, "notifi": 407, "dai": 407, "cessat": 407, "moreov": 407, "cure": 407, "receipt": 407, "qualifi": 407, "ancillari": 407, "consequ": 407, "likewis": 407, "action": [407, 419], "downstream": 407, "subject": 407, "complianc": 407, "entiti": 407, "asset": 407, "subdivid": 407, "whatev": 407, "predecessor": 407, "royalti": 407, "litig": 407, "claim": 407, "counterclaim": 407, "lawsuit": 407, "alleg": 407, "sell": 407, "sale": 407, "acquir": 407, "hereaft": 407, "manner": [407, 413], "worldwid": 407, "agreement": 407, "commit": 407, "denomin": 407, "coven": 407, "sue": 407, "knowingli": 407, "reli": 407, "arrang": [407, 412, 413], "depriv": 407, "yourself": 407, "benefit": 407, "knowledg": 407, "believ": 407, "pursuant": 407, "procur": 407, "convey": 407, "discriminatori": 407, "scope": 407, "busi": 407, "payment": 407, "primarili": 407, "enter": 407, "march": 407, "constru": 407, "impli": 407, "defens": 407, "court": 407, "contradict": 407, "excus": 407, "simultan": 407, "pertin": 407, "agre": 407, "collect": [407, 419], "whom": 407, "refrain": 407, "affero": 407, "concern": [407, 419], "Such": 407, "spirit": 407, "distinguish": 407, "later": 407, "ever": 407, "THERE": 407, "NO": 407, "THE": 407, "TO": 407, "BY": 407, "IN": 407, "OR": 407, "AS": 407, "OF": 407, "BUT": 407, "merchant": 407, "fit": 407, "risk": 407, "qualiti": 407, "WITH": 407, "prove": 407, "event": 407, "WILL": 407, "BE": 407, "damag": 407, "incident": 407, "consequenti": 407, "inabl": 407, "loss": 407, "BEING": 407, "sustain": 407, "failur": 407, "even": [407, 413], "IF": 407, "SUCH": 407, "advis": 407, "review": 407, "approxim": 407, "absolut": 407, "waiver": 407, "civil": 407, "greatest": 407, "best": 407, "achiev": [407, 423], "redistribut": 407, "safest": 407, "pointer": 407, "brief": 407, "idea": 407, "hope": 407, "mail": 407, "short": 407, "welcom": 407, "hypothet": 407, "Of": 407, "cours": 407, "gui": 407, "employ": 407, "programm": 407, "school": 407, "sign": [407, 423], "subroutin": 407, "lesser": 407, "philosophi": 407, "why": 407, "lgpl": 407, "herein": 407, "subclass": 407, "minim": 407, "isol": 407, "reproduc": 407, "bound": 407, "suppli": [407, 413], "good": [407, 419], "faith": 407, "meaning": [407, 415], "header": 407, "choic": [407, 416, 418], "layout": 407, "accessor": 407, "macro": 407, "inlin": 407, "templat": 407, "ten": 407, "fewer": 407, "engin": 407, "dure": [407, 423], "recombin": 407, "relink": 407, "mechan": 407, "properli": 407, "compat": 407, "4d0": 407, "4d1": 407, "uncombin": 407, "prerequisit": 408, "simplest": 408, "recommend": [408, 412, 413, 423], "anaconda": 408, "conda": 408, "forg": [408, 409], "pip": 408, "via": 408, "pypi": 408, "instruct": [408, 419], "author": [408, 419], "citat": [408, 419], "elsevi": 408, "ase": 409, "romerogroup": 409, "manag": [410, 411, 417, 422, 424], "kohn": [410, 411, 421], "sham": [410, 411, 421], "multitud": [410, 411], "partial": [410, 411], "stll": 411, "convent": [412, 413, 416], "s_x": [412, 413, 418, 420], "s_y": [412, 413, 418], "st": [412, 413, 418], "perpendicular": [412, 413, 418], "k_x": [412, 413, 418], "k_y": [412, 413, 418], "seismic": [412, 413], "ion": [412, 413, 420, 421], "_3": [412, 413, 416], "strongli": [412, 413], "jm": 412, "y_": [412, 413, 421], "site": [412, 413, 421], "logic": [412, 413], "probe": [412, 413], "queri": [412, 413], "portrai": 413, "fine": [413, 418], "usag": [413, 414, 415, 416, 418, 420, 423, 425], "39": 413, "79": 413, "119": 413, "159": 413, "syntax": 413, "meant": 413, "suit": 413, "four": 413, "convers": 413, "199": [413, 422, 425], "239": 413, "279": 413, "319": 413, "scriptbandsplot": 413, "hexagon": [414, 425], "procar_g": 414, "procar_k": 414, "procar_m": 414, "seper": 414, "scriptcat": 414, "acheiv": 415, "elk_dir": 415, "vasp_dir": [415, 416], "srvo_3": 415, "veri": [416, 420], "invlov": 416, "exmpla": 416, "api": 416, "match": 416, "aregumnet": 416, "button": 416, "defalut": 416, "switch": [416, 419], "back": 416, "dos_plain_v": 416, "familiar": 416, "lawngreen": 416, "royalblu": 416, "stach": 416, "variat": 416, "central": 417, "known": [417, 419, 422, 424], "path_to_calcul": [417, 422, 424], "k1": 417, "k2": 417, "k3": 417, "nprincip": 417, "prinicip": 417, "is_non_collinear": 417, "calcuul": 417, "kpoints_cartesian": 417, "kpoints_reduc": 417, "sometim": 417, "infom": 417, "meshgrid": 417, "index_mesh": 417, "kpoints_mesh": 417, "cartesian_mesh": 417, "bands_mesh": 417, "projected_mesh": 417, "project_phase_mesh": 417, "weights_mesh": 417, "bands_gradient_mesh": 417, "bands_hessian_mesh": 417, "ebs_sum": 417, "recov": 417, "broullin": 417, "dresselhau": 418, "topologi": 418, "examin": 418, "lifshitz": 418, "e_": 418, "noarrow": 418, "heat": 418, "fault": 418, "solut": 418, "90": 418, "degre": 418, "mostli": 418, "220": 418, "Be": 418, "scriptfermi2d": 418, "extern": 419, "phonon": 419, "divid": 419, "sub": 419, "monkhorst": 419, "pack": 419, "isym": 419, "focus": 419, "polygon": 419, "smooth": 419, "cube": 419, "999999": 419, "000001": 419, "triangl": 419, "assign": 419, "aspect": 419, "handel": 419, "isosurfcac": 419, "fermisurfcae3d": 419, "eigen": 419, "bottom": 419, "amaz": 419, "pyvista_doc": 419, "trimesh_doc": 419, "trimesh_cit": 419, "dawson": 419, "haggerti": 419, "trimsh": 419, "sullivan2019pyvista": 419, "21105": 419, "joss": 419, "01450": 419, "month": 419, "37": 419, "1450": 419, "bane": 419, "sullivan": 419, "alexand": 419, "kaszynski": 419, "streamlin": 419, "toolkit": 419, "vtk": 419, "linux": 419, "mac": 419, "zoom": 419, "isometr": 419, "reset": 419, "click": 419, "middl": 419, "pan": 419, "scene": 419, "cmd": 419, "ctrl": 419, "mous": 419, "wheel": 419, "ctl": 419, "screenhsot": 419, "backgroundplott": 419, "pick": 419, "decreas": 419, "scriptfermi3d": 419, "subset": 420, "heterostructur": 420, "enorm": 420, "consider": 420, "70": 420, "far": 420, "band50": 420, "column": [420, 421], "filtered_sp": 420, "p_x": 420, "especi": 420, "hybrid": 420, "filtered_kpoint": 420, "filtered_spin": 420, "filter_atom": 420, "atom_typ": 420, "scriptfilt": 420, "orbital_nam": 420, "human_atom": 420, "overview": 421, "guidanc": 421, "conduct": 421, "prep": 421, "commonli": 421, "decompos": 421, "224": 421, "12500000": 421, "65660295": 421, "occ": 421, "052": 421, "000": 421, "nion": 421, "spheric": 421, "sphere": 421, "radiu": 421, "phi_": 421, "mu": 421, "nu": 421, "sigma_": 421, "psi_": 421, "sigma": 421, "pauli": 421, "spinor": 421, "bmatrix": 421, "keyboard": 421, "shortcut": 421, "kapth": 422, "nsegment": 422, "belong": 422, "99": 422, "149": 422, "249": 422, "299": 422, "8660254": 422, "70710678": 422, "4330127": 422, "8291562": 422, "ill": 423, "lack": 423, "5000000": 423, "scriptrepair": 423, "beta": 424, "nspeci": 424, "atomic_numb": 424, "lattice_corn": 424, "cell_convex_hul": 424, "get_space_group_numb": 424, "get_space_group_intern": 424, "get_wyckoff_posit": 424, "get_spglib_symmetry_dataset": 424, "primit": 425, "becom": 425, "quit": 425, "sophist": 425, "fold": 425, "difficult": 425, "scheme": 425, "fat": 425, "proport": 425, "2x2x2": 425, "fname": 425, "shift_efermi": 425, "86": 425, "110": 425, "147": 425, "165": 425, "print_kpt": 425, "show_band": 425, "savetab": 425, "csv": 425, "unfolded_band": 425, "scriptunfold": 425, "unfold_mask": 425, "old": 425, "unfold_result": 425, "unfol": 425}, "objects": {"pyprocar.core": [[7, 0, 1, "", "BrillouinZone"], [10, 0, 1, "", "DensityOfStates"], [19, 0, 1, "", "ElectronicBandStructure"], [65, 0, 1, "", "FermiSurface"], [74, 0, 1, "", "FermiSurface3D"], [82, 0, 1, "", "Isosurface"], [89, 0, 1, "", "KPath"], [98, 0, 1, "", "Structure"], [124, 0, 1, "", "Surface"]], "pyprocar.core.BrillouinZone": [[8, 1, 1, "", "__init__"], [9, 1, 1, "", "wigner_seitz"]], "pyprocar.core.DensityOfStates": [[11, 1, 1, "", "__init__"], [12, 1, 1, "", "coupled_to_uncoupled_basis"], [13, 1, 1, "", "dos_sum"], [14, 1, 1, "", "get_current_basis"], [15, 2, 1, "", "is_non_collinear"], [16, 2, 1, "", "n_dos"], [17, 2, 1, "", "n_energies"], [18, 2, 1, "", "n_spins"]], "pyprocar.core.ElectronicBandStructure": [[20, 1, 1, "", "__init__"], [21, 2, 1, "", "bands_gradient"], [22, 2, 1, "", "bands_gradient_mesh"], [23, 2, 1, "", "bands_hessian"], [24, 2, 1, "", "bands_hessian_mesh"], [25, 2, 1, "", "bands_mesh"], [26, 1, 1, "", "calculate_scalar_gradient"], [27, 1, 1, "", "calculate_scalar_integral"], [28, 1, 1, "", "create_nd_mesh"], [29, 1, 1, "", "create_scaler_mesh"], [30, 1, 1, "", "create_vector_mesh"], [31, 1, 1, "", "ebs_ipr"], [32, 1, 1, "", "ebs_ipr_atom"], [33, 1, 1, "", "ebs_sum"], [34, 2, 1, "", "fermi_speed"], [35, 2, 1, "", "fermi_speed_mesh"], [36, 2, 1, "", "fermi_velocity"], [37, 2, 1, "", "fermi_velocity_mesh"], [38, 2, 1, "", "harmonic_average_effective_mass"], [39, 2, 1, "", "harmonic_average_effective_mass_mesh"], [40, 1, 1, "", "ibz2fbz"], [41, 2, 1, "", "index_mesh"], [42, 1, 1, "", "interpolate_mesh_grid"], [43, 2, 1, "", "is_non_collinear"], [44, 2, 1, "", "kpoints_cartesian"], [45, 2, 1, "", "kpoints_cartesian_mesh"], [46, 2, 1, "", "kpoints_mesh"], [47, 2, 1, "", "kpoints_reduced"], [48, 1, 1, "", "mesh_to_array"], [49, 2, 1, "", "n_kx"], [50, 2, 1, "", "n_ky"], [51, 2, 1, "", "n_kz"], [52, 2, 1, "", "natoms"], [53, 2, 1, "", "nbands"], [54, 2, 1, "", "nkpoints"], [55, 2, 1, "", "norbitals"], [56, 2, 1, "", "nprincipals"], [57, 2, 1, "", "nspins"], [58, 1, 1, "", "plot_kpoints"], [59, 2, 1, "", "projected_mesh"], [60, 2, 1, "", "projected_phase_mesh"], [61, 1, 1, "", "ravel_array"], [62, 1, 1, "", "unfold"], [63, 1, 1, "", "update_weights"], [64, 2, 1, "", "weights_mesh"]], "pyprocar.core.FermiSurface": [[66, 1, 1, "", "__init__"], [67, 1, 1, "", "add_axes_labels"], [68, 1, 1, "", "add_legend"], [69, 1, 1, "", "find_energy"], [70, 1, 1, "", "plot"], [71, 1, 1, "", "savefig"], [72, 1, 1, "", "show"], [73, 1, 1, "", "spin_texture"]], "pyprocar.core.FermiSurface3D": [[75, 1, 1, "", "__init__"], [76, 1, 1, "", "extend_surface"], [77, 1, 1, "", "project_atomic_projections"], [78, 1, 1, "", "project_fermi_speed"], [79, 1, 1, "", "project_fermi_velocity"], [80, 1, 1, "", "project_harmonic_effective_mass"], [81, 1, 1, "", "project_spin_texture_atomic_projections"]], "pyprocar.core.Isosurface": [[83, 1, 1, "", "__init__"], [84, 2, 1, "", "dxyz"], [85, 2, 1, "", "nX"], [86, 2, 1, "", "nY"], [87, 2, 1, "", "nZ"], [88, 2, 1, "", "surface_boundaries"]], "pyprocar.core.KPath": [[90, 1, 1, "", "__init__"], [91, 1, 1, "", "get_kpoints_transformed"], [92, 1, 1, "", "get_optimized_kpoints_transformed"], [93, 2, 1, "", "kdistances"], [94, 2, 1, "", "nsegments"], [95, 2, 1, "", "tick_names"], [96, 2, 1, "", "tick_positions"], [97, 1, 1, "", "write_to_file"]], "pyprocar.core.Structure": [[99, 1, 1, "", "__init__"], [100, 2, 1, "", "a"], [101, 2, 1, "", "alpha"], [102, 2, 1, "", "atomic_numbers"], [103, 2, 1, "", "b"], [104, 2, 1, "", "beta"], [105, 2, 1, "", "c"], [106, 2, 1, "", "cell_convex_hull"], [107, 2, 1, "", "density"], [108, 2, 1, "", "gamma"], [109, 1, 1, "", "get_space_group_international"], [110, 1, 1, "", "get_space_group_number"], [111, 1, 1, "", "get_spglib_symmetry_dataset"], [112, 1, 1, "", "get_wyckoff_positions"], [113, 1, 1, "", "is_point_inside"], [114, 2, 1, "", "lattice_corners"], [115, 2, 1, "", "masses"], [116, 2, 1, "", "natoms"], [117, 2, 1, "", "nspecies"], [118, 1, 1, "", "plot_cell_convex_hull"], [119, 2, 1, "", "reciprocal_lattice"], [120, 2, 1, "", "species"], [121, 1, 1, "", "supercell"], [122, 1, 1, "", "transform"], [123, 2, 1, "", "volume"]], "pyprocar.core.Surface": [[125, 1, 1, "", "__init__"], [126, 2, 1, "", "centers"], [127, 1, 1, "", "export"], [128, 2, 1, "", "faces_array"], [129, 1, 1, "", "set_color_with_cmap"], [130, 1, 1, "", "set_scalars"], [131, 1, 1, "", "set_vectors"]], "pyprocar.io.abinit": [[143, 0, 1, "", "AbinitKpoints"], [145, 0, 1, "", "AbinitProcar"], [147, 0, 1, "", "Output"]], "pyprocar.io.abinit.AbinitKpoints": [[144, 1, 1, "", "__init__"]], "pyprocar.io.abinit.AbinitProcar": [[146, 1, 1, "", "__init__"]], "pyprocar.io.abinit.Output": [[148, 1, 1, "", "__init__"]], "pyprocar.io.bxsf": [[149, 0, 1, "", "BxsfParser"]], "pyprocar.io.bxsf.BxsfParser": [[150, 1, 1, "", "__init__"], [151, 1, 1, "", "parse_bxsf"]], "pyprocar.io.lobster": [[152, 0, 1, "", "LobsterParser"]], "pyprocar.io.lobster.LobsterParser": [[153, 1, 1, "", "__init__"], [154, 2, 1, "", "dos"], [155, 1, 1, "", "dos_parametric"], [156, 2, 1, "", "dos_projected"], [157, 2, 1, "", "dos_to_dict"], [158, 2, 1, "", "dos_total"], [159, 2, 1, "", "final_structure"], [160, 2, 1, "", "initial_structure"], [161, 1, 1, "", "parse_structure"], [162, 2, 1, "", "species"], [163, 2, 1, "", "structure"], [164, 2, 1, "", "structures"]], "pyprocar.io.qe": [[165, 0, 1, "", "QEParser"]], "pyprocar.io.qe.QEParser": [[166, 1, 1, "", "__init__"], [167, 2, 1, "", "final_structure"], [168, 1, 1, "", "getKpointLabels"], [169, 2, 1, "", "initial_structure"], [170, 1, 1, "", "kpoints_cart"], [171, 2, 1, "", "species"], [172, 2, 1, "", "structure"], [173, 2, 1, "", "structures"]], "pyprocar.io.siesta": [[174, 0, 1, "", "SiestaParser"]], "pyprocar.io.siesta.SiestaParser": [[175, 1, 1, "", "__init__"]], "pyprocar.io.vasp": [[176, 0, 1, "", "Kpoints"], [178, 0, 1, "", "Outcar"], [184, 0, 1, "", "Poscar"], [186, 0, 1, "", "Procar"], [192, 0, 1, "", "VaspXML"]], "pyprocar.io.vasp.Kpoints": [[177, 1, 1, "", "__init__"]], "pyprocar.io.vasp.Outcar": [[179, 1, 1, "", "__init__"], [180, 2, 1, "", "efermi"], [178, 3, 1, "", "file_str"], [178, 3, 1, "", "filename"], [181, 1, 1, "", "get_symmetry_operations"], [182, 2, 1, "", "reciprocal_lattice"], [183, 2, 1, "", "rotations"], [178, 3, 1, "", "variables"]], "pyprocar.io.vasp.Poscar": [[185, 1, 1, "", "__init__"]], "pyprocar.io.vasp.Procar": [[187, 1, 1, "", "__init__"], [188, 2, 1, "", "kpoints_cartesian"], [189, 2, 1, "", "kpoints_reduced"], [190, 1, 1, "", "repair"], [191, 1, 1, "", "symmetrize"]], "pyprocar.io.vasp.VaspXML": [[193, 1, 1, "", "__init__"], [194, 2, 1, "", "bands"], [195, 2, 1, "", "bands_projected"], [196, 1, 1, "", "conv"], [197, 2, 1, "", "convergence"], [198, 2, 1, "", "convergence_electronic"], [199, 2, 1, "", "convergence_ionic"], [200, 2, 1, "", "dos"], [201, 2, 1, "", "dos_projected"], [202, 2, 1, "", "dos_to_dict"], [203, 2, 1, "", "dos_total"], [204, 2, 1, "", "energies"], [205, 2, 1, "", "energy"], [206, 2, 1, "", "fermi"], [207, 2, 1, "", "final_structure"], [208, 2, 1, "", "forces"], [209, 1, 1, "", "get_general"], [210, 1, 1, "", "get_params"], [211, 1, 1, "", "get_scstep"], [212, 1, 1, "", "get_set"], [213, 1, 1, "", "get_structure"], [214, 1, 1, "", "get_varray"], [215, 2, 1, "", "incar"], [216, 2, 1, "", "initial_structure"], [217, 2, 1, "", "is_finished"], [218, 2, 1, "", "iteration_data"], [219, 2, 1, "", "kpoints"], [220, 2, 1, "", "kpoints_list"], [221, 2, 1, "", "last_energy"], [222, 1, 1, "", "parse_vasprun"], [223, 2, 1, "", "potcar_info"], [224, 1, 1, "", "read"], [225, 2, 1, "", "species"], [226, 2, 1, "", "structure"], [227, 2, 1, "", "structures"], [228, 1, 1, "", "text_to_bool"], [229, 2, 1, "", "vasp_parameters"]], "pyprocar.plotter": [[237, 0, 1, "", "DOSPlot"], [257, 0, 1, "", "EBSPlot"], [277, 0, 1, "", "ProcarPlot"]], "pyprocar.plotter.DOSPlot": [[238, 1, 1, "", "__init__"], [239, 1, 1, "", "draw_fermi"], [240, 1, 1, "", "grid"], [241, 1, 1, "", "legend"], [242, 1, 1, "", "plot_dos"], [243, 1, 1, "", "plot_parametric"], [244, 1, 1, "", "plot_parametric_line"], [245, 1, 1, "", "plot_stack"], [246, 1, 1, "", "plot_stack_orbitals"], [247, 1, 1, "", "plot_stack_species"], [248, 1, 1, "", "save"], [249, 1, 1, "", "set_xlabel"], [250, 1, 1, "", "set_xlim"], [251, 1, 1, "", "set_xticks"], [252, 1, 1, "", "set_ylabel"], [253, 1, 1, "", "set_ylim"], [254, 1, 1, "", "set_yticks"], [255, 1, 1, "", "show"], [256, 1, 1, "", "update_config"]], "pyprocar.plotter.EBSPlot": [[258, 1, 1, "", "__init__"], [259, 1, 1, "", "draw_fermi"], [260, 1, 1, "", "grid"], [261, 1, 1, "", "legend"], [262, 1, 1, "", "plot_atomic_levels"], [263, 1, 1, "", "plot_bands"], [264, 1, 1, "", "plot_parameteric"], [265, 1, 1, "", "plot_parameteric_overlay"], [266, 1, 1, "", "plot_scatter"], [267, 1, 1, "", "save"], [268, 1, 1, "", "set_title"], [269, 1, 1, "", "set_xlabel"], [270, 1, 1, "", "set_xlim"], [271, 1, 1, "", "set_xticks"], [272, 1, 1, "", "set_ylabel"], [273, 1, 1, "", "set_ylim"], [274, 1, 1, "", "set_yticks"], [275, 1, 1, "", "show"], [276, 1, 1, "", "update_config"]], "pyprocar.plotter.ProcarPlot": [[278, 1, 1, "", "__init__"], [279, 1, 1, "", "atomicPlot"], [280, 1, 1, "", "parametricPlot"], [281, 1, 1, "", "plotBands"], [282, 1, 1, "", "scatterPlot"]], "pyprocar.pyposcar": [[287, 0, 1, "", "Poscar"], [296, 4, 1, "", "poscarDiff"], [297, 0, 1, "", "poscar_modify"], [307, 0, 1, "", "poscar_supercell"]], "pyprocar.pyposcar.Poscar": [[288, 1, 1, "", "__init__"], [289, 1, 1, "", "add"], [290, 1, 1, "", "load_from_data"], [291, 1, 1, "", "parse"], [292, 1, 1, "", "remove"], [293, 1, 1, "", "sort"], [294, 1, 1, "", "write"], [295, 1, 1, "", "xyz"]], "pyprocar.pyposcar.Poscar.self": [[288, 3, 1, "", "verbose"]], "pyprocar.pyposcar.poscar_modify": [[298, 1, 1, "", "__init__"], [299, 1, 1, "", "add"], [300, 1, 1, "", "change_elements"], [301, 1, 1, "", "pos_multiply"], [302, 1, 1, "", "pos_sum"], [303, 1, 1, "", "remove"], [304, 1, 1, "", "scale_lattice"], [305, 1, 1, "", "shift"], [306, 1, 1, "", "write"]], "pyprocar.pyposcar.poscar_supercell": [[308, 1, 1, "", "__init__"], [309, 1, 1, "", "supercell"], [310, 1, 1, "", "write"]], "pyprocar.pyposcar.self": [[288, 3, 1, "", "Ntotal"], [288, 3, 1, "", "cpos"], [288, 3, 1, "", "dpos"], [288, 3, 1, "", "elm"], [288, 3, 1, "", "filename"], [288, 3, 1, "", "flags"], [288, 3, 1, "", "lat"], [288, 3, 1, "", "numberSp"], [288, 3, 1, "", "poscar"], [288, 3, 1, "", "selectFlags"], [288, 3, 1, "", "selective"], [288, 3, 1, "", "typeSp"], [288, 3, 1, "", "volume"]], "pyprocar": [[416, 5, 0, "-", "scriptDosplot"]], "pyprocar.scripts": [[314, 0, 1, "", "FermiHandler"], [322, 4, 1, "", "bandgap"], [323, 4, 1, "", "bandsdosplot"], [324, 4, 1, "", "bandsplot"], [325, 4, 1, "", "bandsplot_2d"], [326, 4, 1, "", "cat"], [327, 4, 1, "", "dosplot"], [328, 4, 1, "", "fermi2D"], [329, 4, 1, "", "fermi3D"], [330, 4, 1, "", "generate2dkmesh"], [331, 4, 1, "", "kpath"], [332, 4, 1, "", "repair"], [413, 5, 0, "-", "scriptBandsplot"], [414, 5, 0, "-", "scriptCat"], [418, 5, 0, "-", "scriptFermi2D"], [419, 5, 0, "-", "scriptFermi3D"], [420, 5, 0, "-", "scriptFilter"], [423, 5, 0, "-", "scriptRepair"], [425, 5, 0, "-", "scriptUnfold"]], "pyprocar.scripts.FermiHandler": [[315, 1, 1, "", "__init__"], [316, 1, 1, "", "create_isovalue_gif"], [317, 1, 1, "", "plot_fermi_cross_section"], [318, 1, 1, "", "plot_fermi_cross_section_box_widget"], [319, 1, 1, "", "plot_fermi_isoslider"], [320, 1, 1, "", "plot_fermi_surface"], [321, 1, 1, "", "print_default_settings"]], "pyprocar.scripts.scriptBandsplot": [[413, 4, 1, "", "bandsplot"]], "pyprocar.scripts.scriptCat": [[414, 4, 1, "", "cat"]], "pyprocar.scripts.scriptFermi2D": [[418, 4, 1, "", "fermi2D"]], "pyprocar.scripts.scriptFermi3D": [[419, 4, 1, "", "fermi3D"]], "pyprocar.scripts.scriptFilter": [[420, 4, 1, "", "filter"]], "pyprocar.scripts.scriptRepair": [[423, 4, 1, "", "repair"]], "pyprocar.scripts.scriptUnfold": [[425, 4, 1, "", "unfold"]]}, "objtypes": {"0": "py:class", "1": "py:method", "2": "py:property", "3": "py:attribute", "4": "py:function", "5": "py:module"}, "objnames": {"0": ["py", "class", "Python class"], "1": ["py", "method", "Python method"], "2": ["py", "property", "Python property"], "3": ["py", "attribute", "Python attribute"], "4": ["py", "function", "Python function"], "5": ["py", "module", "Python module"]}, "titleterms": {"band": [0, 1, 194, 347, 351, 353, 354, 358, 359, 361, 362, 363, 364, 373, 378, 380, 396, 406, 413, 415, 417, 425], "structur": [0, 1, 98, 140, 163, 164, 172, 173, 226, 227, 347, 351, 353, 354, 358, 359, 361, 362, 363, 364, 403, 406, 413, 417, 424], "plot": [0, 1, 2, 3, 4, 6, 70, 355, 356, 357, 358, 360, 361, 362, 363, 364, 367, 368, 369, 370, 371, 373, 374, 375, 378, 379, 380, 381, 385, 386, 387, 388, 389, 390, 391, 394, 397, 406, 413, 418, 425], "option": [0, 1, 2, 3, 4, 6], "spin_color": [0, 2, 4, 6], "color": [0, 2, 3, 6, 380], "cmap": [0, 2, 3, 6], "clim": [0, 2, 3, 6], "fermi_color": [0, 2, 6], "fermi_linestyl": [0, 2, 6], "fermi_linewidth": [0, 2, 6], "grid": [0, 1, 2, 6, 240, 260], "grid_axi": [0, 2, 6], "grid_color": [0, 2, 6], "grid_linestyl": [0, 2, 6], "grid_linewidth": [0, 2, 6], "grid_which": [0, 2, 6], "label": [0, 6], "legend": [0, 2, 6, 241, 261], "linestyl": [0, 2, 3, 6], "linewidth": [0, 2, 3, 6], "marker": [0, 2, 3, 6], "markers": [0, 2, 6], "opac": [0, 2, 6], "plot_color_bar": [0, 2, 3, 6], "savefig": [0, 2, 6, 71], "titl": [0, 2, 6], "weighted_color": [0, 2, 6], "weighted_width": [0, 2, 6], "figure_s": [0, 2, 6], "dpi": [0, 2, 3, 6], "2d": [1, 3, 377, 406, 418], "surface_cmap": [1, 4], "surface_color": [1, 4], "surface_spinpol_color": 1, "surface_bands_color": [1, 4], "surface_opac": [1, 4], "surface_clim": [1, 4], "extended_zone_direct": [1, 4], "supercel": [1, 4, 121, 309, 364, 404], "projection_accuraci": [1, 4], "interpolation_factor": [1, 4], "brillouin_zone_styl": [1, 4], "brillouin_zone_line_width": [1, 4], "brillouin_zone_color": [1, 4], "brillouin_zone_opac": [1, 4], "texture_cmap": [1, 4], "texture_color": [1, 4], "texture_s": [1, 4], "texture_scal": [1, 4], "texture_opac": [1, 4], "add_ax": [1, 4], "energy_lim": 1, "x_axes_label": [1, 4], "y_axes_label": [1, 4], "z_axes_label": [1, 4], "axes_label_color": [1, 4], "axes_line_width": [1, 4], "add_scalar_bar": [1, 4], "scalar_bar_label": [1, 4], "scalar_bar_ital": [1, 4], "scalar_bar_bold": [1, 4], "scalar_bar_title_font_s": [1, 4], "scalar_bar_label_font_s": [1, 4], "scalar_bar_position_x": [1, 4], "scalar_bar_position_i": [1, 4], "scalar_bar_color": [1, 4], "background_color": [1, 4], "orbit_gif_n_point": [1, 4], "orbit_gif_step": [1, 4], "orbit_mp4_n_point": [1, 4], "orbit_mp4_step": [1, 4], "clip_brillouin_zon": 1, "clip_brillouin_zone_factor": 1, "grid_xtitl": 1, "grid_ytitl": 1, "grid_ztitl": 1, "add_fermi_plan": 1, "fermi_plane_opac": 1, "fermi_plane_color": 1, "fermi_plane_s": 1, "show_fermi_plane_text": 1, "fermi_text_posit": 1, "plotter_offscreen": [1, 4], "plotter_camera_po": [1, 4], "isoslider_titl": [1, 4], "isoslider_styl": [1, 4], "isoslider_color": [1, 4], "cross_section_slice_linewidth": [1, 4], "cross_section_slice_show_area": [1, 4], "do": [2, 154, 200, 369, 370, 373, 406], "font": 2, "font_siz": 2, "plot_bar": 2, "plot_tot": 2, "spin_label": 2, "verbos": 2, "stack_y_label": 2, "x_label": [2, 3], "y_label": [2, 3], "fermi": [3, 4, 206, 347, 351, 353, 377, 383, 384, 396, 406, 419], "surfac": [3, 4, 124, 141, 360, 384, 419], "add_axes_label": [3, 67], "add_legend": [3, 68], "no_arrow": 3, "arrow_color": 3, "arrow_dens": 3, "arrow_s": [3, 4], "spin_project": 3, "3d": [4, 383, 406, 419], "configur": [5, 357, 368, 379, 385], "file": [5, 401, 402, 403, 404], "unfold": [6, 62, 364, 425], "pyprocar": [7, 10, 19, 65, 74, 82, 89, 98, 124, 143, 145, 147, 149, 152, 165, 174, 176, 178, 184, 186, 192, 237, 257, 277, 287, 297, 307, 314, 357, 368, 379, 385, 407, 408, 410, 411], "core": [7, 10, 19, 65, 74, 82, 89, 98, 124, 137], "brillouinzon": [7, 132], "__init__": [8, 11, 20, 66, 75, 83, 90, 99, 125, 144, 146, 148, 150, 153, 166, 175, 177, 179, 185, 187, 193, 238, 258, 278, 288, 298, 308, 315], "wigner_seitz": 9, "densityofst": [10, 133], "coupled_to_uncoupled_basi": 12, "dos_sum": 13, "get_current_basi": 14, "is_non_collinear": [15, 43], "n_do": 16, "n_energi": 17, "n_spin": 18, "electronicbandstructur": [19, 134, 417], "bands_gradi": 21, "bands_gradient_mesh": 22, "bands_hessian": 23, "bands_hessian_mesh": 24, "bands_mesh": 25, "calculate_scalar_gradi": 26, "calculate_scalar_integr": 27, "create_nd_mesh": 28, "create_scaler_mesh": 29, "create_vector_mesh": 30, "ebs_ipr": 31, "ebs_ipr_atom": 32, "ebs_sum": 33, "fermi_spe": 34, "fermi_speed_mesh": 35, "fermi_veloc": 36, "fermi_velocity_mesh": 37, "harmonic_average_effective_mass": 38, "harmonic_average_effective_mass_mesh": 39, "ibz2fbz": 40, "index_mesh": 41, "interpolate_mesh_grid": 42, "kpoints_cartesian": [44, 188], "kpoints_cartesian_mesh": 45, "kpoints_mesh": 46, "kpoints_reduc": [47, 189], "mesh_to_arrai": 48, "n_kx": 49, "n_ky": 50, "n_kz": 51, "natom": [52, 116], "nband": 53, "nkpoint": 54, "norbit": 55, "nprincip": 56, "nspin": 57, "plot_kpoint": 58, "projected_mesh": 59, "projected_phase_mesh": 60, "ravel_arrai": 61, "update_weight": 63, "weights_mesh": 64, "fermisurfac": [65, 135], "find_energi": 69, "show": [72, 255, 275, 384], "spin_textur": [73, 391], "fermisurface3d": [74, 136], "extend_surfac": 76, "project_atomic_project": 77, "project_fermi_spe": 78, "project_fermi_veloc": 79, "project_harmonic_effective_mass": 80, "project_spin_texture_atomic_project": 81, "isosurfac": [82, 138], "dxyz": 84, "nx": 85, "ny": 86, "nz": 87, "surface_boundari": 88, "kpath": [89, 139, 331, 344, 422], "get_kpoints_transform": 91, "get_optimized_kpoints_transform": 92, "kdistanc": 93, "nsegment": 94, "tick_nam": 95, "tick_posit": 96, "write_to_fil": 97, "alpha": 101, "atomic_numb": 102, "b": 103, "beta": 104, "c": 105, "cell_convex_hul": 106, "densiti": [107, 351, 353, 366, 367, 371, 406, 416], "gamma": 108, "get_space_group_intern": 109, "get_space_group_numb": 110, "get_spglib_symmetry_dataset": 111, "get_wyckoff_posit": 112, "is_point_insid": 113, "lattice_corn": 114, "mass": [115, 396], "nspeci": 117, "plot_cell_convex_hul": 118, "reciprocal_lattic": [119, 182], "speci": [120, 162, 171, 225], "transform": 122, "volum": 123, "center": 126, "export": [127, 413, 418, 425], "faces_arrai": 128, "set_color_with_cmap": 129, "set_scalar": 130, "set_vector": 131, "api": [137, 142, 232, 285, 311, 343], "refer": 142, "io": [143, 145, 147, 149, 152, 165, 174, 176, 178, 184, 186, 192, 232], "abinit": [143, 145, 147, 346], "abinitkpoint": 143, "abinitprocar": 145, "output": 147, "bxsf": 149, "bxsfparser": [149, 231], "parse_bxsf": 151, "lobster": [152, 350], "lobsterpars": [152, 233], "dos_parametr": 155, "dos_project": [156, 201], "dos_to_dict": [157, 202], "dos_tot": [158, 203], "final_structur": [159, 167, 207], "initial_structur": [160, 169, 216], "parse_structur": 161, "qe": 165, "qepars": [165, 234], "getkpointlabel": 168, "kpoints_cart": 170, "siesta": [174, 352], "siestapars": [174, 235], "vasp": [176, 178, 184, 186, 192, 353, 362, 370], "kpoint": [176, 219, 418], "outcar": 178, "efermi": 180, "get_symmetry_oper": 181, "rotat": [183, 418], "poscar": [184, 287, 312, 400, 401, 402, 403, 404], "procar": 186, "repair": [190, 332, 423], "symmetr": 191, "vaspxml": 192, "bands_project": 195, "conv": 196, "converg": 197, "convergence_electron": 198, "convergence_ion": 199, "energi": [204, 205, 381], "forc": 208, "get_gener": 209, "get_param": 210, "get_scstep": 211, "get_set": 212, "get_structur": 213, "get_varrai": 214, "incar": 215, "is_finish": 217, "iteration_data": 218, "kpoints_list": 220, "last_energi": 221, "parse_vasprun": 222, "potcar_info": 223, "read": [224, 403], "text_to_bool": 228, "vasp_paramet": 229, "abinitpars": 230, "vasppars": 236, "plotter": [237, 257, 277, 285], "dosplot": [237, 284, 327, 338], "draw_fermi": [239, 259], "plot_do": 242, "plot_parametr": 243, "plot_parametric_lin": 244, "plot_stack": 245, "plot_stack_orbit": 246, "plot_stack_speci": 247, "save": [248, 267, 386], "set_xlabel": [249, 269], "set_xlim": [250, 270], "set_xtick": [251, 271], "set_ylabel": [252, 272], "set_ylim": [253, 273], "set_ytick": [254, 274], "update_config": [256, 276], "ebsplot": [257, 283], "plot_atomic_level": 262, "plot_band": 263, "plot_parameter": 264, "plot_parameteric_overlai": 265, "plot_scatt": 266, "set_titl": 268, "procarplot": [277, 286], "atomicplot": 279, "parametricplot": 280, "plotband": 281, "scatterplot": 282, "pyposcar": [287, 297, 307, 311, 399, 406], "add": [289, 299], "load_from_data": 290, "pars": [291, 400, 402, 403], "remov": [292, 303], "sort": 293, "write": [294, 306, 310], "xyz": 295, "poscardiff": 296, "poscar_modifi": 297, "change_el": 300, "pos_multipli": 301, "pos_sum": 302, "scale_lattic": 304, "shift": 305, "poscar_supercel": 307, "poscarutil": 313, "script": [314, 343], "fermihandl": [314, 341], "create_isovalue_gif": 316, "plot_fermi_cross_sect": 317, "plot_fermi_cross_section_box_widget": 318, "plot_fermi_isoslid": 319, "plot_fermi_surfac": 320, "print_default_set": 321, "bandgap": [322, 333, 395, 396], "bandsdosplot": [323, 334, 374, 375], "bandsplot": [324, 335], "bandsplot_2d": [325, 336], "cat": [326, 337], "fermi2d": [328, 339, 378, 380], "fermi3d": [329, 340, 386, 387, 388, 389, 390, 391], "generate2dkmesh": [330, 342], "reapir": 345, "perper": [346, 348, 350, 352], "dftb": 347, "prepar": [347, 351, 353, 355, 356, 357, 360, 368, 375, 379, 385], "calcul": [347, 351, 353, 414], "ssc": 347, "non": [347, 361, 362, 369, 370], "scc": 347, "ad": 347, "name": [347, 358], "k": [347, 351, 353, 397, 413, 420, 422], "point": [347, 351, 353, 413, 420], "elk": 348, "dft": 349, "prep": 349, "quantum": [351, 361, 369], "espresso": [351, 361, 369], "state": [351, 353, 360, 366, 367, 371, 406, 416], "format": [351, 353], "magnet": [351, 353], "atom": [355, 403, 412, 413, 420], "level": 355, "set": [355, 356, 360], "up": [355, 356, 360], "environ": [355, 356, 360], "mode": [355, 358, 361, 362, 363, 367, 369, 370, 371, 374, 378, 387, 388, 389, 390, 391, 416], "autoband": 356, "exampl": [356, 394, 395, 396, 397, 406], "plain": [358, 361, 362, 363, 367, 371, 374, 378, 387, 388, 389, 390, 413, 416], "parametr": [358, 361, 362, 363, 367, 369, 370, 371, 378, 389, 390, 416], "parametric_linemod": 358, "scatter": [358, 363], "overlay_speci": 358, "overlay_orbti": 358, "overlai": [358, 367], "orbit": [358, 412, 413, 420], "compar": [359, 415], "invers": 360, "particip": 360, "ratio": 360, "topolog": 360, "protect": 360, "bi_2se_3": 360, "nv": 360, "defect": [360, 401, 404], "diamond": 360, "colinear": [361, 362, 369, 370], "spin": [363, 371, 380, 381, 390, 391, 412, 413, 418, 420], "polar": [363, 371, 390], "primit": 364, "comput": [365, 372, 376, 382, 392, 398, 402, 405], "time": [365, 372, 376, 382, 392, 398, 405], "parametric_lin": [367, 371, 416], "stack_speci": [367, 371, 416], "stack_orbti": [367, 371], "stack": [371, 416], "plain_band": 378, "select": [378, 380, 420], "indic": [378, 380, 411], "noncolinear": 380, "textur": [380, 391, 418], "project": [380, 381, 396, 412, 413], "singl": 380, "rashba": 381, "split": 381, "0": [381, 384], "60": 381, "sx": 381, "arrow": 381, "sy": 381, "sz": 381, "90": 381, "how": 384, "get": [384, 408], "van": 384, "alphen": 384, "fequenc": 384, "from": [384, 413], "maxim": 384, "cross": [384, 386], "section": [384, 386], "area": 384, "along": 384, "1": [384, 412, 413, 416], "minim": 384, "extrem": 384, "cross_sect": 386, "slice": 386, "isoslid": 387, "isovalue_gif": 388, "other": [393, 396, 406], "kmesh_gener": 394, "kmesh": 394, "find": [395, 396, 401], "properti": 396, "gradient": 396, "veloc": 396, "effect": 396, "kpath_gener": 397, "path": [397, 413, 422], "visual": [400, 401, 402, 403, 404], "cluster": 400, "bi2se3": 400, "slab": 400, "util": [400, 401, 404], "function": [400, 401, 402, 404], "creat": [400, 401, 403, 404], "gif": [400, 401, 403, 404], "identifi": 400, "analyz": 402, "radial": 402, "distribut": 402, "rdf": 402, "kde": 402, "curv": 402, "result": 402, "substitut": 403, "modifi": 404, "scale": 404, "vacuum": 404, "space": 404, "lattic": 404, "introduc": 404, "author": 407, "citat": 407, "cite": [407, 408], "contributor": 407, "develop": 407, "licens": 407, "start": 408, "instal": [408, 409], "paper": 408, "support": 408, "pip": 409, "conda": 409, "clone": 409, "through": 409, "github": 409, "after": 409, "why": 410, "tabl": 411, "2": [412, 413, 416], "3": [412, 413, 416], "4": [413, 416], "matplotlib": [413, 418, 425], "pyplot": [413, 418, 425], "object": [413, 418, 425], "convert": 413, "reduc": 413, "cartesian": 413, "coordin": 413, "discontinu": 413, "concaten": 414, "multipl": 414, "5": 416, "6": 416, "stack_orbit": 416, "access": [417, 422, 424], "electron": 417, "translat": 418, "mesh": 418, "keyboard": 419, "shortcut": 419, "filter": 420, "data": 420, "To": 420, "user": 421, "guid": 421, "further": 421, "detail": 421, "inform": [422, 424]}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.viewcode": 1, "sphinx": 58}, "alltitles": {"band structure plotting Options": [[0, "band-structure-plotting-options"]], "spin_colors": [[0, "spin-colors"], [2, "spin-colors"], [4, "spin-colors"], [6, "spin-colors"]], "color": [[0, "color"], [3, "color"], [6, "color"]], "cmap": [[0, "cmap"], [2, "cmap"], [3, "cmap"], [6, "cmap"]], "clim": [[0, "clim"], [2, "clim"], [3, "clim"], [6, "clim"]], "fermi_color": [[0, "fermi-color"], [2, "fermi-color"], [6, "fermi-color"]], "fermi_linestyle": [[0, "fermi-linestyle"], [2, "fermi-linestyle"], [6, "fermi-linestyle"]], "fermi_linewidth": [[0, "fermi-linewidth"], [2, "fermi-linewidth"], [6, "fermi-linewidth"]], "grid": [[0, "grid"], [1, "grid"], [2, "grid"], [6, "grid"], [240, "grid"], [260, "grid"]], "grid_axis": [[0, "grid-axis"], [2, "grid-axis"], [6, "grid-axis"]], "grid_color": [[0, "grid-color"], [2, "grid-color"], [6, "grid-color"]], "grid_linestyle": [[0, "grid-linestyle"], [2, "grid-linestyle"], [6, "grid-linestyle"]], "grid_linewidth": [[0, "grid-linewidth"], [2, "grid-linewidth"], [6, "grid-linewidth"]], "grid_which": [[0, "grid-which"], [2, "grid-which"], [6, "grid-which"]], "label": [[0, "label"], [6, "label"]], "legend": [[0, "legend"], [2, "legend"], [6, "legend"], [241, "legend"], [261, "legend"]], "linestyle": [[0, "linestyle"], [2, "linestyle"], [3, "linestyle"], [6, "linestyle"]], "linewidth": [[0, "linewidth"], [2, "linewidth"], [3, "linewidth"], [6, "linewidth"]], "marker": [[0, "marker"], [2, "marker"], [3, "marker"], [6, "marker"]], "markersize": [[0, "markersize"], [2, "markersize"], [6, "markersize"]], "opacity": [[0, "opacity"], [2, "opacity"], [6, "opacity"]], "plot_color_bar": [[0, "plot-color-bar"], [2, "plot-color-bar"], [3, "plot-color-bar"], [6, "plot-color-bar"]], "savefig": [[0, "savefig"], [2, "savefig"], [6, "savefig"], [71, "savefig"]], "title": [[0, "title"], [2, "title"], [6, "title"]], "weighted_color": [[0, "weighted-color"], [2, "weighted-color"], [6, "weighted-color"]], "weighted_width": [[0, "weighted-width"], [2, "weighted-width"], [6, "weighted-width"]], "figure_size": [[0, "figure-size"], [2, "figure-size"], [6, "figure-size"]], "dpi": [[0, "dpi"], [2, "dpi"], [3, "dpi"], [6, "dpi"]], "band structure 2d plotting Options": [[1, "band-structure-2d-plotting-options"]], "surface_cmap": [[1, "surface-cmap"], [4, "surface-cmap"]], "surface_color": [[1, "surface-color"], [4, "surface-color"]], "surface_spinpol_colors": [[1, "surface-spinpol-colors"]], "surface_bands_colors": [[1, "surface-bands-colors"], [4, "surface-bands-colors"]], "surface_opacity": [[1, "surface-opacity"], [4, "surface-opacity"]], "surface_clim": [[1, "surface-clim"], [4, "surface-clim"]], "extended_zone_directions": [[1, "extended-zone-directions"], [4, "extended-zone-directions"]], "supercell": [[1, "supercell"], [4, "supercell"], [121, "supercell"], [309, "supercell"]], "projection_accuracy": [[1, "projection-accuracy"], [4, "projection-accuracy"]], "interpolation_factor": [[1, "interpolation-factor"], [4, "interpolation-factor"]], "brillouin_zone_style": [[1, "brillouin-zone-style"], [4, "brillouin-zone-style"]], "brillouin_zone_line_width": [[1, "brillouin-zone-line-width"], [4, "brillouin-zone-line-width"]], "brillouin_zone_color": [[1, "brillouin-zone-color"], [4, "brillouin-zone-color"]], "brillouin_zone_opacity": [[1, "brillouin-zone-opacity"], [4, "brillouin-zone-opacity"]], "texture_cmap": [[1, "texture-cmap"], [4, "texture-cmap"]], "texture_color": [[1, "texture-color"], [4, "texture-color"]], "texture_size": [[1, "texture-size"], [4, "texture-size"]], "texture_scale": [[1, "texture-scale"], [4, "texture-scale"]], "texture_opacity": [[1, "texture-opacity"], [4, "texture-opacity"]], "add_axes": [[1, "add-axes"], [4, "add-axes"]], "energy_lim": [[1, "energy-lim"]], "x_axes_label": [[1, "x-axes-label"], [4, "x-axes-label"]], "y_axes_label": [[1, "y-axes-label"], [4, "y-axes-label"]], "z_axes_label": [[1, "z-axes-label"], [4, "z-axes-label"]], "axes_label_color": [[1, "axes-label-color"], [4, "axes-label-color"]], "axes_line_width": [[1, "axes-line-width"], [4, "axes-line-width"]], "add_scalar_bar": [[1, "add-scalar-bar"], [4, "add-scalar-bar"]], "scalar_bar_labels": [[1, "scalar-bar-labels"], [4, "scalar-bar-labels"]], "scalar_bar_italic": [[1, "scalar-bar-italic"], [4, "scalar-bar-italic"]], "scalar_bar_bold": [[1, "scalar-bar-bold"], [4, "scalar-bar-bold"]], "scalar_bar_title_font_size": [[1, "scalar-bar-title-font-size"], [4, "scalar-bar-title-font-size"]], "scalar_bar_label_font_size": [[1, "scalar-bar-label-font-size"], [4, "scalar-bar-label-font-size"]], "scalar_bar_position_x": [[1, "scalar-bar-position-x"], [4, "scalar-bar-position-x"]], "scalar_bar_position_y": [[1, "scalar-bar-position-y"], [4, "scalar-bar-position-y"]], "scalar_bar_color": [[1, "scalar-bar-color"], [4, "scalar-bar-color"]], "background_color": [[1, "background-color"], [4, "background-color"]], "orbit_gif_n_points": [[1, "orbit-gif-n-points"], [4, "orbit-gif-n-points"]], "orbit_gif_step": [[1, "orbit-gif-step"], [4, "orbit-gif-step"]], "orbit_mp4_n_points": [[1, "orbit-mp4-n-points"], [4, "orbit-mp4-n-points"]], "orbit_mp4_step": [[1, "orbit-mp4-step"], [4, "orbit-mp4-step"]], "clip_brillouin_zone": [[1, "clip-brillouin-zone"]], "clip_brillouin_zone_factor": [[1, "clip-brillouin-zone-factor"]], "grid_xtitle": [[1, "grid-xtitle"]], "grid_ytitle": [[1, "grid-ytitle"]], "grid_ztitle": [[1, "grid-ztitle"]], "add_fermi_plane": [[1, "add-fermi-plane"]], "fermi_plane_opacity": [[1, "fermi-plane-opacity"]], "fermi_plane_color": [[1, "fermi-plane-color"]], "fermi_plane_size": [[1, "fermi-plane-size"]], "show_fermi_plane_text": [[1, "show-fermi-plane-text"]], "fermi_text_position": [[1, "fermi-text-position"]], "plotter_offscreen": [[1, "plotter-offscreen"], [4, "plotter-offscreen"]], "plotter_camera_pos": [[1, "plotter-camera-pos"], [4, "plotter-camera-pos"]], "isoslider_title": [[1, "isoslider-title"], [4, "isoslider-title"]], "isoslider_style": [[1, "isoslider-style"], [4, "isoslider-style"]], "isoslider_color": [[1, "isoslider-color"], [4, "isoslider-color"]], "cross_section_slice_linewidth": [[1, "cross-section-slice-linewidth"], [4, "cross-section-slice-linewidth"]], "cross_section_slice_show_area": [[1, "cross-section-slice-show-area"], [4, "cross-section-slice-show-area"]], "dos plotting Options": [[2, "dos-plotting-options"]], "colors": [[2, "colors"]], "font": [[2, "font"]], "font_size": [[2, "font-size"]], "plot_bar": [[2, "plot-bar"]], "plot_total": [[2, "plot-total"]], "spin_labels": [[2, "spin-labels"]], "verbose": [[2, "verbose"]], "stack_y_label": [[2, "stack-y-label"]], "x_label": [[2, "x-label"], [3, "x-label"]], "y_label": [[2, "y-label"], [3, "y-label"]], "fermi surface 2d plotting Options": [[3, "fermi-surface-2d-plotting-options"]], "add_axes_labels": [[3, "add-axes-labels"], [67, "add-axes-labels"]], "add_legend": [[3, "add-legend"], [68, "add-legend"]], "no_arrow": [[3, "no-arrow"]], "arrow_color": [[3, "arrow-color"]], "arrow_density": [[3, "arrow-density"]], "arrow_size": [[3, "arrow-size"], [4, "arrow-size"]], "spin_projection": [[3, "spin-projection"]], "fermi surface 3d plotting Options": [[4, "fermi-surface-3d-plotting-options"]], "Configuration Files": [[5, "configuration-files"]], "unfold plotting Options": [[6, "unfold-plotting-options"]], "pyprocar.core.BrillouinZone": [[7, "pyprocar-core-brillouinzone"]], "__init__": [[8, "init"], [11, "init"], [20, "init"], [66, "init"], [75, "init"], [83, "init"], [90, "init"], [99, "init"], [125, "init"], [144, "init"], [146, "init"], [148, "init"], [150, "init"], [153, "init"], [166, "init"], [175, "init"], [177, "init"], [179, "init"], [185, "init"], [187, "init"], [193, "init"], [238, "init"], [258, "init"], [278, "init"], [288, "init"], [298, "init"], [308, "init"], [315, "init"]], "wigner_seitz": [[9, "wigner-seitz"]], "pyprocar.core.DensityOfStates": [[10, "pyprocar-core-densityofstates"]], "coupled_to_uncoupled_basis": [[12, "coupled-to-uncoupled-basis"]], "dos_sum": [[13, "dos-sum"]], "get_current_basis": [[14, "get-current-basis"]], "is_non_collinear": [[15, "is-non-collinear"], [43, "is-non-collinear"]], "n_dos": [[16, "n-dos"]], "n_energies": [[17, "n-energies"]], "n_spins": [[18, "n-spins"]], "pyprocar.core.ElectronicBandStructure": [[19, "pyprocar-core-electronicbandstructure"]], "bands_gradient": [[21, "bands-gradient"]], "bands_gradient_mesh": [[22, "bands-gradient-mesh"]], "bands_hessian": [[23, "bands-hessian"]], "bands_hessian_mesh": [[24, "bands-hessian-mesh"]], "bands_mesh": [[25, "bands-mesh"]], "calculate_scalar_gradient": [[26, "calculate-scalar-gradient"]], "calculate_scalar_integral": [[27, "calculate-scalar-integral"]], "create_nd_mesh": [[28, "create-nd-mesh"]], "create_scaler_mesh": [[29, "create-scaler-mesh"]], "create_vector_mesh": [[30, "create-vector-mesh"]], "ebs_ipr": [[31, "ebs-ipr"]], "ebs_ipr_atom": [[32, "ebs-ipr-atom"]], "ebs_sum": [[33, "ebs-sum"]], "fermi_speed": [[34, "fermi-speed"]], "fermi_speed_mesh": [[35, "fermi-speed-mesh"]], "fermi_velocity": [[36, "fermi-velocity"]], "fermi_velocity_mesh": [[37, "fermi-velocity-mesh"]], "harmonic_average_effective_mass": [[38, "harmonic-average-effective-mass"]], "harmonic_average_effective_mass_mesh": [[39, "harmonic-average-effective-mass-mesh"]], "ibz2fbz": [[40, "ibz2fbz"]], "index_mesh": [[41, "index-mesh"]], "interpolate_mesh_grid": [[42, "interpolate-mesh-grid"]], "kpoints_cartesian": [[44, "kpoints-cartesian"], [188, "kpoints-cartesian"]], "kpoints_cartesian_mesh": [[45, "kpoints-cartesian-mesh"]], "kpoints_mesh": [[46, "kpoints-mesh"]], "kpoints_reduced": [[47, "kpoints-reduced"], [189, "kpoints-reduced"]], "mesh_to_array": [[48, "mesh-to-array"]], "n_kx": [[49, "n-kx"]], "n_ky": [[50, "n-ky"]], "n_kz": [[51, "n-kz"]], "natoms": [[52, "natoms"], [116, "natoms"]], "nbands": [[53, "nbands"]], "nkpoints": [[54, "nkpoints"]], "norbitals": [[55, "norbitals"]], "nprincipals": [[56, "nprincipals"]], "nspins": [[57, "nspins"]], "plot_kpoints": [[58, "plot-kpoints"]], "projected_mesh": [[59, "projected-mesh"]], "projected_phase_mesh": [[60, "projected-phase-mesh"]], "ravel_array": [[61, "ravel-array"]], "unfold": [[62, "unfold"]], "update_weights": [[63, "update-weights"]], "weights_mesh": [[64, "weights-mesh"]], "pyprocar.core.FermiSurface": [[65, "pyprocar-core-fermisurface"]], "find_energy": [[69, "find-energy"]], "plot": [[70, "plot"]], "show": [[72, "show"], [255, "show"], [275, "show"]], "spin_texture": [[73, "spin-texture"]], "pyprocar.core.FermiSurface3D": [[74, "pyprocar-core-fermisurface3d"]], "extend_surface": [[76, "extend-surface"]], "project_atomic_projections": [[77, "project-atomic-projections"]], "project_fermi_speed": [[78, "project-fermi-speed"]], "project_fermi_velocity": [[79, "project-fermi-velocity"]], "project_harmonic_effective_mass": [[80, "project-harmonic-effective-mass"]], "project_spin_texture_atomic_projections": [[81, "project-spin-texture-atomic-projections"]], "pyprocar.core.Isosurface": [[82, "pyprocar-core-isosurface"]], "dxyz": [[84, "dxyz"]], "nX": [[85, "nx"]], "nY": [[86, "ny"]], "nZ": [[87, "nz"]], "surface_boundaries": [[88, "surface-boundaries"]], "pyprocar.core.KPath": [[89, "pyprocar-core-kpath"]], "get_kpoints_transformed": [[91, "get-kpoints-transformed"]], "get_optimized_kpoints_transformed": [[92, "get-optimized-kpoints-transformed"]], "kdistances": [[93, "kdistances"]], "nsegments": [[94, "nsegments"]], "tick_names": [[95, "tick-names"]], "tick_positions": [[96, "tick-positions"]], "write_to_file": [[97, "write-to-file"]], "pyprocar.core.Structure": [[98, "pyprocar-core-structure"]], "a": [[100, "a"]], "alpha": [[101, "alpha"]], "atomic_numbers": [[102, "atomic-numbers"]], "b": [[103, "b"]], "beta": [[104, "beta"]], "c": [[105, "c"]], "cell_convex_hull": [[106, "cell-convex-hull"]], "density": [[107, "density"]], "gamma": [[108, "gamma"]], "get_space_group_international": [[109, "get-space-group-international"]], "get_space_group_number": [[110, "get-space-group-number"]], "get_spglib_symmetry_dataset": [[111, "get-spglib-symmetry-dataset"]], "get_wyckoff_positions": [[112, "get-wyckoff-positions"]], "is_point_inside": [[113, "is-point-inside"]], "lattice_corners": [[114, "lattice-corners"]], "masses": [[115, "masses"]], "nspecies": [[117, "nspecies"]], "plot_cell_convex_hull": [[118, "plot-cell-convex-hull"]], "reciprocal_lattice": [[119, "reciprocal-lattice"], [182, "reciprocal-lattice"]], "species": [[120, "species"], [162, "species"], [171, "species"], [225, "species"]], "transform": [[122, "transform"]], "volume": [[123, "volume"]], "pyprocar.core.Surface": [[124, "pyprocar-core-surface"]], "centers": [[126, "centers"]], "export": [[127, "export"]], "faces_array": [[128, "faces-array"]], "set_color_with_cmap": [[129, "set-color-with-cmap"]], "set_scalars": [[130, "set-scalars"]], "set_vectors": [[131, "set-vectors"]], "BrillouinZone": [[132, "brillouinzone"]], "DensityOfStates": [[133, "densityofstates"]], "ElectronicBandStructure": [[134, "electronicbandstructure"], [417, "electronicbandstructure"]], "FermiSurface": [[135, "fermisurface"]], "FermiSurface3D": [[136, "fermisurface3d"]], "Core API": [[137, "core-api"]], "Isosurface": [[138, "isosurface"]], "KPath": [[139, "kpath"]], "Structure": [[140, "structure"], [424, "structure"]], "Surface": [[141, "surface"]], "API Reference": [[142, "api-reference"]], "pyprocar.io.abinit.AbinitKpoints": [[143, "pyprocar-io-abinit-abinitkpoints"]], "pyprocar.io.abinit.AbinitProcar": [[145, "pyprocar-io-abinit-abinitprocar"]], "pyprocar.io.abinit.Output": [[147, "pyprocar-io-abinit-output"]], "pyprocar.io.bxsf.BxsfParser": [[149, "pyprocar-io-bxsf-bxsfparser"]], "parse_bxsf": [[151, "parse-bxsf"]], "pyprocar.io.lobster.LobsterParser": [[152, "pyprocar-io-lobster-lobsterparser"]], "dos": [[154, "dos"], [200, "dos"]], "dos_parametric": [[155, "dos-parametric"]], "dos_projected": [[156, "dos-projected"], [201, "dos-projected"]], "dos_to_dict": [[157, "dos-to-dict"], [202, "dos-to-dict"]], "dos_total": [[158, "dos-total"], [203, "dos-total"]], "final_structure": [[159, "final-structure"], [167, "final-structure"], [207, "final-structure"]], "initial_structure": [[160, "initial-structure"], [169, "initial-structure"], [216, "initial-structure"]], "parse_structure": [[161, "parse-structure"]], "structure": [[163, "structure"], [172, "structure"], [226, "structure"]], "structures": [[164, "structures"], [173, "structures"], [227, "structures"]], "pyprocar.io.qe.QEParser": [[165, "pyprocar-io-qe-qeparser"]], "getKpointLabels": [[168, "getkpointlabels"]], "kpoints_cart": [[170, "kpoints-cart"]], "pyprocar.io.siesta.SiestaParser": [[174, "pyprocar-io-siesta-siestaparser"]], "pyprocar.io.vasp.Kpoints": [[176, "pyprocar-io-vasp-kpoints"]], "pyprocar.io.vasp.Outcar": [[178, "pyprocar-io-vasp-outcar"]], "efermi": [[180, "efermi"]], "get_symmetry_operations": [[181, "get-symmetry-operations"]], "rotations": [[183, "rotations"]], "pyprocar.io.vasp.Poscar": [[184, "pyprocar-io-vasp-poscar"]], "pyprocar.io.vasp.Procar": [[186, "pyprocar-io-vasp-procar"]], "repair": [[190, "repair"], [332, "repair"]], "symmetrize": [[191, "symmetrize"]], "pyprocar.io.vasp.VaspXML": [[192, "pyprocar-io-vasp-vaspxml"]], "bands": [[194, "bands"]], "bands_projected": [[195, "bands-projected"]], "conv": [[196, "conv"]], "convergence": [[197, "convergence"]], "convergence_electronic": [[198, "convergence-electronic"]], "convergence_ionic": [[199, "convergence-ionic"]], "energies": [[204, "energies"]], "energy": [[205, "energy"]], "fermi": [[206, "fermi"]], "forces": [[208, "forces"]], "get_general": [[209, "get-general"]], "get_params": [[210, "get-params"]], "get_scstep": [[211, "get-scstep"]], "get_set": [[212, "get-set"]], "get_structure": [[213, "get-structure"]], "get_varray": [[214, "get-varray"]], "incar": [[215, "incar"]], "is_finished": [[217, "is-finished"]], "iteration_data": [[218, "iteration-data"]], "kpoints": [[219, "kpoints"]], "kpoints_list": [[220, "kpoints-list"]], "last_energy": [[221, "last-energy"]], "parse_vasprun": [[222, "parse-vasprun"]], "potcar_info": [[223, "potcar-info"]], "read": [[224, "read"]], "text_to_bool": [[228, "text-to-bool"]], "vasp_parameters": [[229, "vasp-parameters"]], "AbinitParser": [[230, "abinitparser"]], "BxsfParser": [[231, "bxsfparser"]], "IO API": [[232, "io-api"]], "LobsterParser": [[233, "lobsterparser"]], "QEParser": [[234, "qeparser"]], "SiestaParser": [[235, "siestaparser"]], "VaspParser": [[236, "vaspparser"]], "pyprocar.plotter.DOSPlot": [[237, "pyprocar-plotter-dosplot"]], "draw_fermi": [[239, "draw-fermi"], [259, "draw-fermi"]], "plot_dos": [[242, "plot-dos"]], "plot_parametric": [[243, "plot-parametric"]], "plot_parametric_line": [[244, "plot-parametric-line"]], "plot_stack": [[245, "plot-stack"]], "plot_stack_orbitals": [[246, "plot-stack-orbitals"]], "plot_stack_species": [[247, "plot-stack-species"]], "save": [[248, "save"], [267, "save"]], "set_xlabel": [[249, "set-xlabel"], [269, "set-xlabel"]], "set_xlim": [[250, "set-xlim"], [270, "set-xlim"]], "set_xticks": [[251, "set-xticks"], [271, "set-xticks"]], "set_ylabel": [[252, "set-ylabel"], [272, "set-ylabel"]], "set_ylim": [[253, "set-ylim"], [273, "set-ylim"]], "set_yticks": [[254, "set-yticks"], [274, "set-yticks"]], "update_config": [[256, "update-config"], [276, "update-config"]], "pyprocar.plotter.EBSPlot": [[257, "pyprocar-plotter-ebsplot"]], "plot_atomic_levels": [[262, "plot-atomic-levels"]], "plot_bands": [[263, "plot-bands"]], "plot_parameteric": [[264, "plot-parameteric"]], "plot_parameteric_overlay": [[265, "plot-parameteric-overlay"]], "plot_scatter": [[266, "plot-scatter"]], "set_title": [[268, "set-title"]], "pyprocar.plotter.ProcarPlot": [[277, "pyprocar-plotter-procarplot"]], "atomicPlot": [[279, "atomicplot"]], "parametricPlot": [[280, "parametricplot"]], "plotBands": [[281, "plotbands"]], "scatterPlot": [[282, "scatterplot"]], "EBSPlot": [[283, "ebsplot"]], "DosPlot": [[284, "dosplot"]], "Plotter API": [[285, "plotter-api"]], "ProcarPlot": [[286, "procarplot"]], "pyprocar.pyposcar.Poscar": [[287, "pyprocar-pyposcar-poscar"]], "add": [[289, "add"], [299, "add"]], "load_from_data": [[290, "load-from-data"]], "parse": [[291, "parse"]], "remove": [[292, "remove"], [303, "remove"]], "sort": [[293, "sort"]], "write": [[294, "write"], [306, "write"], [310, "write"]], "xyz": [[295, "xyz"]], "poscarDiff": [[296, "poscardiff"]], "pyprocar.pyposcar.poscar_modify": [[297, "pyprocar-pyposcar-poscar-modify"]], "change_elements": [[300, "change-elements"]], "pos_multiply": [[301, "pos-multiply"]], "pos_sum": [[302, "pos-sum"]], "scale_lattice": [[304, "scale-lattice"]], "shift": [[305, "shift"]], "pyprocar.pyposcar.poscar_supercell": [[307, "pyprocar-pyposcar-poscar-supercell"]], "PyPoscar API": [[311, "pyposcar-api"]], "Poscar": [[312, "poscar"]], "poscarUtils": [[313, "poscarutils"]], "pyprocar.scripts.FermiHandler": [[314, "pyprocar-scripts-fermihandler"]], "create_isovalue_gif": [[316, "create-isovalue-gif"]], "plot_fermi_cross_section": [[317, "plot-fermi-cross-section"]], "plot_fermi_cross_section_box_widget": [[318, "plot-fermi-cross-section-box-widget"]], "plot_fermi_isoslider": [[319, "plot-fermi-isoslider"]], "plot_fermi_surface": [[320, "plot-fermi-surface"]], "print_default_settings": [[321, "print-default-settings"]], "bandgap": [[322, "bandgap"], [333, "bandgap"]], "bandsdosplot": [[323, "bandsdosplot"], [334, "bandsdosplot"]], "bandsplot": [[324, "bandsplot"], [335, "bandsplot"]], "bandsplot_2d": [[325, "bandsplot-2d"], [336, "bandsplot-2d"]], "cat": [[326, "cat"], [337, "cat"]], "dosplot": [[327, "dosplot"], [338, "dosplot"]], "fermi2D": [[328, "fermi2d"], [339, "fermi2d"]], "fermi3D": [[329, "fermi3d"], [340, "fermi3d"]], "generate2dkmesh": [[330, "generate2dkmesh"], [342, "generate2dkmesh"]], "kpath": [[331, "kpath"], [344, "kpath"]], "FermiHandler": [[341, "fermihandler"]], "Scripts API": [[343, "scripts-api"]], "reapir": [[345, "reapir"]], "Abinit Perperation": [[346, "abinit-perperation"]], "DFTB+ Preparation": [[347, "dftb-preparation"]], "Preparing Calculations": [[347, "preparing-calculations"], [351, "preparing-calculations"], [353, "preparing-calculations"]], "Band Structure (SSC)": [[347, "band-structure-ssc"]], "Band Structure (non-SSC)": [[347, "band-structure-non-ssc"]], "Fermi (SCC)": [[347, "fermi-scc"]], "Adding names to k-points": [[347, "adding-names-to-k-points"]], "Elk Perperation": [[348, "elk-perperation"]], "DFT Prep": [[349, "dft-prep"]], "Lobster Perperation": [[350, "lobster-perperation"]], "Quantum Espresso Preparation": [[351, "quantum-espresso-preparation"]], "Band Structure": [[351, "band-structure"], [353, "band-structure"], [354, "band-structure"], [406, "band-structure"]], "Density of States": [[351, "density-of-states"], [353, "density-of-states"], [366, "density-of-states"], [406, "density-of-states"], [416, "density-of-states"]], "Band Structure and Density of States": [[351, "band-structure-and-density-of-states"], [353, "band-structure-and-density-of-states"]], "Fermi": [[351, "fermi"], [353, "fermi"]], "K-Points Format": [[351, "k-points-format"], [353, "k-points-format"]], "Magnetic Calculations": [[351, "magnetic-calculations"], [353, "magnetic-calculations"]], "Siesta Perperation": [[352, "siesta-perperation"]], "VASP Preparation": [[353, "vasp-preparation"]], "Plotting Atomic Levels": [[355, "plotting-atomic-levels"]], "Preparation": [[355, "preparation"], [356, "preparation"], [357, "preparation"], [360, "preparation"], [368, "preparation"], [375, "preparation"], [379, "preparation"], [385, "preparation"]], "Setting up the environment": [[355, "setting-up-the-environment"], [356, "setting-up-the-environment"], [360, "setting-up-the-environment"]], "Plotting in Atomic Mode": [[355, "plotting-in-atomic-mode"]], "Autobands plotting": [[356, "autobands-plotting"]], "Autobands Example": [[356, "autobands-example"]], "Plotting with Configurations in pyprocar": [[357, "plotting-with-configurations-in-pyprocar"], [368, "plotting-with-configurations-in-pyprocar"], [379, "plotting-with-configurations-in-pyprocar"], [385, "plotting-with-configurations-in-pyprocar"]], "Plotting band structure": [[358, "plotting-band-structure"]], "Plain mode": [[358, "plain-mode"], [361, "plain-mode"], [362, "plain-mode"], [363, "plain-mode"], [367, "plain-mode"], [371, "plain-mode"], [374, "plain-mode"], [378, "plain-mode"], [387, "plain-mode"], [388, "plain-mode"], [389, "plain-mode"], [390, "plain-mode"]], "Parametric mode": [[358, "parametric-mode"], [361, "parametric-mode"], [362, "parametric-mode"], [363, "parametric-mode"], [367, "parametric-mode"], [369, "parametric-mode"], [370, "parametric-mode"], [371, "parametric-mode"], [389, "parametric-mode"], [390, "parametric-mode"]], "parametric_linemode": [[358, "parametric-linemode"]], "Scatter mode": [[358, "scatter-mode"], [363, "scatter-mode"]], "overlay_species mode": [[358, "overlay-species-mode"]], "overlay_orbtials mode": [[358, "overlay-orbtials-mode"]], "overlay mode": [[358, "overlay-mode"], [367, "overlay-mode"]], "overlay mode by orbital names": [[358, "overlay-mode-by-orbital-names"]], "Comparing band structures": [[359, "comparing-band-structures"]], "Plotting Inverse participation ratio": [[360, "plotting-inverse-participation-ratio"]], "Topologically-protected surface states in Bi_2Se_3": [[360, "topologically-protected-surface-states-in-bi-2se-3"]], "NV^- defect in diamond": [[360, "nv-defect-in-diamond"]], "Plotting non colinear band structures in Quantum Espresso": [[361, "plotting-non-colinear-band-structures-in-quantum-espresso"]], "Plotting non colinear band structures in VASP": [[362, "plotting-non-colinear-band-structures-in-vasp"]], "Plotting spin polarized band structures": [[363, "plotting-spin-polarized-band-structures"]], "Unfolding Band Structure": [[364, "unfolding-band-structure"]], "Plotting primitive bands": [[364, "plotting-primitive-bands"]], "Unfolding of the supercell bands": [[364, "unfolding-of-the-supercell-bands"]], "Computation times": [[365, "computation-times"], [372, "computation-times"], [376, "computation-times"], [382, "computation-times"], [392, "computation-times"], [398, "computation-times"], [405, "computation-times"]], "Plotting density of states": [[367, "plotting-density-of-states"]], "parametric_line mode": [[367, "parametric-line-mode"], [371, "parametric-line-mode"]], "stack_species mode": [[367, "stack-species-mode"], [371, "stack-species-mode"]], "stack_orbtials mode": [[367, "stack-orbtials-mode"], [371, "stack-orbtials-mode"]], "Plotting non colinear dos in Quantum Espresso": [[369, "plotting-non-colinear-dos-in-quantum-espresso"]], "Plotting non colinear dos in VASP": [[370, "plotting-non-colinear-dos-in-vasp"]], "Plotting spin-polarized density of states": [[371, "plotting-spin-polarized-density-of-states"]], "stack mode": [[371, "stack-mode"]], "Bands and Dos plot": [[373, "bands-and-dos-plot"], [406, "bands-and-dos-plot"]], "Plotting bandsdosplot": [[374, "plotting-bandsdosplot"], [375, "plotting-bandsdosplot"]], "Fermi 2D": [[377, "fermi-2d"], [406, "fermi-2d"]], "Plotting fermi2d": [[378, "plotting-fermi2d"]], "plain_bands mode": [[378, "plain-bands-mode"]], "parametric mode": [[378, "parametric-mode"]], "Selecting band indices": [[378, "selecting-band-indices"], [380, "selecting-band-indices"]], "Plotting fermi2d noncolinear": [[380, "plotting-fermi2d-noncolinear"]], "Spin Texture Projection": [[380, "spin-texture-projection"]], "Spin Texture single color": [[380, "spin-texture-single-color"]], "Plotting rashba spin splitting": [[381, "plotting-rashba-spin-splitting"]], "energy = 0.60 sx projection no arrows": [[381, "energy-0-60-sx-projection-no-arrows"]], "energy = 0.60 sy projection no arrows": [[381, "energy-0-60-sy-projection-no-arrows"]], "energy = 0.60 sz projection no arrows": [[381, "energy-0-60-sz-projection-no-arrows"]], "energy = -0.90 sx projection no arrows": [[381, "energy-0-90-sx-projection-no-arrows"]], "energy = -0.90 sy projection no arrows": [[381, "energy-0-90-sy-projection-no-arrows"]], "energy = -0.90 sz projection no arrows": [[381, "energy-0-90-sz-projection-no-arrows"]], "energy = 0.60 sx projection with arrows": [[381, "energy-0-60-sx-projection-with-arrows"]], "energy = -0.90 sx projection with arrows": [[381, "energy-0-90-sx-projection-with-arrows"]], "Fermi 3D": [[383, "fermi-3d"], [406, "fermi-3d"]], "Showing how to get van alphen fequencies from the fermi surface": [[384, "showing-how-to-get-van-alphen-fequencies-from-the-fermi-surface"]], "Maximal cross sectional area along the (0,0,1)": [[384, "maximal-cross-sectional-area-along-the-0-0-1"]], "Minimal cross sectional area along the (0,0,1)": [[384, "minimal-cross-sectional-area-along-the-0-0-1"]], "Extremal cross sectional area along the (0,1,1)": [[384, "extremal-cross-sectional-area-along-the-0-1-1"]], "Plotting fermi3d cross_section": [[386, "plotting-fermi3d-cross-section"]], "Cross section": [[386, "cross-section"]], "Cross section. Save slice": [[386, "cross-section-save-slice"]], "Plotting fermi3d isoslider": [[387, "plotting-fermi3d-isoslider"]], "Plotting fermi3d isovalue_gif": [[388, "plotting-fermi3d-isovalue-gif"]], "Plotting fermi3d plain": [[389, "plotting-fermi3d-plain"]], "Plotting fermi3d spin-polarized": [[390, "plotting-fermi3d-spin-polarized"]], "Plotting fermi3d spin_texture": [[391, "plotting-fermi3d-spin-texture"]], "Spin Texture mode": [[391, "spin-texture-mode"]], "Other": [[393, "other"], [406, "other"]], "Example of kmesh_generator": [[394, "example-of-kmesh-generator"]], "Plotting Kmesh": [[394, "plotting-kmesh"]], "Example of finding the bandgap": [[395, "example-of-finding-the-bandgap"], [396, "example-of-finding-the-bandgap"]], "Other properties": [[396, "other-properties"]], "Bands": [[396, "bands"]], "Projections": [[396, "projections"]], "Gradients": [[396, "gradients"]], "Band/Fermi velocities": [[396, "band-fermi-velocities"]], "Effective mass": [[396, "effective-mass"]], "Example of kpath_generator": [[397, "example-of-kpath-generator"]], "Plotting K Path": [[397, "plotting-k-path"]], "PyPoscar": [[399, "pyposcar"], [406, "pyposcar"]], "Visualizing Clusters in Bi2Se3 Slab": [[400, "visualizing-clusters-in-bi2se3-slab"]], "Utility function for creating GIF visualizations": [[400, "utility-function-for-creating-gif-visualizations"], [401, "utility-function-for-creating-gif-visualizations"], [404, "utility-function-for-creating-gif-visualizations"]], "Parsing the POSCAR and Identifying Clusters": [[400, "parsing-the-poscar-and-identifying-clusters"]], "Visualizing the Clusters": [[400, "visualizing-the-clusters"]], "Finding defects in a POSCAR file": [[401, "finding-defects-in-a-poscar-file"]], "Finding defects": [[401, "finding-defects"]], "Analyzing Radial Distribution Functions (RDF)": [[402, "analyzing-radial-distribution-functions-rdf"]], "Parsing the POSCAR file": [[402, "parsing-the-poscar-file"]], "Computing RDF and KDE Curves": [[402, "computing-rdf-and-kde-curves"]], "Visualizing the Results": [[402, "visualizing-the-results"]], "Substituting Atoms in a POSCAR File": [[403, "substituting-atoms-in-a-poscar-file"]], "Reading and Parsing the POSCAR File": [[403, "reading-and-parsing-the-poscar-file"]], "Atom Substitution": [[403, "atom-substitution"]], "Visualization of Atomic Structures": [[403, "visualization-of-atomic-structures"]], "Creating GIFs for Visualization": [[403, "creating-gifs-for-visualization"]], "Modifying a POSCAR File: Scaling, Supercells, and Defects": [[404, "modifying-a-poscar-file-scaling-supercells-and-defects"]], "Scaling Vacuum Space in the Lattice": [[404, "scaling-vacuum-space-in-the-lattice"]], "Creating a Supercell": [[404, "creating-a-supercell"]], "Introducing Defects": [[404, "introducing-defects"]], "Examples": [[406, "examples"]], "Authors & Citation": [[407, "authors-citation"]], "Citing PyProcar": [[407, "citing-pyprocar"], [408, "citing-pyprocar"]], "Authors": [[407, "authors"]], "Contributors": [[407, "contributors"]], "Developers": [[407, "developers"]], "License": [[407, "license"]], "Getting started": [[408, "getting-started"]], "Installation": [[408, "installation"], [409, "installation"]], "Paper": [[408, "paper"]], "Support": [[408, "support"]], "Installing with pip": [[409, "installing-with-pip"]], "Installing with conda": [[409, "installing-with-conda"]], "Cloning through GitHub": [[409, "cloning-through-github"]], "After Installation": [[409, "after-installation"]], "Why PyProcar?": [[410, "why-pyprocar"]], "PyProcar": [[411, "pyprocar"]], "Indices and tables": [[411, "indices-and-tables"]], "Atomic Projections": [[412, "atomic-projections"]], "1. Spin projection": [[412, "spin-projection"]], "2. Atom projection": [[412, "atom-projection"]], "3. Orbital projection": [[412, "orbital-projection"]], "Band structure": [[413, "band-structure"]], "1. Plain band structure": [[413, "plain-band-structure"]], "2. Spin projection": [[413, "spin-projection"]], "3. Atom projection": [[413, "atom-projection"]], "4. Orbital projection": [[413, "orbital-projection"]], "Export plot as a matplotlib.pyplot object": [[413, "export-plot-as-a-matplotlib-pyplot-object"], [418, "export-plot-as-a-matplotlib-pyplot-object"], [425, "export-plot-as-a-matplotlib-pyplot-object"]], "Converting k-points from reduced to cartesian coordinates": [[413, "converting-k-points-from-reduced-to-cartesian-coordinates"]], "Plotting band structures with a discontinuous k-path": [[413, "plotting-band-structures-with-a-discontinuous-k-path"]], "Concatenating multiple calculations": [[414, "concatenating-multiple-calculations"]], "Compare bands": [[415, "compare-bands"]], "1. mode='plain'": [[416, "mode-plain"]], "2. mode='parametric'": [[416, "mode-parametric"]], "3. mode='parametric_line'": [[416, "mode-parametric-line"]], "4. mode='stack'": [[416, "mode-stack"]], "5. mode='stack_species'": [[416, "mode-stack-species"]], "6. mode='stack_orbitals'": [[416, "mode-stack-orbitals"]], "Accessing Electronic Band Structure": [[417, "accessing-electronic-band-structure"]], "2D spin-texture": [[418, "d-spin-texture"]], "Translate and Rotate the 2D KPOINT mesh": [[418, "translate-and-rotate-the-2d-kpoint-mesh"]], "3D Fermi surface": [[419, "d-fermi-surface"]], "3D surfaces": [[419, "d-surfaces"]], "Keyboard shortcuts": [[419, "keyboard-shortcuts"]], "Filtering data": [[420, "filtering-data"]], "To filter selected orbitals": [[420, "to-filter-selected-orbitals"]], "To filter selected k-points": [[420, "to-filter-selected-k-points"]], "To filter selected spins": [[420, "to-filter-selected-spins"]], "To filter selected atoms": [[420, "to-filter-selected-atoms"]], "User Guide": [[421, "user-guide"]], "Further Details": [[421, "further-details"]], "K Path": [[422, "k-path"]], "Accessing Kpath Information": [[422, "accessing-kpath-information"]], "Repair": [[423, "repair"]], "Accessing Structure Information": [[424, "accessing-structure-information"]], "Band unfolding": [[425, "band-unfolding"]]}, "indexentries": {"brillouinzone (class in pyprocar.core)": [[7, "pyprocar.core.BrillouinZone"]], "__init__() (pyprocar.core.brillouinzone method)": [[8, "pyprocar.core.BrillouinZone.__init__"]], "wigner_seitz() (pyprocar.core.brillouinzone method)": [[9, "pyprocar.core.BrillouinZone.wigner_seitz"]], "densityofstates (class in pyprocar.core)": [[10, "pyprocar.core.DensityOfStates"]], "__init__() (pyprocar.core.densityofstates method)": [[11, "pyprocar.core.DensityOfStates.__init__"]], "coupled_to_uncoupled_basis() (pyprocar.core.densityofstates method)": [[12, "pyprocar.core.DensityOfStates.coupled_to_uncoupled_basis"]], "dos_sum() (pyprocar.core.densityofstates method)": [[13, "pyprocar.core.DensityOfStates.dos_sum"]], "get_current_basis() (pyprocar.core.densityofstates method)": [[14, "pyprocar.core.DensityOfStates.get_current_basis"]], "is_non_collinear (pyprocar.core.densityofstates property)": [[15, "pyprocar.core.DensityOfStates.is_non_collinear"]], "n_dos (pyprocar.core.densityofstates property)": [[16, "pyprocar.core.DensityOfStates.n_dos"]], "n_energies (pyprocar.core.densityofstates property)": [[17, "pyprocar.core.DensityOfStates.n_energies"]], "n_spins (pyprocar.core.densityofstates property)": [[18, "pyprocar.core.DensityOfStates.n_spins"]], "electronicbandstructure (class in pyprocar.core)": [[19, "pyprocar.core.ElectronicBandStructure"]], "__init__() (pyprocar.core.electronicbandstructure method)": [[20, "pyprocar.core.ElectronicBandStructure.__init__"]], "bands_gradient (pyprocar.core.electronicbandstructure property)": [[21, "pyprocar.core.ElectronicBandStructure.bands_gradient"]], "bands_gradient_mesh (pyprocar.core.electronicbandstructure property)": [[22, "pyprocar.core.ElectronicBandStructure.bands_gradient_mesh"]], "bands_hessian (pyprocar.core.electronicbandstructure property)": [[23, "pyprocar.core.ElectronicBandStructure.bands_hessian"]], "bands_hessian_mesh (pyprocar.core.electronicbandstructure property)": [[24, "pyprocar.core.ElectronicBandStructure.bands_hessian_mesh"]], "bands_mesh (pyprocar.core.electronicbandstructure property)": [[25, "pyprocar.core.ElectronicBandStructure.bands_mesh"]], "calculate_scalar_gradient() (pyprocar.core.electronicbandstructure method)": [[26, "pyprocar.core.ElectronicBandStructure.calculate_scalar_gradient"]], "calculate_scalar_integral() (pyprocar.core.electronicbandstructure method)": [[27, "pyprocar.core.ElectronicBandStructure.calculate_scalar_integral"]], "create_nd_mesh() (pyprocar.core.electronicbandstructure method)": [[28, "pyprocar.core.ElectronicBandStructure.create_nd_mesh"]], "create_scaler_mesh() (pyprocar.core.electronicbandstructure method)": [[29, "pyprocar.core.ElectronicBandStructure.create_scaler_mesh"]], "create_vector_mesh() (pyprocar.core.electronicbandstructure method)": [[30, "pyprocar.core.ElectronicBandStructure.create_vector_mesh"]], "ebs_ipr() (pyprocar.core.electronicbandstructure method)": [[31, "pyprocar.core.ElectronicBandStructure.ebs_ipr"]], "ebs_ipr_atom() (pyprocar.core.electronicbandstructure method)": [[32, "pyprocar.core.ElectronicBandStructure.ebs_ipr_atom"]], "ebs_sum() (pyprocar.core.electronicbandstructure method)": [[33, "pyprocar.core.ElectronicBandStructure.ebs_sum"]], "fermi_speed (pyprocar.core.electronicbandstructure property)": [[34, "pyprocar.core.ElectronicBandStructure.fermi_speed"]], "fermi_speed_mesh (pyprocar.core.electronicbandstructure property)": [[35, "pyprocar.core.ElectronicBandStructure.fermi_speed_mesh"]], "fermi_velocity (pyprocar.core.electronicbandstructure property)": [[36, "pyprocar.core.ElectronicBandStructure.fermi_velocity"]], "fermi_velocity_mesh (pyprocar.core.electronicbandstructure property)": [[37, "pyprocar.core.ElectronicBandStructure.fermi_velocity_mesh"]], "harmonic_average_effective_mass (pyprocar.core.electronicbandstructure property)": [[38, "pyprocar.core.ElectronicBandStructure.harmonic_average_effective_mass"]], "harmonic_average_effective_mass_mesh (pyprocar.core.electronicbandstructure property)": [[39, "pyprocar.core.ElectronicBandStructure.harmonic_average_effective_mass_mesh"]], "ibz2fbz() (pyprocar.core.electronicbandstructure method)": [[40, "pyprocar.core.ElectronicBandStructure.ibz2fbz"]], "index_mesh (pyprocar.core.electronicbandstructure property)": [[41, "pyprocar.core.ElectronicBandStructure.index_mesh"]], "interpolate_mesh_grid() (pyprocar.core.electronicbandstructure method)": [[42, "pyprocar.core.ElectronicBandStructure.interpolate_mesh_grid"]], "is_non_collinear (pyprocar.core.electronicbandstructure property)": [[43, "pyprocar.core.ElectronicBandStructure.is_non_collinear"]], "kpoints_cartesian (pyprocar.core.electronicbandstructure property)": [[44, "pyprocar.core.ElectronicBandStructure.kpoints_cartesian"]], "kpoints_cartesian_mesh (pyprocar.core.electronicbandstructure property)": [[45, "pyprocar.core.ElectronicBandStructure.kpoints_cartesian_mesh"]], "kpoints_mesh (pyprocar.core.electronicbandstructure property)": [[46, "pyprocar.core.ElectronicBandStructure.kpoints_mesh"]], "kpoints_reduced (pyprocar.core.electronicbandstructure property)": [[47, "pyprocar.core.ElectronicBandStructure.kpoints_reduced"]], "mesh_to_array() (pyprocar.core.electronicbandstructure method)": [[48, "pyprocar.core.ElectronicBandStructure.mesh_to_array"]], "n_kx (pyprocar.core.electronicbandstructure property)": [[49, "pyprocar.core.ElectronicBandStructure.n_kx"]], "n_ky (pyprocar.core.electronicbandstructure property)": [[50, "pyprocar.core.ElectronicBandStructure.n_ky"]], "n_kz (pyprocar.core.electronicbandstructure property)": [[51, "pyprocar.core.ElectronicBandStructure.n_kz"]], "natoms (pyprocar.core.electronicbandstructure property)": [[52, "pyprocar.core.ElectronicBandStructure.natoms"]], "nbands (pyprocar.core.electronicbandstructure property)": [[53, "pyprocar.core.ElectronicBandStructure.nbands"]], "nkpoints (pyprocar.core.electronicbandstructure property)": [[54, "pyprocar.core.ElectronicBandStructure.nkpoints"]], "norbitals (pyprocar.core.electronicbandstructure property)": [[55, "pyprocar.core.ElectronicBandStructure.norbitals"]], "nprincipals (pyprocar.core.electronicbandstructure property)": [[56, "pyprocar.core.ElectronicBandStructure.nprincipals"]], "nspins (pyprocar.core.electronicbandstructure property)": [[57, "pyprocar.core.ElectronicBandStructure.nspins"]], "plot_kpoints() (pyprocar.core.electronicbandstructure method)": [[58, "pyprocar.core.ElectronicBandStructure.plot_kpoints"]], "projected_mesh (pyprocar.core.electronicbandstructure property)": [[59, "pyprocar.core.ElectronicBandStructure.projected_mesh"]], "projected_phase_mesh (pyprocar.core.electronicbandstructure property)": [[60, "pyprocar.core.ElectronicBandStructure.projected_phase_mesh"]], "ravel_array() (pyprocar.core.electronicbandstructure method)": [[61, "pyprocar.core.ElectronicBandStructure.ravel_array"]], "unfold() (pyprocar.core.electronicbandstructure method)": [[62, "pyprocar.core.ElectronicBandStructure.unfold"]], "update_weights() (pyprocar.core.electronicbandstructure method)": [[63, "pyprocar.core.ElectronicBandStructure.update_weights"]], "weights_mesh (pyprocar.core.electronicbandstructure property)": [[64, "pyprocar.core.ElectronicBandStructure.weights_mesh"]], "fermisurface (class in pyprocar.core)": [[65, "pyprocar.core.FermiSurface"]], "__init__() (pyprocar.core.fermisurface method)": [[66, "pyprocar.core.FermiSurface.__init__"]], "add_axes_labels() (pyprocar.core.fermisurface method)": [[67, "pyprocar.core.FermiSurface.add_axes_labels"]], "add_legend() (pyprocar.core.fermisurface method)": [[68, "pyprocar.core.FermiSurface.add_legend"]], "find_energy() (pyprocar.core.fermisurface method)": [[69, "pyprocar.core.FermiSurface.find_energy"]], "plot() (pyprocar.core.fermisurface method)": [[70, "pyprocar.core.FermiSurface.plot"]], "savefig() (pyprocar.core.fermisurface method)": [[71, "pyprocar.core.FermiSurface.savefig"]], "show() (pyprocar.core.fermisurface method)": [[72, "pyprocar.core.FermiSurface.show"]], "spin_texture() (pyprocar.core.fermisurface method)": [[73, "pyprocar.core.FermiSurface.spin_texture"]], "fermisurface3d (class in pyprocar.core)": [[74, "pyprocar.core.FermiSurface3D"]], "__init__() (pyprocar.core.fermisurface3d method)": [[75, "pyprocar.core.FermiSurface3D.__init__"]], "extend_surface() (pyprocar.core.fermisurface3d method)": [[76, "pyprocar.core.FermiSurface3D.extend_surface"]], "project_atomic_projections() (pyprocar.core.fermisurface3d method)": [[77, "pyprocar.core.FermiSurface3D.project_atomic_projections"]], "project_fermi_speed() (pyprocar.core.fermisurface3d method)": [[78, "pyprocar.core.FermiSurface3D.project_fermi_speed"]], "project_fermi_velocity() (pyprocar.core.fermisurface3d method)": [[79, "pyprocar.core.FermiSurface3D.project_fermi_velocity"]], "project_harmonic_effective_mass() (pyprocar.core.fermisurface3d method)": [[80, "pyprocar.core.FermiSurface3D.project_harmonic_effective_mass"]], "project_spin_texture_atomic_projections() (pyprocar.core.fermisurface3d method)": [[81, "pyprocar.core.FermiSurface3D.project_spin_texture_atomic_projections"]], "isosurface (class in pyprocar.core)": [[82, "pyprocar.core.Isosurface"]], "__init__() (pyprocar.core.isosurface method)": [[83, "pyprocar.core.Isosurface.__init__"]], "dxyz (pyprocar.core.isosurface property)": [[84, "pyprocar.core.Isosurface.dxyz"]], "nx (pyprocar.core.isosurface property)": [[85, "pyprocar.core.Isosurface.nX"]], "ny (pyprocar.core.isosurface property)": [[86, "pyprocar.core.Isosurface.nY"]], "nz (pyprocar.core.isosurface property)": [[87, "pyprocar.core.Isosurface.nZ"]], "surface_boundaries (pyprocar.core.isosurface property)": [[88, "pyprocar.core.Isosurface.surface_boundaries"]], "kpath (class in pyprocar.core)": [[89, "pyprocar.core.KPath"]], "__init__() (pyprocar.core.kpath method)": [[90, "pyprocar.core.KPath.__init__"]], "get_kpoints_transformed() (pyprocar.core.kpath method)": [[91, "pyprocar.core.KPath.get_kpoints_transformed"]], "get_optimized_kpoints_transformed() (pyprocar.core.kpath method)": [[92, "pyprocar.core.KPath.get_optimized_kpoints_transformed"]], "kdistances (pyprocar.core.kpath property)": [[93, "pyprocar.core.KPath.kdistances"]], "nsegments (pyprocar.core.kpath property)": [[94, "pyprocar.core.KPath.nsegments"]], "tick_names (pyprocar.core.kpath property)": [[95, "pyprocar.core.KPath.tick_names"]], "tick_positions (pyprocar.core.kpath property)": [[96, "pyprocar.core.KPath.tick_positions"]], "write_to_file() (pyprocar.core.kpath method)": [[97, "pyprocar.core.KPath.write_to_file"]], "structure (class in pyprocar.core)": [[98, "pyprocar.core.Structure"]], "__init__() (pyprocar.core.structure method)": [[99, "pyprocar.core.Structure.__init__"]], "a (pyprocar.core.structure property)": [[100, "pyprocar.core.Structure.a"]], "alpha (pyprocar.core.structure property)": [[101, "pyprocar.core.Structure.alpha"]], "atomic_numbers (pyprocar.core.structure property)": [[102, "pyprocar.core.Structure.atomic_numbers"]], "b (pyprocar.core.structure property)": [[103, "pyprocar.core.Structure.b"]], "beta (pyprocar.core.structure property)": [[104, "pyprocar.core.Structure.beta"]], "c (pyprocar.core.structure property)": [[105, "pyprocar.core.Structure.c"]], "cell_convex_hull (pyprocar.core.structure property)": [[106, "pyprocar.core.Structure.cell_convex_hull"]], "density (pyprocar.core.structure property)": [[107, "pyprocar.core.Structure.density"]], "gamma (pyprocar.core.structure property)": [[108, "pyprocar.core.Structure.gamma"]], "get_space_group_international() (pyprocar.core.structure method)": [[109, "pyprocar.core.Structure.get_space_group_international"]], "get_space_group_number() (pyprocar.core.structure method)": [[110, "pyprocar.core.Structure.get_space_group_number"]], "get_spglib_symmetry_dataset() (pyprocar.core.structure method)": [[111, "pyprocar.core.Structure.get_spglib_symmetry_dataset"]], "get_wyckoff_positions() (pyprocar.core.structure method)": [[112, "pyprocar.core.Structure.get_wyckoff_positions"]], "is_point_inside() (pyprocar.core.structure method)": [[113, "pyprocar.core.Structure.is_point_inside"]], "lattice_corners (pyprocar.core.structure property)": [[114, "pyprocar.core.Structure.lattice_corners"]], "masses (pyprocar.core.structure property)": [[115, "pyprocar.core.Structure.masses"]], "natoms (pyprocar.core.structure property)": [[116, "pyprocar.core.Structure.natoms"]], "nspecies (pyprocar.core.structure property)": [[117, "pyprocar.core.Structure.nspecies"]], "plot_cell_convex_hull() (pyprocar.core.structure method)": [[118, "pyprocar.core.Structure.plot_cell_convex_hull"]], "reciprocal_lattice (pyprocar.core.structure property)": [[119, "pyprocar.core.Structure.reciprocal_lattice"]], "species (pyprocar.core.structure property)": [[120, "pyprocar.core.Structure.species"]], "supercell() (pyprocar.core.structure method)": [[121, "pyprocar.core.Structure.supercell"]], "transform() (pyprocar.core.structure method)": [[122, "pyprocar.core.Structure.transform"]], "volume (pyprocar.core.structure property)": [[123, "pyprocar.core.Structure.volume"]], "surface (class in pyprocar.core)": [[124, "pyprocar.core.Surface"]], "__init__() (pyprocar.core.surface method)": [[125, "pyprocar.core.Surface.__init__"]], "centers (pyprocar.core.surface property)": [[126, "pyprocar.core.Surface.centers"]], "export() (pyprocar.core.surface method)": [[127, "pyprocar.core.Surface.export"]], "faces_array (pyprocar.core.surface property)": [[128, "pyprocar.core.Surface.faces_array"]], "set_color_with_cmap() (pyprocar.core.surface method)": [[129, "pyprocar.core.Surface.set_color_with_cmap"]], "set_scalars() (pyprocar.core.surface method)": [[130, "pyprocar.core.Surface.set_scalars"]], "set_vectors() (pyprocar.core.surface method)": [[131, "pyprocar.core.Surface.set_vectors"]], "abinitkpoints (class in pyprocar.io.abinit)": [[143, "pyprocar.io.abinit.AbinitKpoints"]], "__init__() (pyprocar.io.abinit.abinitkpoints method)": [[144, "pyprocar.io.abinit.AbinitKpoints.__init__"]], "abinitprocar (class in pyprocar.io.abinit)": [[145, "pyprocar.io.abinit.AbinitProcar"]], "__init__() (pyprocar.io.abinit.abinitprocar method)": [[146, "pyprocar.io.abinit.AbinitProcar.__init__"]], "output (class in pyprocar.io.abinit)": [[147, "pyprocar.io.abinit.Output"]], "__init__() (pyprocar.io.abinit.output method)": [[148, "pyprocar.io.abinit.Output.__init__"]], "bxsfparser (class in pyprocar.io.bxsf)": [[149, "pyprocar.io.bxsf.BxsfParser"]], "__init__() (pyprocar.io.bxsf.bxsfparser method)": [[150, "pyprocar.io.bxsf.BxsfParser.__init__"]], "parse_bxsf() (pyprocar.io.bxsf.bxsfparser method)": [[151, "pyprocar.io.bxsf.BxsfParser.parse_bxsf"]], "lobsterparser (class in pyprocar.io.lobster)": [[152, "pyprocar.io.lobster.LobsterParser"]], "__init__() (pyprocar.io.lobster.lobsterparser method)": [[153, "pyprocar.io.lobster.LobsterParser.__init__"]], "dos (pyprocar.io.lobster.lobsterparser property)": [[154, "pyprocar.io.lobster.LobsterParser.dos"]], "dos_parametric() (pyprocar.io.lobster.lobsterparser method)": [[155, "pyprocar.io.lobster.LobsterParser.dos_parametric"]], "dos_projected (pyprocar.io.lobster.lobsterparser property)": [[156, "pyprocar.io.lobster.LobsterParser.dos_projected"]], "dos_to_dict (pyprocar.io.lobster.lobsterparser property)": [[157, "pyprocar.io.lobster.LobsterParser.dos_to_dict"]], "dos_total (pyprocar.io.lobster.lobsterparser property)": [[158, "pyprocar.io.lobster.LobsterParser.dos_total"]], "final_structure (pyprocar.io.lobster.lobsterparser property)": [[159, "pyprocar.io.lobster.LobsterParser.final_structure"]], "initial_structure (pyprocar.io.lobster.lobsterparser property)": [[160, "pyprocar.io.lobster.LobsterParser.initial_structure"]], "parse_structure() (pyprocar.io.lobster.lobsterparser method)": [[161, "pyprocar.io.lobster.LobsterParser.parse_structure"]], "species (pyprocar.io.lobster.lobsterparser property)": [[162, "pyprocar.io.lobster.LobsterParser.species"]], "structure (pyprocar.io.lobster.lobsterparser property)": [[163, "pyprocar.io.lobster.LobsterParser.structure"]], "structures (pyprocar.io.lobster.lobsterparser property)": [[164, "pyprocar.io.lobster.LobsterParser.structures"]], "qeparser (class in pyprocar.io.qe)": [[165, "pyprocar.io.qe.QEParser"]], "__init__() (pyprocar.io.qe.qeparser method)": [[166, "pyprocar.io.qe.QEParser.__init__"]], "final_structure (pyprocar.io.qe.qeparser property)": [[167, "pyprocar.io.qe.QEParser.final_structure"]], "getkpointlabels() (pyprocar.io.qe.qeparser method)": [[168, "pyprocar.io.qe.QEParser.getKpointLabels"]], "initial_structure (pyprocar.io.qe.qeparser property)": [[169, "pyprocar.io.qe.QEParser.initial_structure"]], "kpoints_cart() (pyprocar.io.qe.qeparser method)": [[170, "pyprocar.io.qe.QEParser.kpoints_cart"]], "species (pyprocar.io.qe.qeparser property)": [[171, "pyprocar.io.qe.QEParser.species"]], "structure (pyprocar.io.qe.qeparser property)": [[172, "pyprocar.io.qe.QEParser.structure"]], "structures (pyprocar.io.qe.qeparser property)": [[173, "pyprocar.io.qe.QEParser.structures"]], "siestaparser (class in pyprocar.io.siesta)": [[174, "pyprocar.io.siesta.SiestaParser"]], "__init__() (pyprocar.io.siesta.siestaparser method)": [[175, "pyprocar.io.siesta.SiestaParser.__init__"]], "kpoints (class in pyprocar.io.vasp)": [[176, "pyprocar.io.vasp.Kpoints"]], "__init__() (pyprocar.io.vasp.kpoints method)": [[177, "pyprocar.io.vasp.Kpoints.__init__"]], "outcar (class in pyprocar.io.vasp)": [[178, "pyprocar.io.vasp.Outcar"]], "file_str (pyprocar.io.vasp.outcar attribute)": [[178, "pyprocar.io.vasp.Outcar.file_str"]], "filename (pyprocar.io.vasp.outcar attribute)": [[178, "pyprocar.io.vasp.Outcar.filename"]], "variables (pyprocar.io.vasp.outcar attribute)": [[178, "pyprocar.io.vasp.Outcar.variables"]], "__init__() (pyprocar.io.vasp.outcar method)": [[179, "pyprocar.io.vasp.Outcar.__init__"]], "efermi (pyprocar.io.vasp.outcar property)": [[180, "pyprocar.io.vasp.Outcar.efermi"]], "get_symmetry_operations() (pyprocar.io.vasp.outcar method)": [[181, "pyprocar.io.vasp.Outcar.get_symmetry_operations"]], "reciprocal_lattice (pyprocar.io.vasp.outcar property)": [[182, "pyprocar.io.vasp.Outcar.reciprocal_lattice"]], "rotations (pyprocar.io.vasp.outcar property)": [[183, "pyprocar.io.vasp.Outcar.rotations"]], "poscar (class in pyprocar.io.vasp)": [[184, "pyprocar.io.vasp.Poscar"]], "__init__() (pyprocar.io.vasp.poscar method)": [[185, "pyprocar.io.vasp.Poscar.__init__"]], "procar (class in pyprocar.io.vasp)": [[186, "pyprocar.io.vasp.Procar"]], "__init__() (pyprocar.io.vasp.procar method)": [[187, "pyprocar.io.vasp.Procar.__init__"]], "kpoints_cartesian (pyprocar.io.vasp.procar property)": [[188, "pyprocar.io.vasp.Procar.kpoints_cartesian"]], "kpoints_reduced (pyprocar.io.vasp.procar property)": [[189, "pyprocar.io.vasp.Procar.kpoints_reduced"]], "repair() (pyprocar.io.vasp.procar method)": [[190, "pyprocar.io.vasp.Procar.repair"]], "symmetrize() (pyprocar.io.vasp.procar method)": [[191, "pyprocar.io.vasp.Procar.symmetrize"]], "vaspxml (class in pyprocar.io.vasp)": [[192, "pyprocar.io.vasp.VaspXML"]], "__init__() (pyprocar.io.vasp.vaspxml method)": [[193, "pyprocar.io.vasp.VaspXML.__init__"]], "bands (pyprocar.io.vasp.vaspxml property)": [[194, "pyprocar.io.vasp.VaspXML.bands"]], "bands_projected (pyprocar.io.vasp.vaspxml property)": [[195, "pyprocar.io.vasp.VaspXML.bands_projected"]], "conv() (pyprocar.io.vasp.vaspxml method)": [[196, "pyprocar.io.vasp.VaspXML.conv"]], "convergence (pyprocar.io.vasp.vaspxml property)": [[197, "pyprocar.io.vasp.VaspXML.convergence"]], "convergence_electronic (pyprocar.io.vasp.vaspxml property)": [[198, "pyprocar.io.vasp.VaspXML.convergence_electronic"]], "convergence_ionic (pyprocar.io.vasp.vaspxml property)": [[199, "pyprocar.io.vasp.VaspXML.convergence_ionic"]], "dos (pyprocar.io.vasp.vaspxml property)": [[200, "pyprocar.io.vasp.VaspXML.dos"]], "dos_projected (pyprocar.io.vasp.vaspxml property)": [[201, "pyprocar.io.vasp.VaspXML.dos_projected"]], "dos_to_dict (pyprocar.io.vasp.vaspxml property)": [[202, "pyprocar.io.vasp.VaspXML.dos_to_dict"]], "dos_total (pyprocar.io.vasp.vaspxml property)": [[203, "pyprocar.io.vasp.VaspXML.dos_total"]], "energies (pyprocar.io.vasp.vaspxml property)": [[204, "pyprocar.io.vasp.VaspXML.energies"]], "energy (pyprocar.io.vasp.vaspxml property)": [[205, "pyprocar.io.vasp.VaspXML.energy"]], "fermi (pyprocar.io.vasp.vaspxml property)": [[206, "pyprocar.io.vasp.VaspXML.fermi"]], "final_structure (pyprocar.io.vasp.vaspxml property)": [[207, "pyprocar.io.vasp.VaspXML.final_structure"]], "forces (pyprocar.io.vasp.vaspxml property)": [[208, "pyprocar.io.vasp.VaspXML.forces"]], "get_general() (pyprocar.io.vasp.vaspxml method)": [[209, "pyprocar.io.vasp.VaspXML.get_general"]], "get_params() (pyprocar.io.vasp.vaspxml method)": [[210, "pyprocar.io.vasp.VaspXML.get_params"]], "get_scstep() (pyprocar.io.vasp.vaspxml method)": [[211, "pyprocar.io.vasp.VaspXML.get_scstep"]], "get_set() (pyprocar.io.vasp.vaspxml method)": [[212, "pyprocar.io.vasp.VaspXML.get_set"]], "get_structure() (pyprocar.io.vasp.vaspxml method)": [[213, "pyprocar.io.vasp.VaspXML.get_structure"]], "get_varray() (pyprocar.io.vasp.vaspxml method)": [[214, "pyprocar.io.vasp.VaspXML.get_varray"]], "incar (pyprocar.io.vasp.vaspxml property)": [[215, "pyprocar.io.vasp.VaspXML.incar"]], "initial_structure (pyprocar.io.vasp.vaspxml property)": [[216, "pyprocar.io.vasp.VaspXML.initial_structure"]], "is_finished (pyprocar.io.vasp.vaspxml property)": [[217, "pyprocar.io.vasp.VaspXML.is_finished"]], "iteration_data (pyprocar.io.vasp.vaspxml property)": [[218, "pyprocar.io.vasp.VaspXML.iteration_data"]], "kpoints (pyprocar.io.vasp.vaspxml property)": [[219, "pyprocar.io.vasp.VaspXML.kpoints"]], "kpoints_list (pyprocar.io.vasp.vaspxml property)": [[220, "pyprocar.io.vasp.VaspXML.kpoints_list"]], "last_energy (pyprocar.io.vasp.vaspxml property)": [[221, "pyprocar.io.vasp.VaspXML.last_energy"]], "parse_vasprun() (pyprocar.io.vasp.vaspxml method)": [[222, "pyprocar.io.vasp.VaspXML.parse_vasprun"]], "potcar_info (pyprocar.io.vasp.vaspxml property)": [[223, "pyprocar.io.vasp.VaspXML.potcar_info"]], "read() (pyprocar.io.vasp.vaspxml method)": [[224, "pyprocar.io.vasp.VaspXML.read"]], "species (pyprocar.io.vasp.vaspxml property)": [[225, "pyprocar.io.vasp.VaspXML.species"]], "structure (pyprocar.io.vasp.vaspxml property)": [[226, "pyprocar.io.vasp.VaspXML.structure"]], "structures (pyprocar.io.vasp.vaspxml property)": [[227, "pyprocar.io.vasp.VaspXML.structures"]], "text_to_bool() (pyprocar.io.vasp.vaspxml method)": [[228, "pyprocar.io.vasp.VaspXML.text_to_bool"]], "vasp_parameters (pyprocar.io.vasp.vaspxml property)": [[229, "pyprocar.io.vasp.VaspXML.vasp_parameters"]], "dosplot (class in pyprocar.plotter)": [[237, "pyprocar.plotter.DOSPlot"]], "__init__() (pyprocar.plotter.dosplot method)": [[238, "pyprocar.plotter.DOSPlot.__init__"]], "draw_fermi() (pyprocar.plotter.dosplot method)": [[239, "pyprocar.plotter.DOSPlot.draw_fermi"]], "grid() (pyprocar.plotter.dosplot method)": [[240, "pyprocar.plotter.DOSPlot.grid"]], "legend() (pyprocar.plotter.dosplot method)": [[241, "pyprocar.plotter.DOSPlot.legend"]], "plot_dos() (pyprocar.plotter.dosplot method)": [[242, "pyprocar.plotter.DOSPlot.plot_dos"]], "plot_parametric() (pyprocar.plotter.dosplot method)": [[243, "pyprocar.plotter.DOSPlot.plot_parametric"]], "plot_parametric_line() (pyprocar.plotter.dosplot method)": [[244, "pyprocar.plotter.DOSPlot.plot_parametric_line"]], "plot_stack() (pyprocar.plotter.dosplot method)": [[245, "pyprocar.plotter.DOSPlot.plot_stack"]], "plot_stack_orbitals() (pyprocar.plotter.dosplot method)": [[246, "pyprocar.plotter.DOSPlot.plot_stack_orbitals"]], "plot_stack_species() (pyprocar.plotter.dosplot method)": [[247, "pyprocar.plotter.DOSPlot.plot_stack_species"]], "save() (pyprocar.plotter.dosplot method)": [[248, "pyprocar.plotter.DOSPlot.save"]], "set_xlabel() (pyprocar.plotter.dosplot method)": [[249, "pyprocar.plotter.DOSPlot.set_xlabel"]], "set_xlim() (pyprocar.plotter.dosplot method)": [[250, "pyprocar.plotter.DOSPlot.set_xlim"]], "set_xticks() (pyprocar.plotter.dosplot method)": [[251, "pyprocar.plotter.DOSPlot.set_xticks"]], "set_ylabel() (pyprocar.plotter.dosplot method)": [[252, "pyprocar.plotter.DOSPlot.set_ylabel"]], "set_ylim() (pyprocar.plotter.dosplot method)": [[253, "pyprocar.plotter.DOSPlot.set_ylim"]], "set_yticks() (pyprocar.plotter.dosplot method)": [[254, "pyprocar.plotter.DOSPlot.set_yticks"]], "show() (pyprocar.plotter.dosplot method)": [[255, "pyprocar.plotter.DOSPlot.show"]], "update_config() (pyprocar.plotter.dosplot method)": [[256, "pyprocar.plotter.DOSPlot.update_config"]], "ebsplot (class in pyprocar.plotter)": [[257, "pyprocar.plotter.EBSPlot"]], "__init__() (pyprocar.plotter.ebsplot method)": [[258, "pyprocar.plotter.EBSPlot.__init__"]], "draw_fermi() (pyprocar.plotter.ebsplot method)": [[259, "pyprocar.plotter.EBSPlot.draw_fermi"]], "grid() (pyprocar.plotter.ebsplot method)": [[260, "pyprocar.plotter.EBSPlot.grid"]], "legend() (pyprocar.plotter.ebsplot method)": [[261, "pyprocar.plotter.EBSPlot.legend"]], "plot_atomic_levels() (pyprocar.plotter.ebsplot method)": [[262, "pyprocar.plotter.EBSPlot.plot_atomic_levels"]], "plot_bands() (pyprocar.plotter.ebsplot method)": [[263, "pyprocar.plotter.EBSPlot.plot_bands"]], "plot_parameteric() (pyprocar.plotter.ebsplot method)": [[264, "pyprocar.plotter.EBSPlot.plot_parameteric"]], "plot_parameteric_overlay() (pyprocar.plotter.ebsplot method)": [[265, "pyprocar.plotter.EBSPlot.plot_parameteric_overlay"]], "plot_scatter() (pyprocar.plotter.ebsplot method)": [[266, "pyprocar.plotter.EBSPlot.plot_scatter"]], "save() (pyprocar.plotter.ebsplot method)": [[267, "pyprocar.plotter.EBSPlot.save"]], "set_title() (pyprocar.plotter.ebsplot method)": [[268, "pyprocar.plotter.EBSPlot.set_title"]], "set_xlabel() (pyprocar.plotter.ebsplot method)": [[269, "pyprocar.plotter.EBSPlot.set_xlabel"]], "set_xlim() (pyprocar.plotter.ebsplot method)": [[270, "pyprocar.plotter.EBSPlot.set_xlim"]], "set_xticks() (pyprocar.plotter.ebsplot method)": [[271, "pyprocar.plotter.EBSPlot.set_xticks"]], "set_ylabel() (pyprocar.plotter.ebsplot method)": [[272, "pyprocar.plotter.EBSPlot.set_ylabel"]], "set_ylim() (pyprocar.plotter.ebsplot method)": [[273, "pyprocar.plotter.EBSPlot.set_ylim"]], "set_yticks() (pyprocar.plotter.ebsplot method)": [[274, "pyprocar.plotter.EBSPlot.set_yticks"]], "show() (pyprocar.plotter.ebsplot method)": [[275, "pyprocar.plotter.EBSPlot.show"]], "update_config() (pyprocar.plotter.ebsplot method)": [[276, "pyprocar.plotter.EBSPlot.update_config"]], "procarplot (class in pyprocar.plotter)": [[277, "pyprocar.plotter.ProcarPlot"]], "__init__() (pyprocar.plotter.procarplot method)": [[278, "pyprocar.plotter.ProcarPlot.__init__"]], "atomicplot() (pyprocar.plotter.procarplot method)": [[279, "pyprocar.plotter.ProcarPlot.atomicPlot"]], "parametricplot() (pyprocar.plotter.procarplot method)": [[280, "pyprocar.plotter.ProcarPlot.parametricPlot"]], "plotbands() (pyprocar.plotter.procarplot method)": [[281, "pyprocar.plotter.ProcarPlot.plotBands"]], "scatterplot() (pyprocar.plotter.procarplot method)": [[282, "pyprocar.plotter.ProcarPlot.scatterPlot"]], "poscar (class in pyprocar.pyposcar)": [[287, "pyprocar.pyposcar.Poscar"]], "ntotal (pyprocar.pyposcar.self attribute)": [[288, "pyprocar.pyposcar.self.Ntotal"]], "__init__() (pyprocar.pyposcar.poscar method)": [[288, "pyprocar.pyposcar.Poscar.__init__"]], "cpos (pyprocar.pyposcar.self attribute)": [[288, "pyprocar.pyposcar.self.cpos"]], "dpos (pyprocar.pyposcar.self attribute)": [[288, "pyprocar.pyposcar.self.dpos"]], "elm (pyprocar.pyposcar.self attribute)": [[288, "pyprocar.pyposcar.self.elm"]], "filename (pyprocar.pyposcar.self attribute)": [[288, "pyprocar.pyposcar.self.filename"]], "flags (pyprocar.pyposcar.self attribute)": [[288, "pyprocar.pyposcar.self.flags"]], "lat (pyprocar.pyposcar.self attribute)": [[288, "pyprocar.pyposcar.self.lat"]], "numbersp (pyprocar.pyposcar.self attribute)": [[288, "pyprocar.pyposcar.self.numberSp"]], "poscar (pyprocar.pyposcar.self attribute)": [[288, "pyprocar.pyposcar.self.poscar"]], "selectflags (pyprocar.pyposcar.self attribute)": [[288, "pyprocar.pyposcar.self.selectFlags"]], "selective (pyprocar.pyposcar.self attribute)": [[288, "pyprocar.pyposcar.self.selective"]], "typesp (pyprocar.pyposcar.self attribute)": [[288, "pyprocar.pyposcar.self.typeSp"]], "verbose (pyprocar.pyposcar.poscar.self attribute)": [[288, "pyprocar.pyposcar.Poscar.self.verbose"]], "volume (pyprocar.pyposcar.self attribute)": [[288, "pyprocar.pyposcar.self.volume"]], "add() (pyprocar.pyposcar.poscar method)": [[289, "pyprocar.pyposcar.Poscar.add"]], "load_from_data() (pyprocar.pyposcar.poscar method)": [[290, "pyprocar.pyposcar.Poscar.load_from_data"]], "parse() (pyprocar.pyposcar.poscar method)": [[291, "pyprocar.pyposcar.Poscar.parse"]], "remove() (pyprocar.pyposcar.poscar method)": [[292, "pyprocar.pyposcar.Poscar.remove"]], "sort() (pyprocar.pyposcar.poscar method)": [[293, "pyprocar.pyposcar.Poscar.sort"]], "write() (pyprocar.pyposcar.poscar method)": [[294, "pyprocar.pyposcar.Poscar.write"]], "xyz() (pyprocar.pyposcar.poscar method)": [[295, "pyprocar.pyposcar.Poscar.xyz"]], "poscardiff() (in module pyprocar.pyposcar)": [[296, "pyprocar.pyposcar.poscarDiff"]], "poscar_modify (class in pyprocar.pyposcar)": [[297, "pyprocar.pyposcar.poscar_modify"]], "__init__() (pyprocar.pyposcar.poscar_modify method)": [[298, "pyprocar.pyposcar.poscar_modify.__init__"]], "add() (pyprocar.pyposcar.poscar_modify method)": [[299, "pyprocar.pyposcar.poscar_modify.add"]], "change_elements() (pyprocar.pyposcar.poscar_modify method)": [[300, "pyprocar.pyposcar.poscar_modify.change_elements"]], "pos_multiply() (pyprocar.pyposcar.poscar_modify method)": [[301, "pyprocar.pyposcar.poscar_modify.pos_multiply"]], "pos_sum() (pyprocar.pyposcar.poscar_modify method)": [[302, "pyprocar.pyposcar.poscar_modify.pos_sum"]], "remove() (pyprocar.pyposcar.poscar_modify method)": [[303, "pyprocar.pyposcar.poscar_modify.remove"]], "scale_lattice() (pyprocar.pyposcar.poscar_modify method)": [[304, "pyprocar.pyposcar.poscar_modify.scale_lattice"]], "shift() (pyprocar.pyposcar.poscar_modify method)": [[305, "pyprocar.pyposcar.poscar_modify.shift"]], "write() (pyprocar.pyposcar.poscar_modify method)": [[306, "pyprocar.pyposcar.poscar_modify.write"]], "poscar_supercell (class in pyprocar.pyposcar)": [[307, "pyprocar.pyposcar.poscar_supercell"]], "__init__() (pyprocar.pyposcar.poscar_supercell method)": [[308, "pyprocar.pyposcar.poscar_supercell.__init__"]], "supercell() (pyprocar.pyposcar.poscar_supercell method)": [[309, "pyprocar.pyposcar.poscar_supercell.supercell"]], "write() (pyprocar.pyposcar.poscar_supercell method)": [[310, "pyprocar.pyposcar.poscar_supercell.write"]], "fermihandler (class in pyprocar.scripts)": [[314, "pyprocar.scripts.FermiHandler"]], "__init__() (pyprocar.scripts.fermihandler method)": [[315, "pyprocar.scripts.FermiHandler.__init__"]], "create_isovalue_gif() (pyprocar.scripts.fermihandler method)": [[316, "pyprocar.scripts.FermiHandler.create_isovalue_gif"]], "plot_fermi_cross_section() (pyprocar.scripts.fermihandler method)": [[317, "pyprocar.scripts.FermiHandler.plot_fermi_cross_section"]], "plot_fermi_cross_section_box_widget() (pyprocar.scripts.fermihandler method)": [[318, "pyprocar.scripts.FermiHandler.plot_fermi_cross_section_box_widget"]], "plot_fermi_isoslider() (pyprocar.scripts.fermihandler method)": [[319, "pyprocar.scripts.FermiHandler.plot_fermi_isoslider"]], "plot_fermi_surface() (pyprocar.scripts.fermihandler method)": [[320, "pyprocar.scripts.FermiHandler.plot_fermi_surface"]], "print_default_settings() (pyprocar.scripts.fermihandler method)": [[321, "pyprocar.scripts.FermiHandler.print_default_settings"]], "bandgap() (in module pyprocar.scripts)": [[322, "pyprocar.scripts.bandgap"]], "bandsdosplot() (in module pyprocar.scripts)": [[323, "pyprocar.scripts.bandsdosplot"]], "bandsplot() (in module pyprocar.scripts)": [[324, "pyprocar.scripts.bandsplot"]], "bandsplot_2d() (in module pyprocar.scripts)": [[325, "pyprocar.scripts.bandsplot_2d"]], "cat() (in module pyprocar.scripts)": [[326, "pyprocar.scripts.cat"]], "dosplot() (in module pyprocar.scripts)": [[327, "pyprocar.scripts.dosplot"]], "fermi2d() (in module pyprocar.scripts)": [[328, "pyprocar.scripts.fermi2D"]], "fermi3d() (in module pyprocar.scripts)": [[329, "pyprocar.scripts.fermi3D"]], "generate2dkmesh() (in module pyprocar.scripts)": [[330, "pyprocar.scripts.generate2dkmesh"]], "kpath() (in module pyprocar.scripts)": [[331, "pyprocar.scripts.kpath"]], "repair() (in module pyprocar.scripts)": [[332, "pyprocar.scripts.repair"]], "bandsplot() (in module pyprocar.scripts.scriptbandsplot)": [[413, "pyprocar.scripts.scriptBandsplot.bandsplot"]], "module": [[413, "module-pyprocar.scripts.scriptBandsplot"], [414, "module-pyprocar.scripts.scriptCat"], [416, "module-pyprocar.scriptDosplot"], [418, "module-pyprocar.scripts.scriptFermi2D"], [419, "module-pyprocar.scripts.scriptFermi3D"], [420, "module-pyprocar.scripts.scriptFilter"], [423, "module-pyprocar.scripts.scriptRepair"], [425, "module-pyprocar.scripts.scriptUnfold"]], "pyprocar.scripts.scriptbandsplot": [[413, "module-pyprocar.scripts.scriptBandsplot"]], "cat() (in module pyprocar.scripts.scriptcat)": [[414, "pyprocar.scripts.scriptCat.cat"]], "pyprocar.scripts.scriptcat": [[414, "module-pyprocar.scripts.scriptCat"]], "pyprocar.scriptdosplot": [[416, "module-pyprocar.scriptDosplot"]], "fermi2d() (in module pyprocar.scripts.scriptfermi2d)": [[418, "pyprocar.scripts.scriptFermi2D.fermi2D"]], "pyprocar.scripts.scriptfermi2d": [[418, "module-pyprocar.scripts.scriptFermi2D"]], "fermi3d() (in module pyprocar.scripts.scriptfermi3d)": [[419, "pyprocar.scripts.scriptFermi3D.fermi3D"]], "pyprocar.scripts.scriptfermi3d": [[419, "module-pyprocar.scripts.scriptFermi3D"]], "filter() (in module pyprocar.scripts.scriptfilter)": [[420, "pyprocar.scripts.scriptFilter.filter"]], "pyprocar.scripts.scriptfilter": [[420, "module-pyprocar.scripts.scriptFilter"]], "pyprocar.scripts.scriptrepair": [[423, "module-pyprocar.scripts.scriptRepair"]], "repair() (in module pyprocar.scripts.scriptrepair)": [[423, "pyprocar.scripts.scriptRepair.repair"]], "pyprocar.scripts.scriptunfold": [[425, "module-pyprocar.scripts.scriptUnfold"]], "unfold() (in module pyprocar.scripts.scriptunfold)": [[425, "pyprocar.scripts.scriptUnfold.unfold"]]}}) \ No newline at end of file +Search.setIndex({"docnames": ["api/cfg/band_structure", "api/cfg/band_structure_2d", "api/cfg/dos", "api/cfg/fermi_surface_2d", "api/cfg/fermi_surface_3d", "api/cfg/index", "api/cfg/unfold", "api/core/_autosummary/pyprocar.core.BrillouinZone", "api/core/_autosummary/pyprocar.core.BrillouinZone.__init__", "api/core/_autosummary/pyprocar.core.BrillouinZone.wigner_seitz", "api/core/_autosummary/pyprocar.core.DensityOfStates", "api/core/_autosummary/pyprocar.core.DensityOfStates.__init__", "api/core/_autosummary/pyprocar.core.DensityOfStates.coupled_to_uncoupled_basis", "api/core/_autosummary/pyprocar.core.DensityOfStates.dos_sum", "api/core/_autosummary/pyprocar.core.DensityOfStates.get_current_basis", "api/core/_autosummary/pyprocar.core.DensityOfStates.is_non_collinear", "api/core/_autosummary/pyprocar.core.DensityOfStates.n_dos", "api/core/_autosummary/pyprocar.core.DensityOfStates.n_energies", "api/core/_autosummary/pyprocar.core.DensityOfStates.n_spins", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.__init__", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.bands_gradient", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.bands_gradient_mesh", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.bands_hessian", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.bands_hessian_mesh", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.bands_mesh", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.calculate_scalar_gradient", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.calculate_scalar_integral", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.create_nd_mesh", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.create_scaler_mesh", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.create_vector_mesh", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.ebs_ipr", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.ebs_ipr_atom", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.ebs_sum", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.fermi_speed", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.fermi_speed_mesh", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.fermi_velocity", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.fermi_velocity_mesh", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.fix_collinear_spin", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.harmonic_average_effective_mass", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.harmonic_average_effective_mass_mesh", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.ibz2fbz", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.index_mesh", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.interpolate_mesh_grid", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.is_non_collinear", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.kpoints_cartesian", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.kpoints_cartesian_mesh", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.kpoints_mesh", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.kpoints_reduced", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.mesh_to_array", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.n_kx", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.n_ky", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.n_kz", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.natoms", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.nbands", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.nkpoints", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.norbitals", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.nprincipals", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.nspins", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.plot_kpoints", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.projected_mesh", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.projected_phase_mesh", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.ravel_array", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.unfold", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.update_weights", "api/core/_autosummary/pyprocar.core.ElectronicBandStructure.weights_mesh", "api/core/_autosummary/pyprocar.core.FermiSurface", "api/core/_autosummary/pyprocar.core.FermiSurface.__init__", "api/core/_autosummary/pyprocar.core.FermiSurface.add_axes_labels", "api/core/_autosummary/pyprocar.core.FermiSurface.add_legend", "api/core/_autosummary/pyprocar.core.FermiSurface.find_energy", "api/core/_autosummary/pyprocar.core.FermiSurface.plot", "api/core/_autosummary/pyprocar.core.FermiSurface.savefig", "api/core/_autosummary/pyprocar.core.FermiSurface.show", "api/core/_autosummary/pyprocar.core.FermiSurface.spin_texture", "api/core/_autosummary/pyprocar.core.FermiSurface3D", "api/core/_autosummary/pyprocar.core.FermiSurface3D.__init__", "api/core/_autosummary/pyprocar.core.FermiSurface3D.extend_surface", "api/core/_autosummary/pyprocar.core.FermiSurface3D.project_atomic_projections", "api/core/_autosummary/pyprocar.core.FermiSurface3D.project_fermi_speed", "api/core/_autosummary/pyprocar.core.FermiSurface3D.project_fermi_velocity", "api/core/_autosummary/pyprocar.core.FermiSurface3D.project_harmonic_effective_mass", "api/core/_autosummary/pyprocar.core.FermiSurface3D.project_spin_texture_atomic_projections", "api/core/_autosummary/pyprocar.core.Isosurface", "api/core/_autosummary/pyprocar.core.Isosurface.__init__", "api/core/_autosummary/pyprocar.core.Isosurface.dxyz", "api/core/_autosummary/pyprocar.core.Isosurface.nX", "api/core/_autosummary/pyprocar.core.Isosurface.nY", "api/core/_autosummary/pyprocar.core.Isosurface.nZ", "api/core/_autosummary/pyprocar.core.Isosurface.surface_boundaries", "api/core/_autosummary/pyprocar.core.KPath", "api/core/_autosummary/pyprocar.core.KPath.__init__", "api/core/_autosummary/pyprocar.core.KPath.get_kpoints_transformed", "api/core/_autosummary/pyprocar.core.KPath.get_optimized_kpoints_transformed", "api/core/_autosummary/pyprocar.core.KPath.kdistances", "api/core/_autosummary/pyprocar.core.KPath.nsegments", "api/core/_autosummary/pyprocar.core.KPath.tick_names", "api/core/_autosummary/pyprocar.core.KPath.tick_positions", "api/core/_autosummary/pyprocar.core.KPath.write_to_file", "api/core/_autosummary/pyprocar.core.Structure", "api/core/_autosummary/pyprocar.core.Structure.__init__", "api/core/_autosummary/pyprocar.core.Structure.a", "api/core/_autosummary/pyprocar.core.Structure.alpha", "api/core/_autosummary/pyprocar.core.Structure.atomic_numbers", "api/core/_autosummary/pyprocar.core.Structure.b", "api/core/_autosummary/pyprocar.core.Structure.beta", "api/core/_autosummary/pyprocar.core.Structure.c", "api/core/_autosummary/pyprocar.core.Structure.cell_convex_hull", "api/core/_autosummary/pyprocar.core.Structure.density", "api/core/_autosummary/pyprocar.core.Structure.gamma", "api/core/_autosummary/pyprocar.core.Structure.get_space_group_international", "api/core/_autosummary/pyprocar.core.Structure.get_space_group_number", "api/core/_autosummary/pyprocar.core.Structure.get_spglib_symmetry_dataset", "api/core/_autosummary/pyprocar.core.Structure.get_wyckoff_positions", "api/core/_autosummary/pyprocar.core.Structure.is_point_inside", "api/core/_autosummary/pyprocar.core.Structure.lattice_corners", "api/core/_autosummary/pyprocar.core.Structure.masses", "api/core/_autosummary/pyprocar.core.Structure.natoms", "api/core/_autosummary/pyprocar.core.Structure.nspecies", "api/core/_autosummary/pyprocar.core.Structure.plot_cell_convex_hull", "api/core/_autosummary/pyprocar.core.Structure.reciprocal_lattice", "api/core/_autosummary/pyprocar.core.Structure.species", "api/core/_autosummary/pyprocar.core.Structure.supercell", "api/core/_autosummary/pyprocar.core.Structure.transform", "api/core/_autosummary/pyprocar.core.Structure.volume", "api/core/_autosummary/pyprocar.core.Surface", "api/core/_autosummary/pyprocar.core.Surface.__init__", "api/core/_autosummary/pyprocar.core.Surface.centers", "api/core/_autosummary/pyprocar.core.Surface.export", "api/core/_autosummary/pyprocar.core.Surface.faces_array", "api/core/_autosummary/pyprocar.core.Surface.set_color_with_cmap", "api/core/_autosummary/pyprocar.core.Surface.set_scalars", "api/core/_autosummary/pyprocar.core.Surface.set_vectors", "api/core/brillouin_zone", "api/core/dos", "api/core/ebs", "api/core/fermi2d", "api/core/fermi3d", "api/core/index", "api/core/isosurface", "api/core/kpath", "api/core/structure", "api/core/surface", "api/index", "api/io/_autosummary/pyprocar.io.abinit.AbinitKpoints", "api/io/_autosummary/pyprocar.io.abinit.AbinitKpoints.__init__", "api/io/_autosummary/pyprocar.io.abinit.AbinitProcar", "api/io/_autosummary/pyprocar.io.abinit.AbinitProcar.__init__", "api/io/_autosummary/pyprocar.io.abinit.Output", "api/io/_autosummary/pyprocar.io.abinit.Output.__init__", "api/io/_autosummary/pyprocar.io.bxsf.BxsfParser", "api/io/_autosummary/pyprocar.io.bxsf.BxsfParser.__init__", "api/io/_autosummary/pyprocar.io.bxsf.BxsfParser.parse_bxsf", "api/io/_autosummary/pyprocar.io.lobster.LobsterParser", "api/io/_autosummary/pyprocar.io.lobster.LobsterParser.__init__", "api/io/_autosummary/pyprocar.io.lobster.LobsterParser.dos", "api/io/_autosummary/pyprocar.io.lobster.LobsterParser.dos_parametric", "api/io/_autosummary/pyprocar.io.lobster.LobsterParser.dos_projected", "api/io/_autosummary/pyprocar.io.lobster.LobsterParser.dos_to_dict", "api/io/_autosummary/pyprocar.io.lobster.LobsterParser.dos_total", "api/io/_autosummary/pyprocar.io.lobster.LobsterParser.final_structure", "api/io/_autosummary/pyprocar.io.lobster.LobsterParser.initial_structure", "api/io/_autosummary/pyprocar.io.lobster.LobsterParser.parse_structure", "api/io/_autosummary/pyprocar.io.lobster.LobsterParser.species", "api/io/_autosummary/pyprocar.io.lobster.LobsterParser.structure", "api/io/_autosummary/pyprocar.io.lobster.LobsterParser.structures", "api/io/_autosummary/pyprocar.io.qe.QEParser", "api/io/_autosummary/pyprocar.io.qe.QEParser.__init__", "api/io/_autosummary/pyprocar.io.qe.QEParser.final_structure", "api/io/_autosummary/pyprocar.io.qe.QEParser.getKpointLabels", "api/io/_autosummary/pyprocar.io.qe.QEParser.initial_structure", "api/io/_autosummary/pyprocar.io.qe.QEParser.kpoints_cart", "api/io/_autosummary/pyprocar.io.qe.QEParser.species", "api/io/_autosummary/pyprocar.io.qe.QEParser.structure", "api/io/_autosummary/pyprocar.io.qe.QEParser.structures", "api/io/_autosummary/pyprocar.io.siesta.SiestaParser", "api/io/_autosummary/pyprocar.io.siesta.SiestaParser.__init__", "api/io/_autosummary/pyprocar.io.vasp.Kpoints", "api/io/_autosummary/pyprocar.io.vasp.Kpoints.__init__", "api/io/_autosummary/pyprocar.io.vasp.Outcar", "api/io/_autosummary/pyprocar.io.vasp.Outcar.__init__", "api/io/_autosummary/pyprocar.io.vasp.Outcar.efermi", "api/io/_autosummary/pyprocar.io.vasp.Outcar.get_symmetry_operations", "api/io/_autosummary/pyprocar.io.vasp.Outcar.reciprocal_lattice", "api/io/_autosummary/pyprocar.io.vasp.Outcar.rotations", "api/io/_autosummary/pyprocar.io.vasp.Poscar", "api/io/_autosummary/pyprocar.io.vasp.Poscar.__init__", "api/io/_autosummary/pyprocar.io.vasp.Procar", "api/io/_autosummary/pyprocar.io.vasp.Procar.__init__", "api/io/_autosummary/pyprocar.io.vasp.Procar.kpoints_cartesian", "api/io/_autosummary/pyprocar.io.vasp.Procar.kpoints_reduced", "api/io/_autosummary/pyprocar.io.vasp.Procar.repair", "api/io/_autosummary/pyprocar.io.vasp.Procar.symmetrize", "api/io/_autosummary/pyprocar.io.vasp.VaspXML", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.__init__", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.bands", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.bands_projected", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.conv", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.convergence", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.convergence_electronic", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.convergence_ionic", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.dos", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.dos_projected", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.dos_to_dict", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.dos_total", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.energies", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.energy", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.fermi", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.final_structure", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.forces", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_general", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_params", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_scstep", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_set", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_structure", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.get_varray", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.incar", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.initial_structure", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.is_finished", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.iteration_data", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.kpoints", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.kpoints_list", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.last_energy", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.parse_vasprun", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.potcar_info", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.read", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.species", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.structure", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.structures", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.text_to_bool", "api/io/_autosummary/pyprocar.io.vasp.VaspXML.vasp_parameters", "api/io/abinit", "api/io/bxsf", "api/io/index", "api/io/lobster", "api/io/qe", "api/io/siesta", "api/io/vasp", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.__init__", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.draw_fermi", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.grid", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.legend", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_dos", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_parametric", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_parametric_line", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_stack", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_stack_orbitals", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.plot_stack_species", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.save", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_xlabel", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_xlim", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_xticks", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_ylabel", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_ylim", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.set_yticks", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.show", "api/plotter/_autosummary/pyprocar.plotter.DOSPlot.update_config", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.__init__", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.draw_fermi", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.grid", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.legend", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.plot_atomic_levels", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.plot_bands", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.plot_parameteric", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.plot_parameteric_overlay", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.plot_scatter", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.save", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_colorbar_title", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_title", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_xlabel", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_xlim", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_xticks", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_ylabel", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_ylim", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.set_yticks", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.show", "api/plotter/_autosummary/pyprocar.plotter.EBSPlot.update_config", "api/plotter/_autosummary/pyprocar.plotter.ProcarPlot", "api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.__init__", "api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.atomicPlot", "api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.parametricPlot", "api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.plotBands", "api/plotter/_autosummary/pyprocar.plotter.ProcarPlot.scatterPlot", "api/plotter/bandsplot", "api/plotter/dosplot", "api/plotter/index", "api/plotter/procarplot", "api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar", "api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.__init__", "api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.add", "api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.load_from_data", "api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.parse", "api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.remove", "api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.sort", "api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.write", "api/pyposcar/_autosummary/pyprocar.pyposcar.Poscar.xyz", "api/pyposcar/_autosummary/pyprocar.pyposcar.poscarDiff", "api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify", "api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.__init__", "api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.add", "api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.change_elements", "api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.pos_multiply", "api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.pos_sum", "api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.remove", "api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.scale_lattice", "api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.shift", "api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_modify.write", "api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_supercell", "api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_supercell.__init__", "api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_supercell.supercell", "api/pyposcar/_autosummary/pyprocar.pyposcar.poscar_supercell.write", "api/pyposcar/index", "api/pyposcar/poscar", "api/pyposcar/poscarutils", "api/scripts/_autosummary/pyprocar.scripts.FermiHandler", "api/scripts/_autosummary/pyprocar.scripts.FermiHandler.__init__", "api/scripts/_autosummary/pyprocar.scripts.FermiHandler.create_isovalue_gif", "api/scripts/_autosummary/pyprocar.scripts.FermiHandler.plot_fermi_cross_section", "api/scripts/_autosummary/pyprocar.scripts.FermiHandler.plot_fermi_cross_section_box_widget", "api/scripts/_autosummary/pyprocar.scripts.FermiHandler.plot_fermi_isoslider", "api/scripts/_autosummary/pyprocar.scripts.FermiHandler.plot_fermi_surface", "api/scripts/_autosummary/pyprocar.scripts.FermiHandler.print_default_settings", "api/scripts/_autosummary/pyprocar.scripts.bandgap", "api/scripts/_autosummary/pyprocar.scripts.bandsdosplot", "api/scripts/_autosummary/pyprocar.scripts.bandsplot", "api/scripts/_autosummary/pyprocar.scripts.bandsplot_2d", "api/scripts/_autosummary/pyprocar.scripts.cat", "api/scripts/_autosummary/pyprocar.scripts.dosplot", "api/scripts/_autosummary/pyprocar.scripts.fermi2D", "api/scripts/_autosummary/pyprocar.scripts.fermi3D", "api/scripts/_autosummary/pyprocar.scripts.generate2dkmesh", "api/scripts/_autosummary/pyprocar.scripts.kpath", "api/scripts/_autosummary/pyprocar.scripts.repair", "api/scripts/bandgap", "api/scripts/bandsdosplot", "api/scripts/bandsplot", "api/scripts/bandsplot_2d", "api/scripts/cat", "api/scripts/dosplot", "api/scripts/fermi2d", "api/scripts/fermi3d", "api/scripts/fermihandler", "api/scripts/generate2dkmesh", "api/scripts/index", "api/scripts/kpath", "api/scripts/repair", "dftprep/abinit", "dftprep/dftb+", "dftprep/elk", "dftprep/index", "dftprep/lobster", "dftprep/qe", "dftprep/siesta", "dftprep/vasp", "examples/00-band_structure/index", "examples/00-band_structure/plot_2d_bands", "examples/00-band_structure/plot_atomic_levels", "examples/00-band_structure/plot_autobands", "examples/00-band_structure/plot_bandsplot_configurations", "examples/00-band_structure/plot_colinear", "examples/00-band_structure/plot_compare_bands", "examples/00-band_structure/plot_ipr", "examples/00-band_structure/plot_noncolinear_qe", "examples/00-band_structure/plot_noncolinear_vasp", "examples/00-band_structure/plot_spin_polarized", "examples/00-band_structure/plot_unfolding", "examples/00-band_structure/sg_execution_times", "examples/01-dos/index", "examples/01-dos/plot_colinear_dos", "examples/01-dos/plot_dosplot_configurations", "examples/01-dos/plot_noncolinear_dos_qe", "examples/01-dos/plot_noncolinear_dos_vasp", "examples/01-dos/plot_spin_polarized_dos", "examples/01-dos/sg_execution_times", "examples/02-bands_dos/index", "examples/02-bands_dos/plot_bandsdosplot", "examples/02-bands_dos/plot_bandsdosplot_configurations", "examples/02-bands_dos/sg_execution_times", "examples/03-fermi2d/index", "examples/03-fermi2d/plot_fermi2d", "examples/03-fermi2d/plot_fermi2d_configurations", "examples/03-fermi2d/plot_fermi2d_spin_texture", "examples/03-fermi2d/plot_rashba_spin_spliting", "examples/03-fermi2d/sg_execution_times", "examples/04-fermi3d/index", "examples/04-fermi3d/plot_de_hass_van_alphen", "examples/04-fermi3d/plot_fermi3d_configurations", "examples/04-fermi3d/plot_fermi3d_cross_section", "examples/04-fermi3d/plot_fermi3d_isoslider", "examples/04-fermi3d/plot_fermi3d_isovalue_gif", "examples/04-fermi3d/plot_fermi3d_plain", "examples/04-fermi3d/plot_fermi3d_spin-polarized", "examples/04-fermi3d/plot_fermi3d_spin_texture", "examples/04-fermi3d/sg_execution_times", "examples/05-other/index", "examples/05-other/plot_2dkmesh_generation", "examples/05-other/plot_bandgap", "examples/05-other/plot_ebs", "examples/05-other/plot_kpath_generation", "examples/05-other/sg_execution_times", "examples/06-PyPoscar/index", "examples/06-PyPoscar/plot_clusters_pyposcar", "examples/06-PyPoscar/plot_finding_defects_pyposcar", "examples/06-PyPoscar/plot_rdf_cutoff_pyposcar", "examples/06-PyPoscar/plot_subsitution_pyposcar", "examples/06-PyPoscar/plot_utils_pyposcar", "examples/06-PyPoscar/sg_execution_times", "examples/index", "getting-started/authors", "getting-started/index", "getting-started/installation", "getting-started/why", "index", "user-guide/atomic_projections", "user-guide/bands", "user-guide/cat", "user-guide/comparebands", "user-guide/dos", "user-guide/ebs", "user-guide/fermi2d", "user-guide/fermi3d", "user-guide/filter", "user-guide/index", "user-guide/kpath", "user-guide/repair", "user-guide/structure", "user-guide/unfold"], "filenames": ["api\\cfg\\band_structure.rst", "api\\cfg\\band_structure_2d.rst", "api\\cfg\\dos.rst", "api\\cfg\\fermi_surface_2d.rst", "api\\cfg\\fermi_surface_3d.rst", "api\\cfg\\index.rst", "api\\cfg\\unfold.rst", "api\\core\\_autosummary\\pyprocar.core.BrillouinZone.rst", "api\\core\\_autosummary\\pyprocar.core.BrillouinZone.__init__.rst", "api\\core\\_autosummary\\pyprocar.core.BrillouinZone.wigner_seitz.rst", "api\\core\\_autosummary\\pyprocar.core.DensityOfStates.rst", "api\\core\\_autosummary\\pyprocar.core.DensityOfStates.__init__.rst", "api\\core\\_autosummary\\pyprocar.core.DensityOfStates.coupled_to_uncoupled_basis.rst", "api\\core\\_autosummary\\pyprocar.core.DensityOfStates.dos_sum.rst", "api\\core\\_autosummary\\pyprocar.core.DensityOfStates.get_current_basis.rst", "api\\core\\_autosummary\\pyprocar.core.DensityOfStates.is_non_collinear.rst", "api\\core\\_autosummary\\pyprocar.core.DensityOfStates.n_dos.rst", "api\\core\\_autosummary\\pyprocar.core.DensityOfStates.n_energies.rst", "api\\core\\_autosummary\\pyprocar.core.DensityOfStates.n_spins.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.__init__.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.bands_gradient.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.bands_gradient_mesh.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.bands_hessian.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.bands_hessian_mesh.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.bands_mesh.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.calculate_scalar_gradient.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.calculate_scalar_integral.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.create_nd_mesh.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.create_scaler_mesh.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.create_vector_mesh.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.ebs_ipr.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.ebs_ipr_atom.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.ebs_sum.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.fermi_speed.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.fermi_speed_mesh.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.fermi_velocity.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.fermi_velocity_mesh.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.fix_collinear_spin.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.harmonic_average_effective_mass.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.harmonic_average_effective_mass_mesh.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.ibz2fbz.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.index_mesh.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.interpolate_mesh_grid.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.is_non_collinear.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.kpoints_cartesian.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.kpoints_cartesian_mesh.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.kpoints_mesh.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.kpoints_reduced.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.mesh_to_array.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.n_kx.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.n_ky.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.n_kz.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.natoms.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.nbands.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.nkpoints.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.norbitals.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.nprincipals.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.nspins.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.plot_kpoints.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.projected_mesh.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.projected_phase_mesh.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.ravel_array.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.unfold.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.update_weights.rst", "api\\core\\_autosummary\\pyprocar.core.ElectronicBandStructure.weights_mesh.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface.__init__.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface.add_axes_labels.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface.add_legend.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface.find_energy.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface.plot.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface.savefig.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface.show.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface.spin_texture.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface3D.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface3D.__init__.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface3D.extend_surface.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface3D.project_atomic_projections.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface3D.project_fermi_speed.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface3D.project_fermi_velocity.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface3D.project_harmonic_effective_mass.rst", "api\\core\\_autosummary\\pyprocar.core.FermiSurface3D.project_spin_texture_atomic_projections.rst", "api\\core\\_autosummary\\pyprocar.core.Isosurface.rst", "api\\core\\_autosummary\\pyprocar.core.Isosurface.__init__.rst", "api\\core\\_autosummary\\pyprocar.core.Isosurface.dxyz.rst", "api\\core\\_autosummary\\pyprocar.core.Isosurface.nX.rst", "api\\core\\_autosummary\\pyprocar.core.Isosurface.nY.rst", "api\\core\\_autosummary\\pyprocar.core.Isosurface.nZ.rst", "api\\core\\_autosummary\\pyprocar.core.Isosurface.surface_boundaries.rst", "api\\core\\_autosummary\\pyprocar.core.KPath.rst", "api\\core\\_autosummary\\pyprocar.core.KPath.__init__.rst", "api\\core\\_autosummary\\pyprocar.core.KPath.get_kpoints_transformed.rst", "api\\core\\_autosummary\\pyprocar.core.KPath.get_optimized_kpoints_transformed.rst", "api\\core\\_autosummary\\pyprocar.core.KPath.kdistances.rst", "api\\core\\_autosummary\\pyprocar.core.KPath.nsegments.rst", "api\\core\\_autosummary\\pyprocar.core.KPath.tick_names.rst", "api\\core\\_autosummary\\pyprocar.core.KPath.tick_positions.rst", "api\\core\\_autosummary\\pyprocar.core.KPath.write_to_file.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.__init__.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.a.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.alpha.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.atomic_numbers.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.b.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.beta.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.c.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.cell_convex_hull.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.density.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.gamma.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.get_space_group_international.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.get_space_group_number.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.get_spglib_symmetry_dataset.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.get_wyckoff_positions.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.is_point_inside.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.lattice_corners.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.masses.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.natoms.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.nspecies.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.plot_cell_convex_hull.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.reciprocal_lattice.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.species.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.supercell.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.transform.rst", "api\\core\\_autosummary\\pyprocar.core.Structure.volume.rst", "api\\core\\_autosummary\\pyprocar.core.Surface.rst", "api\\core\\_autosummary\\pyprocar.core.Surface.__init__.rst", "api\\core\\_autosummary\\pyprocar.core.Surface.centers.rst", "api\\core\\_autosummary\\pyprocar.core.Surface.export.rst", "api\\core\\_autosummary\\pyprocar.core.Surface.faces_array.rst", "api\\core\\_autosummary\\pyprocar.core.Surface.set_color_with_cmap.rst", "api\\core\\_autosummary\\pyprocar.core.Surface.set_scalars.rst", "api\\core\\_autosummary\\pyprocar.core.Surface.set_vectors.rst", "api\\core\\brillouin_zone.rst", "api\\core\\dos.rst", "api\\core\\ebs.rst", "api\\core\\fermi2d.rst", "api\\core\\fermi3d.rst", "api\\core\\index.rst", "api\\core\\isosurface.rst", "api\\core\\kpath.rst", "api\\core\\structure.rst", "api\\core\\surface.rst", "api\\index.rst", "api\\io\\_autosummary\\pyprocar.io.abinit.AbinitKpoints.rst", "api\\io\\_autosummary\\pyprocar.io.abinit.AbinitKpoints.__init__.rst", "api\\io\\_autosummary\\pyprocar.io.abinit.AbinitProcar.rst", "api\\io\\_autosummary\\pyprocar.io.abinit.AbinitProcar.__init__.rst", "api\\io\\_autosummary\\pyprocar.io.abinit.Output.rst", "api\\io\\_autosummary\\pyprocar.io.abinit.Output.__init__.rst", "api\\io\\_autosummary\\pyprocar.io.bxsf.BxsfParser.rst", "api\\io\\_autosummary\\pyprocar.io.bxsf.BxsfParser.__init__.rst", "api\\io\\_autosummary\\pyprocar.io.bxsf.BxsfParser.parse_bxsf.rst", "api\\io\\_autosummary\\pyprocar.io.lobster.LobsterParser.rst", "api\\io\\_autosummary\\pyprocar.io.lobster.LobsterParser.__init__.rst", "api\\io\\_autosummary\\pyprocar.io.lobster.LobsterParser.dos.rst", "api\\io\\_autosummary\\pyprocar.io.lobster.LobsterParser.dos_parametric.rst", "api\\io\\_autosummary\\pyprocar.io.lobster.LobsterParser.dos_projected.rst", "api\\io\\_autosummary\\pyprocar.io.lobster.LobsterParser.dos_to_dict.rst", "api\\io\\_autosummary\\pyprocar.io.lobster.LobsterParser.dos_total.rst", "api\\io\\_autosummary\\pyprocar.io.lobster.LobsterParser.final_structure.rst", "api\\io\\_autosummary\\pyprocar.io.lobster.LobsterParser.initial_structure.rst", "api\\io\\_autosummary\\pyprocar.io.lobster.LobsterParser.parse_structure.rst", "api\\io\\_autosummary\\pyprocar.io.lobster.LobsterParser.species.rst", "api\\io\\_autosummary\\pyprocar.io.lobster.LobsterParser.structure.rst", "api\\io\\_autosummary\\pyprocar.io.lobster.LobsterParser.structures.rst", "api\\io\\_autosummary\\pyprocar.io.qe.QEParser.rst", "api\\io\\_autosummary\\pyprocar.io.qe.QEParser.__init__.rst", "api\\io\\_autosummary\\pyprocar.io.qe.QEParser.final_structure.rst", "api\\io\\_autosummary\\pyprocar.io.qe.QEParser.getKpointLabels.rst", "api\\io\\_autosummary\\pyprocar.io.qe.QEParser.initial_structure.rst", "api\\io\\_autosummary\\pyprocar.io.qe.QEParser.kpoints_cart.rst", "api\\io\\_autosummary\\pyprocar.io.qe.QEParser.species.rst", "api\\io\\_autosummary\\pyprocar.io.qe.QEParser.structure.rst", "api\\io\\_autosummary\\pyprocar.io.qe.QEParser.structures.rst", "api\\io\\_autosummary\\pyprocar.io.siesta.SiestaParser.rst", "api\\io\\_autosummary\\pyprocar.io.siesta.SiestaParser.__init__.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.Kpoints.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.Kpoints.__init__.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.Outcar.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.Outcar.__init__.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.Outcar.efermi.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.Outcar.get_symmetry_operations.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.Outcar.reciprocal_lattice.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.Outcar.rotations.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.Poscar.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.Poscar.__init__.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.Procar.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.Procar.__init__.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.Procar.kpoints_cartesian.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.Procar.kpoints_reduced.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.Procar.repair.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.Procar.symmetrize.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.__init__.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.bands.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.bands_projected.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.conv.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.convergence.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.convergence_electronic.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.convergence_ionic.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.dos.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.dos_projected.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.dos_to_dict.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.dos_total.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.energies.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.energy.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.fermi.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.final_structure.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.forces.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.get_general.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.get_params.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.get_scstep.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.get_set.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.get_structure.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.get_varray.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.incar.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.initial_structure.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.is_finished.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.iteration_data.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.kpoints.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.kpoints_list.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.last_energy.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.parse_vasprun.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.potcar_info.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.read.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.species.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.structure.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.structures.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.text_to_bool.rst", "api\\io\\_autosummary\\pyprocar.io.vasp.VaspXML.vasp_parameters.rst", "api\\io\\abinit.rst", "api\\io\\bxsf.rst", "api\\io\\index.rst", "api\\io\\lobster.rst", "api\\io\\qe.rst", "api\\io\\siesta.rst", "api\\io\\vasp.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.__init__.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.draw_fermi.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.grid.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.legend.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.plot_dos.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.plot_parametric.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.plot_parametric_line.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.plot_stack.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.plot_stack_orbitals.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.plot_stack_species.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.save.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.set_xlabel.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.set_xlim.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.set_xticks.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.set_ylabel.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.set_ylim.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.set_yticks.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.show.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.DOSPlot.update_config.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.__init__.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.draw_fermi.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.grid.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.legend.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.plot_atomic_levels.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.plot_bands.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.plot_parameteric.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.plot_parameteric_overlay.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.plot_scatter.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.save.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.set_colorbar_title.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.set_title.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.set_xlabel.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.set_xlim.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.set_xticks.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.set_ylabel.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.set_ylim.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.set_yticks.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.show.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.EBSPlot.update_config.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.ProcarPlot.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.ProcarPlot.__init__.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.ProcarPlot.atomicPlot.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.ProcarPlot.parametricPlot.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.ProcarPlot.plotBands.rst", "api\\plotter\\_autosummary\\pyprocar.plotter.ProcarPlot.scatterPlot.rst", "api\\plotter\\bandsplot.rst", "api\\plotter\\dosplot.rst", "api\\plotter\\index.rst", "api\\plotter\\procarplot.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.Poscar.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.Poscar.__init__.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.Poscar.add.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.Poscar.load_from_data.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.Poscar.parse.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.Poscar.remove.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.Poscar.sort.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.Poscar.write.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.Poscar.xyz.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.poscarDiff.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.poscar_modify.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.poscar_modify.__init__.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.poscar_modify.add.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.poscar_modify.change_elements.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.poscar_modify.pos_multiply.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.poscar_modify.pos_sum.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.poscar_modify.remove.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.poscar_modify.scale_lattice.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.poscar_modify.shift.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.poscar_modify.write.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.poscar_supercell.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.poscar_supercell.__init__.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.poscar_supercell.supercell.rst", "api\\pyposcar\\_autosummary\\pyprocar.pyposcar.poscar_supercell.write.rst", "api\\pyposcar\\index.rst", "api\\pyposcar\\poscar.rst", "api\\pyposcar\\poscarutils.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.FermiHandler.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.FermiHandler.__init__.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.FermiHandler.create_isovalue_gif.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.FermiHandler.plot_fermi_cross_section.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.FermiHandler.plot_fermi_cross_section_box_widget.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.FermiHandler.plot_fermi_isoslider.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.FermiHandler.plot_fermi_surface.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.FermiHandler.print_default_settings.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.bandgap.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.bandsdosplot.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.bandsplot.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.bandsplot_2d.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.cat.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.dosplot.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.fermi2D.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.fermi3D.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.generate2dkmesh.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.kpath.rst", "api\\scripts\\_autosummary\\pyprocar.scripts.repair.rst", "api\\scripts\\bandgap.rst", "api\\scripts\\bandsdosplot.rst", "api\\scripts\\bandsplot.rst", "api\\scripts\\bandsplot_2d.rst", "api\\scripts\\cat.rst", "api\\scripts\\dosplot.rst", "api\\scripts\\fermi2d.rst", "api\\scripts\\fermi3d.rst", "api\\scripts\\fermihandler.rst", "api\\scripts\\generate2dkmesh.rst", "api\\scripts\\index.rst", "api\\scripts\\kpath.rst", "api\\scripts\\repair.rst", "dftprep\\abinit.rst", "dftprep\\dftb+.rst", "dftprep\\elk.rst", "dftprep\\index.rst", "dftprep\\lobster.rst", "dftprep\\qe.rst", "dftprep\\siesta.rst", "dftprep\\vasp.rst", "examples\\00-band_structure\\index.rst", "examples\\00-band_structure\\plot_2d_bands.rst", "examples\\00-band_structure\\plot_atomic_levels.rst", "examples\\00-band_structure\\plot_autobands.rst", "examples\\00-band_structure\\plot_bandsplot_configurations.rst", "examples\\00-band_structure\\plot_colinear.rst", "examples\\00-band_structure\\plot_compare_bands.rst", "examples\\00-band_structure\\plot_ipr.rst", "examples\\00-band_structure\\plot_noncolinear_qe.rst", "examples\\00-band_structure\\plot_noncolinear_vasp.rst", "examples\\00-band_structure\\plot_spin_polarized.rst", "examples\\00-band_structure\\plot_unfolding.rst", "examples\\00-band_structure\\sg_execution_times.rst", "examples\\01-dos\\index.rst", "examples\\01-dos\\plot_colinear_dos.rst", "examples\\01-dos\\plot_dosplot_configurations.rst", "examples\\01-dos\\plot_noncolinear_dos_qe.rst", "examples\\01-dos\\plot_noncolinear_dos_vasp.rst", "examples\\01-dos\\plot_spin_polarized_dos.rst", "examples\\01-dos\\sg_execution_times.rst", "examples\\02-bands_dos\\index.rst", "examples\\02-bands_dos\\plot_bandsdosplot.rst", "examples\\02-bands_dos\\plot_bandsdosplot_configurations.rst", "examples\\02-bands_dos\\sg_execution_times.rst", "examples\\03-fermi2d\\index.rst", "examples\\03-fermi2d\\plot_fermi2d.rst", "examples\\03-fermi2d\\plot_fermi2d_configurations.rst", "examples\\03-fermi2d\\plot_fermi2d_spin_texture.rst", "examples\\03-fermi2d\\plot_rashba_spin_spliting.rst", "examples\\03-fermi2d\\sg_execution_times.rst", "examples\\04-fermi3d\\index.rst", "examples\\04-fermi3d\\plot_de_hass_van_alphen.rst", "examples\\04-fermi3d\\plot_fermi3d_configurations.rst", "examples\\04-fermi3d\\plot_fermi3d_cross_section.rst", "examples\\04-fermi3d\\plot_fermi3d_isoslider.rst", "examples\\04-fermi3d\\plot_fermi3d_isovalue_gif.rst", "examples\\04-fermi3d\\plot_fermi3d_plain.rst", "examples\\04-fermi3d\\plot_fermi3d_spin-polarized.rst", "examples\\04-fermi3d\\plot_fermi3d_spin_texture.rst", "examples\\04-fermi3d\\sg_execution_times.rst", "examples\\05-other\\index.rst", "examples\\05-other\\plot_2dkmesh_generation.rst", "examples\\05-other\\plot_bandgap.rst", "examples\\05-other\\plot_ebs.rst", "examples\\05-other\\plot_kpath_generation.rst", "examples\\05-other\\sg_execution_times.rst", "examples\\06-PyPoscar\\index.rst", "examples\\06-PyPoscar\\plot_clusters_pyposcar.rst", "examples\\06-PyPoscar\\plot_finding_defects_pyposcar.rst", "examples\\06-PyPoscar\\plot_rdf_cutoff_pyposcar.rst", "examples\\06-PyPoscar\\plot_subsitution_pyposcar.rst", "examples\\06-PyPoscar\\plot_utils_pyposcar.rst", "examples\\06-PyPoscar\\sg_execution_times.rst", "examples\\index.rst", "getting-started\\authors.rst", "getting-started\\index.rst", "getting-started\\installation.rst", "getting-started\\why.rst", "index.rst", "user-guide\\atomic_projections.rst", "user-guide\\bands.rst", "user-guide\\cat.rst", "user-guide\\comparebands.rst", "user-guide\\dos.rst", "user-guide\\ebs.rst", "user-guide\\fermi2d.rst", "user-guide\\fermi3d.rst", "user-guide\\filter.rst", "user-guide\\index.rst", "user-guide\\kpath.rst", "user-guide\\repair.rst", "user-guide\\structure.rst", "user-guide\\unfold.rst"], "titles": ["band structure plotting Options", "band structure 2d plotting Options", "dos plotting Options", "fermi surface 2d plotting Options", "fermi surface 3d plotting Options", "Configuration Files", "unfold plotting Options", "pyprocar.core.BrillouinZone", "__init__", "wigner_seitz", "pyprocar.core.DensityOfStates", "__init__", "coupled_to_uncoupled_basis", "dos_sum", "get_current_basis", "is_non_collinear", "n_dos", "n_energies", "n_spins", "pyprocar.core.ElectronicBandStructure", "__init__", "bands_gradient", "bands_gradient_mesh", "bands_hessian", "bands_hessian_mesh", "bands_mesh", "calculate_scalar_gradient", "calculate_scalar_integral", "create_nd_mesh", "create_scaler_mesh", "create_vector_mesh", "ebs_ipr", "ebs_ipr_atom", "ebs_sum", "fermi_speed", "fermi_speed_mesh", "fermi_velocity", "fermi_velocity_mesh", "fix_collinear_spin", "harmonic_average_effective_mass", "harmonic_average_effective_mass_mesh", "ibz2fbz", "index_mesh", "interpolate_mesh_grid", "is_non_collinear", "kpoints_cartesian", "kpoints_cartesian_mesh", "kpoints_mesh", "kpoints_reduced", "mesh_to_array", "n_kx", "n_ky", "n_kz", "natoms", "nbands", "nkpoints", "norbitals", "nprincipals", "nspins", "plot_kpoints", "projected_mesh", "projected_phase_mesh", "ravel_array", "unfold", "update_weights", "weights_mesh", "pyprocar.core.FermiSurface", "__init__", "add_axes_labels", "add_legend", "find_energy", "plot", "savefig", "show", "spin_texture", "pyprocar.core.FermiSurface3D", "__init__", "extend_surface", "project_atomic_projections", "project_fermi_speed", "project_fermi_velocity", "project_harmonic_effective_mass", "project_spin_texture_atomic_projections", "pyprocar.core.Isosurface", "__init__", "dxyz", "nX", "nY", "nZ", "surface_boundaries", "pyprocar.core.KPath", "__init__", "get_kpoints_transformed", "get_optimized_kpoints_transformed", "kdistances", "nsegments", "tick_names", "tick_positions", "write_to_file", "pyprocar.core.Structure", "__init__", "a", "alpha", "atomic_numbers", "b", "beta", "c", "cell_convex_hull", "density", "gamma", "get_space_group_international", "get_space_group_number", "get_spglib_symmetry_dataset", "get_wyckoff_positions", "is_point_inside", "lattice_corners", "masses", "natoms", "nspecies", "plot_cell_convex_hull", "reciprocal_lattice", "species", "supercell", "transform", "volume", "pyprocar.core.Surface", "__init__", "centers", "export", "faces_array", "set_color_with_cmap", "set_scalars", "set_vectors", "BrillouinZone", "DensityOfStates", "ElectronicBandStructure", "FermiSurface", "FermiSurface3D", "Core API", "Isosurface", "KPath", "Structure", "Surface", "API Reference", "pyprocar.io.abinit.AbinitKpoints", "__init__", "pyprocar.io.abinit.AbinitProcar", "__init__", "pyprocar.io.abinit.Output", "__init__", "pyprocar.io.bxsf.BxsfParser", "__init__", "parse_bxsf", "pyprocar.io.lobster.LobsterParser", "__init__", "dos", "dos_parametric", "dos_projected", "dos_to_dict", "dos_total", "final_structure", "initial_structure", "parse_structure", "species", "structure", "structures", "pyprocar.io.qe.QEParser", "__init__", "final_structure", "getKpointLabels", "initial_structure", "kpoints_cart", "species", "structure", "structures", "pyprocar.io.siesta.SiestaParser", "__init__", "pyprocar.io.vasp.Kpoints", "__init__", "pyprocar.io.vasp.Outcar", "__init__", "efermi", "get_symmetry_operations", "reciprocal_lattice", "rotations", "pyprocar.io.vasp.Poscar", "__init__", "pyprocar.io.vasp.Procar", "__init__", "kpoints_cartesian", "kpoints_reduced", "repair", "symmetrize", "pyprocar.io.vasp.VaspXML", "__init__", "bands", "bands_projected", "conv", "convergence", "convergence_electronic", "convergence_ionic", "dos", "dos_projected", "dos_to_dict", "dos_total", "energies", "energy", "fermi", "final_structure", "forces", "get_general", "get_params", "get_scstep", "get_set", "get_structure", "get_varray", "incar", "initial_structure", "is_finished", "iteration_data", "kpoints", "kpoints_list", "last_energy", "parse_vasprun", "potcar_info", "read", "species", "structure", "structures", "text_to_bool", "vasp_parameters", "AbinitParser", "BxsfParser", "IO API", "LobsterParser", "QEParser", "SiestaParser", "VaspParser", "pyprocar.plotter.DOSPlot", "__init__", "draw_fermi", "grid", "legend", "plot_dos", "plot_parametric", "plot_parametric_line", "plot_stack", "plot_stack_orbitals", "plot_stack_species", "save", "set_xlabel", "set_xlim", "set_xticks", "set_ylabel", "set_ylim", "set_yticks", "show", "update_config", "pyprocar.plotter.EBSPlot", "__init__", "draw_fermi", "grid", "legend", "plot_atomic_levels", "plot_bands", "plot_parameteric", "plot_parameteric_overlay", "plot_scatter", "save", "set_colorbar_title", "set_title", "set_xlabel", "set_xlim", "set_xticks", "set_ylabel", "set_ylim", "set_yticks", "show", "update_config", "pyprocar.plotter.ProcarPlot", "__init__", "atomicPlot", "parametricPlot", "plotBands", "scatterPlot", "EBSPlot", "DosPlot", "Plotter API", "ProcarPlot", "pyprocar.pyposcar.Poscar", "__init__", "add", "load_from_data", "parse", "remove", "sort", "write", "xyz", "poscarDiff", "pyprocar.pyposcar.poscar_modify", "__init__", "add", "change_elements", "pos_multiply", "pos_sum", "remove", "scale_lattice", "shift", "write", "pyprocar.pyposcar.poscar_supercell", "__init__", "supercell", "write", "PyPoscar API", "Poscar", "poscarUtils", "pyprocar.scripts.FermiHandler", "__init__", "create_isovalue_gif", "plot_fermi_cross_section", "plot_fermi_cross_section_box_widget", "plot_fermi_isoslider", "plot_fermi_surface", "print_default_settings", "bandgap", "bandsdosplot", "bandsplot", "bandsplot_2d", "cat", "dosplot", "fermi2D", "fermi3D", "generate2dkmesh", "kpath", "repair", "bandgap", "bandsdosplot", "bandsplot", "bandsplot_2d", "cat", "dosplot", "fermi2D", "fermi3D", "FermiHandler", "generate2dkmesh", "Scripts API", "kpath", "reapir", "Abinit Perperation", "DFTB+ Preparation", "Elk Perperation", "DFT Prep", "Lobster Perperation", "Quantum Espresso Preparation", "Siesta Perperation", "VASP Preparation", "Band Structure", "Plotting 2D band structure", "Plotting Atomic Levels", "Autobands plotting", "Plotting with Configurations in pyprocar", "Plotting band structure", "Comparing band structures", "Plotting Inverse participation ratio", "Plotting non colinear band structures in Quantum Espresso", "Plotting non colinear band structures in VASP", "Plotting spin polarized band structures", "Unfolding Band Structure", "Computation times", "Density of States", "Plotting density of states", "Plotting with Configurations in pyprocar", "Plotting non colinear dos in Quantum Espresso", "Plotting non colinear dos in VASP", "Plotting spin-polarized density of states", "Computation times", "Bands and Dos plot", "Plotting bandsdosplot", "Plotting bandsdosplot", "Computation times", "Fermi 2D", "Plotting fermi2d", "Plotting with Configurations in pyprocar", "Plotting fermi2d noncolinear", "Plotting rashba spin splitting", "Computation times", "Fermi 3D", "Showing how to get van alphen fequencies from the fermi surface", "Plotting with Configurations in pyprocar", "Plotting fermi3d cross_section", "Plotting fermi3d isoslider", "Plotting fermi3d isovalue_gif", "Plotting fermi3d plain", "Plotting fermi3d spin-polarized", "Plotting fermi3d spin_texture", "Computation times", "Other", "Example of kmesh_generator", "Example of finding the bandgap", "Example of finding the bandgap", "Example of kpath_generator", "Computation times", "PyPoscar", "Visualizing Clusters in Bi2Se3 Slab", "Finding defects in a POSCAR file", "Analyzing Radial Distribution Functions (RDF)", "Substituting Atoms in a POSCAR File", "Modifying a POSCAR File: Scaling, Supercells, and Defects", "Computation times", "Examples", "Authors & Citation", "Getting started", "Installation", "Why PyProcar?", "PyProcar", "Atomic Projections", "Band structure", "Concatenating multiple calculations", "Compare bands", "Density of States", "ElectronicBandStructure", "2D spin-texture", "3D Fermi surface", "Filtering data", "User Guide", "K Path", "Repair", "Structure", "Band unfolding"], "terms": {"descript": [0, 1, 2, 3, 4, 5, 6, 83, 89, 216, 360, 371, 382, 388, 419], "The": [0, 1, 2, 3, 4, 5, 6, 10, 13, 16, 17, 18, 19, 26, 31, 32, 33, 41, 43, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 63, 66, 70, 71, 74, 75, 83, 86, 87, 88, 91, 92, 93, 95, 96, 97, 101, 102, 104, 105, 106, 109, 110, 111, 113, 114, 120, 122, 123, 125, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 139, 140, 141, 142, 150, 153, 159, 162, 166, 176, 177, 179, 180, 184, 185, 187, 189, 190, 192, 193, 195, 196, 201, 203, 231, 232, 234, 235, 236, 237, 238, 240, 242, 243, 244, 249, 250, 251, 253, 254, 258, 260, 263, 265, 266, 267, 276, 285, 286, 289, 290, 297, 298, 305, 307, 308, 311, 314, 315, 317, 318, 319, 320, 321, 322, 324, 325, 326, 327, 328, 329, 330, 331, 332, 334, 335, 336, 337, 338, 339, 340, 342, 343, 344, 345, 346, 347, 349, 352, 353, 355, 358, 359, 360, 363, 366, 370, 371, 374, 377, 378, 382, 387, 388, 398, 399, 400, 403, 404, 405, 407, 410, 411, 412, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428], "line": [0, 2, 3, 4, 6, 7, 240, 245, 260, 297, 360, 363, 366, 371, 374, 378, 382, 388, 389, 400, 405, 410, 412, 422, 424, 428], "valu": [0, 1, 2, 3, 4, 6, 16, 17, 38, 75, 83, 130, 132, 135, 137, 138, 139, 179, 192, 246, 298, 326, 327, 329, 330, 331, 332, 359, 360, 371, 382, 383, 388, 391, 405, 416, 417, 419, 421, 422], "blue": [0, 2, 3, 6, 240, 243, 283, 331, 360, 363, 371, 381, 382, 383, 393, 397, 399, 400, 416, 422, 428], "red": [0, 2, 3, 6, 331, 360, 363, 371, 378, 382, 383, 393, 400, 422], "black": [0, 1, 2, 4, 6, 273, 360, 371, 388, 403, 404, 405, 406, 407, 418], "colorbar": [0, 1, 2, 4, 360, 371, 388], "atom": [0, 2, 13, 32, 33, 53, 74, 78, 80, 81, 82, 99, 100, 103, 116, 117, 138, 141, 156, 157, 163, 166, 172, 179, 244, 245, 246, 247, 269, 289, 290, 291, 292, 294, 295, 298, 299, 301, 302, 305, 318, 319, 320, 321, 322, 325, 326, 327, 329, 330, 331, 345, 356, 357, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 388, 392, 393, 399, 402, 403, 404, 405, 407, 408, 409, 413, 414, 419, 420, 421, 422, 424, 427, 428], "orbit": [0, 1, 2, 4, 10, 12, 13, 14, 33, 56, 74, 156, 244, 245, 246, 247, 248, 269, 318, 319, 320, 321, 322, 325, 326, 327, 329, 330, 331, 357, 359, 360, 362, 364, 365, 366, 370, 371, 372, 373, 374, 378, 381, 382, 383, 384, 388, 392, 393, 399, 413, 414, 418, 419, 420, 421, 422, 424, 428], "project": [0, 1, 2, 3, 4, 10, 11, 12, 19, 20, 31, 32, 33, 41, 60, 61, 66, 74, 75, 78, 80, 81, 82, 134, 135, 136, 138, 156, 157, 158, 166, 192, 196, 202, 203, 269, 326, 327, 329, 331, 349, 353, 355, 358, 360, 361, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 381, 382, 388, 393, 410, 413, 414, 417, 418, 419, 420, 422, 423, 424], "font": [0, 1, 4, 360, 371, 388], "size": [0, 1, 2, 3, 4, 6, 59, 63, 66, 74, 93, 131, 283, 284, 292, 302, 311, 325, 331, 358, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 382, 388, 389, 400, 407, 422, 423, 428], "15": [0, 2, 331, 360, 364, 367, 371, 372, 383, 403, 404, 410, 415, 422, 428], "pad": [0, 2, 75, 83, 84, 360, 371], "20": [0, 2, 349, 357, 360, 371, 382, 383, 384, 385, 397, 400, 403, 404, 407, 410], "tick": [0, 2, 91, 96, 97, 252, 255, 273, 276, 282, 283, 284, 360, 371, 425], "10": [0, 2, 3, 329, 331, 349, 360, 364, 371, 372, 378, 382, 383, 387, 394, 395, 399, 400, 403, 404, 410, 415, 422, 423, 424], "colormap": [0, 1, 2, 3, 4, 6, 130, 331, 360, 371, 378, 382, 388, 418, 422], "us": [0, 1, 2, 3, 4, 5, 6, 7, 38, 63, 66, 75, 83, 89, 125, 128, 130, 131, 133, 134, 135, 136, 137, 138, 139, 140, 142, 143, 150, 157, 166, 176, 179, 192, 202, 216, 220, 221, 224, 230, 231, 232, 233, 234, 235, 236, 237, 265, 281, 285, 286, 287, 289, 290, 293, 295, 314, 315, 317, 325, 326, 329, 330, 331, 335, 336, 337, 338, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 352, 353, 355, 357, 358, 359, 360, 363, 366, 367, 371, 374, 378, 381, 382, 383, 384, 387, 388, 389, 397, 399, 400, 403, 404, 405, 406, 407, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428], "jet": [0, 1, 2, 3, 4, 6, 66, 282, 331, 360, 371, 382, 388, 393, 416, 418, 422], "scale": [0, 1, 2, 3, 4, 6, 289, 299, 303, 306, 359, 360, 371, 382, 388, 399, 402, 408, 409], "bar": [0, 1, 2, 3, 4, 6, 269, 325, 331, 360, 371, 382, 388, 422], "none": [0, 1, 2, 3, 4, 6, 7, 8, 10, 11, 12, 13, 19, 20, 33, 59, 63, 66, 67, 70, 74, 77, 83, 84, 90, 91, 99, 100, 114, 125, 126, 128, 130, 146, 147, 148, 149, 153, 154, 156, 162, 185, 186, 187, 188, 192, 193, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 258, 259, 262, 263, 264, 265, 266, 267, 269, 272, 273, 275, 276, 279, 280, 281, 282, 283, 284, 290, 291, 293, 318, 319, 320, 321, 322, 324, 325, 326, 327, 328, 329, 330, 331, 333, 360, 371, 381, 382, 383, 384, 387, 388, 399, 410, 416, 417, 421, 422, 423, 428], "fermi": [0, 1, 2, 5, 6, 19, 34, 35, 37, 66, 71, 74, 75, 76, 79, 135, 136, 137, 138, 143, 148, 162, 181, 187, 240, 260, 317, 318, 319, 320, 321, 322, 324, 325, 326, 327, 329, 330, 331, 341, 345, 352, 357, 360, 363, 371, 378, 381, 382, 383, 384, 388, 389, 390, 391, 392, 393, 394, 395, 397, 410, 413, 414, 415, 416, 420, 421, 423, 424, 428], "dot": [0, 2, 6, 240, 360, 371, 378, 382, 403, 404, 405, 406, 407], "1": [0, 1, 2, 3, 4, 6, 10, 11, 12, 13, 19, 33, 65, 75, 76, 83, 84, 89, 123, 125, 156, 162, 187, 188, 193, 194, 240, 244, 245, 247, 248, 282, 289, 305, 307, 319, 320, 325, 326, 327, 328, 329, 330, 331, 333, 349, 352, 353, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 374, 377, 378, 381, 382, 383, 384, 388, 389, 390, 391, 393, 394, 397, 398, 399, 400, 403, 404, 405, 406, 407, 410, 417, 421, 422, 423, 424, 428], "If": [0, 2, 6, 70, 179, 180, 238, 258, 289, 293, 298, 307, 328, 329, 331, 349, 355, 360, 371, 389, 410, 411, 416, 417, 419, 422, 423], "true": [0, 1, 2, 3, 4, 6, 13, 33, 38, 59, 90, 91, 144, 145, 177, 178, 192, 218, 246, 258, 259, 282, 291, 296, 301, 302, 303, 304, 305, 307, 308, 312, 316, 317, 319, 320, 321, 322, 324, 325, 326, 327, 329, 331, 333, 350, 352, 353, 355, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 397, 399, 400, 403, 404, 405, 406, 407, 416, 417, 419, 421, 422, 426, 428], "shown": [0, 2, 6, 329, 360, 371], "fals": [0, 1, 2, 3, 4, 6, 19, 38, 59, 93, 289, 290, 291, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 312, 316, 317, 318, 319, 320, 321, 322, 325, 326, 327, 328, 329, 330, 331, 353, 357, 360, 362, 371, 381, 382, 387, 388, 389, 390, 391, 392, 393, 394, 399, 403, 404, 406, 407, 416, 417, 418, 421, 422, 423, 428], "which": [0, 2, 6, 70, 83, 129, 156, 329, 330, 331, 345, 353, 355, 358, 359, 360, 363, 366, 371, 374, 393, 410, 415, 416, 420, 421, 422, 425, 428], "axi": [0, 1, 2, 4, 6, 71, 307, 329, 360, 371, 388, 421], "both": [0, 2, 6, 298, 329, 359, 360, 363, 367, 371, 378, 410, 413, 414, 416, 419, 428], "should": [0, 1, 2, 4, 6, 10, 33, 93, 131, 191, 211, 303, 304, 306, 308, 328, 329, 349, 360, 371, 388, 398, 410, 415, 416, 417, 421, 423, 428], "drawn": [0, 2, 6, 360, 371], "grei": [0, 2, 6, 360, 371, 405], "solid": [0, 2, 3, 6, 83, 360, 371, 382], "draw": [0, 2, 6, 240, 260, 360, 371], "major": [0, 2, 6, 276, 360, 363, 371, 410], "minor": [0, 2, 6, 276, 360, 371], "uparrow": [0, 2, 6, 360, 371, 419, 424], "downarrow": [0, 2, 6, 360, 371, 419, 424], "dash": [0, 2, 3, 6, 360, 371, 382], "0": [0, 1, 2, 3, 4, 6, 10, 12, 13, 59, 75, 76, 83, 89, 123, 125, 156, 191, 193, 194, 260, 283, 289, 294, 298, 302, 305, 307, 319, 320, 329, 330, 331, 333, 349, 350, 352, 353, 355, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 370, 371, 372, 373, 374, 375, 377, 378, 379, 381, 382, 383, 385, 388, 389, 390, 391, 392, 393, 394, 395, 397, 398, 399, 400, 401, 403, 404, 405, 406, 407, 408, 410, 415, 416, 419, 421, 422, 423, 424, 425, 426, 428], "style": [0, 1, 2, 4, 6, 240, 360, 366, 371, 374, 388], "point": [0, 1, 2, 4, 6, 10, 41, 42, 55, 57, 59, 83, 85, 86, 87, 88, 91, 114, 136, 138, 139, 144, 184, 191, 263, 265, 266, 267, 281, 325, 331, 332, 357, 358, 359, 360, 363, 371, 378, 382, 388, 397, 400, 403, 404, 405, 406, 407, 413, 414, 418, 420, 421, 422, 424, 428], "o": [0, 2, 6, 283, 284, 329, 331, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 397, 398, 399, 400, 403, 404, 405, 406, 407, 415, 416, 419, 422], "v": [0, 2, 6, 83, 84, 329, 331, 360, 371, 378, 415, 416, 419, 422], "d": [0, 2, 6, 10, 12, 21, 22, 23, 24, 36, 37, 329, 331, 360, 361, 371, 410, 415, 416, 418, 419, 422], "2": [0, 1, 2, 3, 6, 10, 12, 13, 32, 43, 75, 83, 89, 156, 329, 331, 352, 353, 355, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 387, 388, 389, 390, 391, 392, 393, 403, 404, 405, 406, 407, 410, 421, 422, 423, 424, 428], "file": [0, 2, 6, 98, 146, 148, 150, 152, 153, 162, 166, 169, 176, 177, 179, 180, 181, 184, 185, 187, 193, 231, 232, 234, 235, 236, 237, 268, 289, 290, 293, 296, 297, 298, 308, 312, 314, 315, 317, 324, 325, 328, 329, 331, 333, 334, 339, 345, 347, 348, 349, 350, 352, 353, 355, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 370, 371, 372, 373, 374, 375, 377, 378, 379, 381, 382, 383, 384, 385, 387, 388, 389, 390, 391, 392, 393, 394, 395, 397, 400, 401, 402, 403, 408, 409, 410, 413, 414, 415, 416, 417, 419, 422, 423, 424, 426, 428], "name": [0, 2, 6, 96, 131, 132, 153, 162, 166, 250, 252, 253, 255, 268, 271, 273, 274, 291, 296, 297, 308, 312, 317, 324, 325, 326, 327, 331, 360, 371, 410, 415, 416, 422, 423, 428], "save": [0, 2, 3, 6, 72, 166, 289, 312, 325, 326, 327, 329, 330, 331, 353, 360, 371, 381, 382, 383, 384, 404, 407, 416, 418, 421, 422, 428], "figur": [0, 2, 3, 6, 329, 345, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 416, 418, 428], "null": [0, 2, 6, 360, 371], "displai": [0, 2, 6, 358, 360, 371, 406, 410, 418], "weight": [0, 2, 6, 19, 20, 63, 64, 65, 135, 138, 221, 263, 265, 266, 267, 352, 360, 371, 420, 423, 424, 428], "width": [0, 2, 6, 263, 265, 267, 360, 371, 400, 422, 428], "height": [0, 2, 6, 360, 371], "inch": [0, 2, 6, 360, 371, 378, 382], "9": [0, 2, 6, 282, 283, 348, 358, 360, 363, 364, 371, 372, 382, 383, 384, 389, 390, 391, 394, 399, 403, 415, 424], "6": [0, 1, 2, 4, 6, 10, 13, 156, 329, 331, 350, 357, 358, 360, 361, 362, 365, 366, 367, 370, 371, 373, 374, 377, 378, 381, 382, 383, 384, 388, 389, 390, 391, 392, 393, 394, 397, 400, 403, 406, 410, 415, 416, 418, 422, 424, 425], "resolut": [0, 2, 6, 360, 363, 371], "per": [0, 1, 2, 4, 6, 157, 290, 295, 360, 371, 378, 382, 388], "": [0, 2, 6, 10, 12, 13, 143, 156, 294, 302, 329, 331, 348, 357, 358, 359, 360, 371, 387, 399, 400, 403, 404, 405, 407, 410, 415, 419, 421, 422, 423, 424], "control": [1, 3, 4, 5, 75, 331, 352, 363, 367, 382, 388, 410, 422], "surfac": [1, 5, 7, 66, 71, 74, 75, 77, 78, 79, 80, 81, 82, 83, 89, 126, 127, 128, 129, 130, 131, 132, 136, 137, 138, 139, 240, 317, 318, 319, 320, 321, 322, 330, 331, 341, 345, 359, 382, 384, 386, 388, 389, 390, 391, 392, 393, 394, 395, 397, 409, 410, 413, 414, 415, 416, 421, 424], "color": [1, 4, 59, 66, 74, 125, 130, 131, 240, 243, 263, 265, 267, 269, 273, 283, 325, 330, 331, 358, 359, 360, 362, 366, 371, 374, 378, 381, 382, 388, 397, 399, 400, 403, 404, 405, 406, 407, 415, 416, 418, 419, 421, 422, 428], "spin": [1, 2, 3, 4, 10, 13, 18, 33, 38, 58, 66, 74, 80, 82, 136, 150, 156, 159, 243, 244, 245, 246, 247, 248, 258, 259, 263, 265, 266, 267, 318, 319, 320, 321, 322, 325, 326, 327, 328, 329, 330, 331, 345, 350, 353, 355, 356, 358, 359, 360, 361, 362, 363, 364, 365, 367, 368, 369, 370, 371, 372, 373, 375, 377, 378, 380, 381, 382, 385, 386, 387, 388, 390, 391, 392, 395, 397, 398, 399, 400, 409, 410, 413, 414, 417, 419, 420, 422, 424, 428], "polar": [1, 356, 357, 358, 359, 360, 361, 362, 363, 367, 368, 369, 370, 371, 375, 377, 378, 381, 386, 387, 388, 390, 391, 392, 395, 398, 399, 400, 409, 415, 416, 417, 424, 428], "opac": [1, 4, 360, 371, 388], "how": [1, 4, 59, 91, 143, 331, 353, 358, 360, 371, 378, 382, 386, 388, 395, 404, 406, 409, 410, 422], "mani": [1, 4, 91, 331, 388, 410, 415, 416, 422, 423], "zone": [1, 4, 7, 59, 83, 133, 138, 331, 388, 417, 420, 421, 422, 428], "gener": [1, 4, 7, 83, 133, 137, 138, 139, 142, 146, 309, 313, 315, 328, 329, 330, 331, 332, 344, 345, 346, 348, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 397, 398, 399, 400, 403, 404, 405, 406, 407, 409, 410, 413, 414, 417, 419, 421, 422, 423, 424], "thi": [1, 4, 5, 7, 10, 12, 15, 19, 32, 38, 43, 44, 59, 63, 66, 71, 74, 75, 83, 89, 125, 128, 137, 138, 139, 142, 143, 144, 146, 148, 150, 152, 156, 166, 169, 197, 210, 211, 212, 213, 218, 224, 229, 230, 233, 287, 293, 295, 302, 308, 310, 311, 313, 317, 325, 327, 328, 329, 330, 331, 333, 334, 345, 348, 349, 351, 353, 355, 357, 358, 359, 360, 363, 367, 371, 378, 382, 383, 387, 388, 389, 390, 391, 392, 393, 394, 397, 399, 400, 403, 404, 405, 406, 407, 410, 411, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428], "i": [1, 4, 5, 13, 15, 19, 21, 22, 23, 24, 25, 32, 34, 35, 36, 37, 38, 39, 40, 44, 60, 61, 63, 65, 66, 74, 75, 83, 114, 123, 125, 128, 130, 133, 134, 135, 136, 137, 138, 139, 140, 142, 143, 150, 152, 166, 176, 191, 211, 218, 231, 232, 233, 234, 235, 236, 237, 238, 243, 258, 265, 285, 286, 287, 288, 289, 290, 291, 296, 297, 298, 300, 301, 302, 303, 304, 305, 306, 307, 308, 310, 311, 312, 313, 314, 315, 317, 325, 327, 328, 329, 330, 331, 335, 336, 337, 338, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 351, 352, 353, 355, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 397, 399, 400, 403, 404, 405, 406, 407, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 426, 428], "list": [1, 2, 4, 7, 8, 13, 19, 20, 21, 23, 31, 32, 33, 34, 36, 39, 42, 49, 66, 67, 71, 74, 75, 76, 77, 83, 84, 85, 89, 91, 96, 97, 99, 103, 116, 121, 125, 127, 129, 131, 138, 141, 150, 152, 156, 157, 160, 161, 163, 164, 165, 168, 170, 172, 173, 174, 205, 219, 228, 242, 243, 244, 245, 246, 247, 248, 251, 252, 254, 255, 258, 259, 262, 263, 265, 266, 267, 272, 273, 275, 276, 290, 292, 294, 299, 301, 302, 303, 304, 305, 307, 318, 319, 320, 321, 322, 325, 326, 327, 328, 329, 330, 331, 333, 352, 353, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 403, 404, 406, 407, 410, 416, 417, 419, 420, 421, 422, 423], "direct": [1, 4, 50, 51, 52, 75, 77, 83, 85, 86, 87, 88, 289, 290, 291, 292, 296, 301, 303, 304, 306, 307, 308, 329, 331, 332, 388, 397, 406, 410, 415, 416, 417, 420, 421, 422, 423], "ex": [1, 4, 388], "high": [1, 4, 75, 299, 300, 331, 358, 359, 363, 388, 416, 417, 422], "algorithmus": [1, 4, 388], "either": [1, 4, 388, 410], "normal": [1, 4, 75, 76, 125, 130, 327, 331, 388, 410, 421, 422], "interpol": [1, 4, 10, 43, 71, 74, 83, 89, 137, 138, 153, 162, 187, 193, 326, 327, 331, 388, 416, 422], "factor": [1, 4, 10, 75, 83, 153, 162, 187, 193, 289, 299, 303, 304, 306, 327, 331, 388, 399, 407, 422, 428], "wirefram": [1, 4, 388, 422], "brillouin": [1, 4, 7, 59, 83, 133, 138, 331, 388, 417, 421, 422, 428], "3": [1, 3, 4, 7, 10, 12, 13, 19, 21, 22, 23, 24, 26, 36, 37, 46, 47, 63, 83, 99, 125, 127, 156, 291, 292, 303, 304, 329, 331, 352, 357, 358, 360, 361, 363, 366, 378, 381, 382, 383, 384, 387, 388, 392, 393, 399, 400, 403, 404, 406, 407, 410, 412, 421, 422, 423, 424, 428], "5": [1, 4, 10, 12, 13, 83, 110, 111, 112, 113, 125, 156, 192, 329, 331, 349, 350, 353, 355, 357, 360, 361, 362, 363, 365, 366, 367, 370, 371, 373, 374, 378, 381, 382, 383, 387, 388, 389, 390, 391, 392, 393, 394, 397, 403, 404, 405, 406, 407, 410, 415, 416, 418, 422, 424, 425, 428], "linewidth": [1, 4, 240, 282, 360, 371, 382, 388], "textur": [1, 3, 4, 74, 80, 82, 136, 318, 319, 320, 321, 322, 331, 382, 384, 388, 397, 410, 415, 416, 422, 424], "ax": [1, 3, 4, 238, 239, 258, 259, 281, 282, 283, 284, 325, 326, 327, 329, 358, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 382, 388, 405, 416, 418, 428], "limit": [1, 272, 275, 329, 358, 360, 371, 378, 382, 388, 410, 416], "energi": [1, 2, 4, 10, 11, 17, 19, 66, 70, 71, 74, 75, 134, 135, 136, 138, 148, 159, 162, 181, 187, 207, 222, 260, 263, 265, 281, 318, 321, 324, 325, 326, 327, 329, 330, 331, 349, 355, 358, 359, 363, 370, 371, 372, 373, 374, 381, 382, 383, 388, 390, 391, 393, 413, 414, 416, 420, 421, 422, 424, 428], "kx": [1, 4, 50, 51, 388], "label": [1, 2, 3, 4, 19, 20, 68, 69, 91, 242, 250, 253, 262, 271, 274, 352, 353, 355, 360, 363, 367, 371, 382, 388, 400, 403, 404, 405, 406, 407, 416, 419, 420, 424, 428], "ky": [1, 4, 52, 388], "kz": [1, 4, 388], "linewdith": [1, 4, 388], "th": [1, 4, 73, 388, 410], "scalar": [1, 4, 26, 27, 125, 126, 131, 137, 138, 139, 388, 399, 403, 404, 406, 407], "titl": [1, 4, 156, 269, 270, 325, 327, 359, 360, 371, 388, 399, 403, 404, 405, 406, 407, 410, 419, 421, 422, 428], "ital": [1, 4, 388], "bold": [1, 4, 388], "4": [1, 4, 10, 12, 13, 32, 59, 156, 329, 331, 357, 358, 360, 361, 362, 363, 365, 366, 370, 371, 373, 374, 378, 381, 382, 383, 387, 388, 389, 392, 393, 394, 399, 403, 406, 407, 410, 415, 418, 422, 424, 428], "x": [1, 2, 3, 4, 74, 83, 85, 86, 132, 250, 251, 271, 272, 273, 301, 303, 307, 329, 332, 348, 350, 352, 353, 371, 382, 383, 384, 388, 397, 405, 412, 416, 421, 422, 423, 424], "posit": [1, 4, 89, 97, 113, 252, 255, 273, 289, 291, 292, 299, 301, 303, 304, 307, 312, 331, 388, 389, 403, 404, 405, 406, 407, 422], "01": [1, 4, 298, 330, 368, 375, 385, 388, 395, 407, 421], "y": [1, 2, 3, 4, 74, 83, 85, 87, 132, 253, 254, 274, 275, 276, 301, 303, 307, 329, 332, 371, 382, 383, 384, 388, 397, 400, 405, 406, 421, 422, 423, 424], "outlin": [1, 4, 388], "white": [1, 4, 331, 388, 422, 426], "background": [1, 4, 331, 388, 422], "36": [1, 4, 388, 400, 403, 404, 406, 407, 428], "number": [1, 4, 10, 13, 16, 17, 18, 33, 50, 51, 52, 53, 54, 55, 56, 57, 58, 75, 86, 87, 88, 95, 103, 110, 111, 117, 118, 131, 163, 172, 244, 245, 247, 248, 290, 303, 304, 318, 321, 331, 332, 363, 388, 399, 410, 416, 418, 420, 422, 424, 425, 426], "05": [1, 4, 110, 111, 112, 113, 192, 333, 368, 375, 388, 395, 400, 401, 403, 404, 406, 407], "step": [1, 4, 179, 205, 209, 212, 219, 227, 228, 353, 355, 388, 403, 404, 406, 407, 410], "clip": [1, 83], "larg": [1, 363, 405, 417, 423], "term": [1, 311, 387, 410], "show": [1, 4, 59, 319, 320, 321, 322, 325, 326, 327, 329, 331, 349, 352, 353, 355, 360, 362, 371, 382, 386, 388, 389, 390, 392, 393, 394, 395, 397, 399, 400, 404, 405, 406, 409, 410, 416, 418, 419, 421, 422, 428], "k": [1, 26, 32, 55, 59, 136, 138, 140, 144, 179, 191, 271, 281, 344, 345, 350, 352, 358, 360, 361, 362, 363, 364, 365, 366, 367, 377, 378, 397, 405, 413, 414, 417, 418, 420, 421, 422, 424, 428], "_": [1, 367, 377, 378, 381, 382, 383, 384, 397, 400, 424], "aa": [1, 3, 382], "ev": [1, 2, 274, 358, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 390, 391, 398, 421], "add": [1, 3, 68, 69, 75, 281, 289, 295, 299, 304, 349, 353, 382, 406, 410], "plane": [1, 136, 138, 330, 331, 389, 397, 415, 416, 421, 422], "level": [1, 66, 71, 74, 260, 281, 289, 290, 299, 300, 313, 314, 325, 331, 349, 356, 359, 363, 368, 384, 390, 391, 409, 415, 416, 422, 423], "25": [1, 355, 387, 391, 403, 404, 407], "text": [1, 2, 197, 229, 371], "whether": [1, 4, 329, 359, 388, 410, 428], "plotter": [1, 4, 143, 285, 286, 288, 358, 363, 367, 388, 397, 399, 400, 403, 404, 406, 407], "render": [1, 4, 59, 387, 388, 389, 390, 391, 392, 393, 394, 397, 399, 400, 403, 404, 406, 407, 410, 422], "offscreen": [1, 4, 388], "caemera": [1, 4, 388], "iso": [1, 4, 330, 331, 388, 421, 422], "isoslid": [1, 4, 386, 388, 395, 409], "modern": [1, 4, 388], "slice": [1, 4, 331, 388, 422], "wheather": [1, 4, 388], "cross": [1, 4, 331, 388, 410, 422], "section": [1, 4, 143, 233, 331, 345, 348, 349, 353, 360, 366, 371, 374, 378, 382, 388, 410, 419, 421, 422, 424], "area": [1, 4, 329, 331, 388, 389, 410, 419, 422], "green": [2, 331, 371, 422], "cyan": [2, 371], "magenta": [2, 371], "yellow": [2, 371], "orang": [2, 371, 419], "purpl": [2, 371], "brown": [2, 371], "navi": [2, 371, 381], "maroon": [2, 371], "oliv": [2, 371], "arial": [2, 371], "16": [2, 325, 331, 357, 364, 371, 372, 384, 387, 392, 395, 403, 404, 410, 415, 422], "total": [2, 10, 11, 134, 138, 158, 159, 203, 204, 290, 329, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 370, 371, 372, 373, 374, 375, 377, 378, 379, 381, 382, 383, 384, 385, 387, 388, 389, 390, 391, 392, 393, 394, 395, 397, 398, 399, 400, 401, 403, 404, 405, 406, 407, 408, 416, 417, 419, 423, 424], "up": [2, 10, 150, 159, 191, 298, 366, 371, 374, 412, 416, 419, 422, 423, 428], "down": [2, 10, 38, 159, 366, 371, 374, 416, 419, 422, 423, 428], "program": [2, 371, 410], "print": [2, 318, 319, 320, 321, 322, 326, 329, 330, 353, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 399, 403, 404, 405, 406, 407, 416, 421, 428], "detail": [2, 134, 135, 136, 137, 140, 141, 179, 329, 349, 361, 364, 365, 366, 370, 371, 372, 373, 374, 400, 410, 416, 422], "inform": [2, 125, 134, 135, 138, 140, 141, 144, 150, 153, 162, 169, 176, 179, 212, 219, 221, 224, 225, 296, 345, 349, 355, 371, 382, 383, 397, 399, 400, 410, 415, 416, 419, 420, 422, 423, 424], "rang": [2, 263, 265, 318, 321, 331, 358, 371, 390, 391, 397, 403, 422, 423, 428], "stack": [2, 246, 247, 248, 329, 370, 371, 372, 373, 377, 378, 424], "mode": [2, 71, 318, 319, 320, 321, 322, 325, 326, 327, 329, 330, 331, 345, 349, 352, 353, 355, 359, 360, 362, 363, 367, 371, 378, 382, 383, 384, 387, 388, 389, 410, 415, 416, 418, 421, 422, 424, 428], "boolean": [3, 15, 19, 44, 59, 93, 114, 177, 192, 240, 317, 318, 319, 320, 321, 322, 324, 325, 326, 327, 328, 329, 330, 331, 371, 382, 416, 417, 420, 421, 422], "legend": [3, 360, 367, 371, 382, 405], "arrow": [3, 4, 74, 330, 331, 382, 383, 388, 399, 421, 422], "repres": [3, 7, 21, 22, 23, 24, 36, 37, 99, 125, 131, 150, 198, 199, 200, 228, 246, 329, 331, 359, 382, 410, 419, 422, 428], "densiti": [3, 5, 10, 13, 32, 38, 134, 138, 143, 153, 158, 159, 166, 203, 233, 238, 243, 244, 287, 325, 329, 336, 340, 345, 349, 351, 352, 371, 375, 378, 382, 413, 414, 415, 416, 423, 424, 427], "z": [3, 71, 74, 83, 85, 88, 132, 301, 303, 307, 330, 332, 357, 358, 360, 363, 367, 371, 381, 382, 383, 384, 388, 397, 421, 422, 423, 424], "imag": [3, 83, 331, 382, 387, 388, 389, 390, 391, 392, 393, 394, 397, 399, 400, 403, 404, 406, 407, 412, 416, 422], "k_": [3, 382, 397], "band": [4, 5, 19, 20, 21, 22, 23, 24, 25, 41, 54, 63, 66, 67, 70, 75, 83, 91, 95, 135, 136, 138, 140, 143, 150, 166, 167, 169, 192, 196, 238, 243, 258, 264, 265, 268, 270, 279, 280, 285, 287, 288, 318, 319, 320, 321, 322, 324, 325, 326, 330, 331, 333, 337, 338, 342, 343, 345, 350, 352, 358, 359, 360, 363, 368, 374, 377, 378, 382, 384, 387, 388, 389, 390, 391, 392, 393, 394, 398, 400, 413, 414, 415, 419, 421, 422, 423, 424, 425], "pyprocar": [5, 32, 63, 92, 93, 122, 123, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 155, 156, 157, 160, 161, 164, 165, 168, 170, 173, 174, 192, 201, 202, 231, 232, 233, 234, 235, 236, 237, 285, 286, 287, 288, 298, 313, 314, 315, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 352, 353, 355, 356, 357, 358, 359, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 372, 373, 374, 375, 377, 378, 380, 381, 383, 384, 385, 386, 387, 389, 390, 391, 392, 393, 394, 395, 397, 398, 399, 400, 403, 404, 405, 406, 407, 409, 412, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428], "cfg": [5, 143, 360, 371, 382, 388], "help": [5, 63, 66, 136, 138, 153, 349, 351, 353, 355, 411, 423, 428], "custom": [5, 326, 327, 378, 382, 388, 410, 416], "plot": [5, 32, 38, 59, 66, 68, 69, 72, 73, 74, 119, 136, 138, 140, 143, 238, 240, 241, 243, 244, 245, 246, 247, 248, 249, 251, 252, 254, 255, 256, 258, 261, 262, 263, 264, 265, 266, 267, 268, 277, 279, 281, 285, 286, 287, 288, 317, 318, 319, 320, 321, 322, 325, 326, 327, 329, 330, 331, 333, 336, 337, 338, 340, 341, 342, 343, 345, 350, 356, 362, 368, 369, 375, 379, 380, 385, 386, 387, 395, 399, 405, 413, 414, 415, 417, 418, 419, 420, 422, 423, 424, 426], "option": [5, 10, 13, 19, 33, 59, 63, 66, 71, 74, 75, 77, 91, 98, 110, 111, 112, 113, 114, 123, 128, 130, 132, 150, 153, 156, 162, 166, 177, 179, 180, 185, 187, 192, 193, 238, 240, 243, 244, 245, 246, 247, 248, 249, 251, 252, 254, 255, 258, 260, 262, 263, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 317, 318, 319, 320, 321, 322, 324, 325, 326, 327, 328, 329, 330, 331, 333, 348, 349, 355, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 410, 416, 417, 421, 422, 423, 428], "our": [5, 358, 359, 363, 384, 410, 411, 421], "code": [5, 143, 150, 153, 154, 216, 233, 316, 317, 324, 325, 326, 327, 329, 330, 331, 348, 349, 350, 352, 353, 355, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 397, 398, 399, 400, 403, 404, 405, 406, 407, 409, 410, 413, 414, 415, 416, 418, 419, 420, 421, 422, 424, 425, 427, 428], "base": [5, 294, 302, 331, 359, 400, 410, 416, 420, 422], "each": [5, 10, 21, 22, 23, 24, 25, 34, 35, 36, 37, 39, 40, 60, 61, 65, 83, 85, 116, 125, 134, 138, 205, 215, 219, 262, 263, 265, 266, 267, 289, 290, 299, 303, 304, 307, 329, 331, 359, 363, 403, 405, 410, 415, 416, 417, 418, 419, 420, 422, 423, 424], "yaml": 5, "contain": [5, 9, 10, 66, 83, 91, 129, 148, 272, 275, 325, 329, 330, 331, 345, 355, 358, 359, 360, 363, 371, 381, 383, 406, 410, 416, 421, 422, 423], "set": [5, 71, 83, 130, 131, 132, 183, 213, 250, 251, 252, 253, 254, 255, 269, 270, 271, 272, 273, 274, 275, 276, 289, 328, 329, 330, 331, 348, 349, 350, 352, 353, 355, 357, 360, 361, 362, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 400, 404, 405, 413, 414, 415, 416, 417, 418, 419, 421, 422, 426, 428], "relat": [5, 295, 399, 420, 425, 427], "properti": [5, 15, 16, 17, 18, 21, 22, 23, 24, 25, 34, 35, 36, 37, 39, 40, 42, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 61, 65, 85, 86, 87, 88, 89, 94, 95, 96, 97, 101, 102, 103, 104, 105, 106, 107, 108, 109, 115, 116, 117, 118, 120, 121, 124, 127, 129, 155, 157, 158, 159, 160, 161, 163, 164, 165, 168, 170, 172, 173, 174, 179, 181, 183, 184, 189, 190, 195, 196, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 216, 217, 218, 219, 220, 221, 222, 224, 226, 227, 228, 230, 299, 300, 331, 360, 371, 378, 387, 388, 389, 390, 391, 392, 393, 394, 410, 422], "below": [5, 359, 361, 362, 364, 365, 366, 367, 370, 372, 373, 374, 377, 378, 381, 383, 384, 387, 389, 390, 391, 392, 393, 394, 400, 410, 415, 416, 418], "ar": [5, 12, 38, 59, 63, 70, 74, 83, 91, 125, 138, 159, 166, 229, 246, 287, 289, 291, 298, 299, 301, 307, 326, 327, 329, 330, 331, 345, 349, 350, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 403, 404, 405, 407, 410, 411, 412, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424], "some": [5, 150, 191, 331, 345, 353, 359, 399, 410, 415, 422], "kei": [5, 159, 179, 246, 298, 326, 327, 329, 359, 410, 416, 422], "you": [5, 143, 290, 312, 331, 349, 351, 352, 353, 355, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 397, 399, 400, 403, 404, 405, 406, 407, 410, 411, 412, 419, 420, 422, 423, 425, 427, 428], "might": [5, 83, 410, 412, 419], "find": [5, 63, 70, 71, 74, 83, 89, 181, 183, 184, 324, 359, 396, 401, 402, 405, 408, 409, 410, 416, 428], "chapter": [5, 138, 287, 313], "intend": [5, 138, 143, 287, 313, 410], "describ": [5, 138, 287, 313], "data": [5, 38, 138, 143, 179, 287, 289, 292, 313, 317, 345, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 398, 399, 400, 403, 404, 405, 406, 407, 410, 413, 414, 420, 424, 425, 427], "type": [5, 9, 12, 13, 14, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42, 44, 45, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 63, 65, 70, 71, 75, 83, 85, 86, 87, 88, 89, 92, 93, 94, 95, 96, 97, 99, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 120, 121, 122, 123, 124, 127, 128, 129, 138, 143, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 168, 170, 171, 172, 173, 174, 179, 181, 183, 184, 189, 190, 195, 196, 197, 201, 202, 203, 204, 216, 220, 221, 225, 238, 240, 241, 242, 243, 249, 250, 253, 256, 258, 264, 287, 290, 298, 311, 313, 324, 326, 327, 330, 331, 332, 345, 357, 363, 404, 407, 410, 415, 416, 421, 422], "assist": [5, 75, 138, 287], "process": [5, 138, 146, 345, 359, 367, 377, 378, 381, 382, 383, 384, 397, 400, 410, 413, 414, 416, 421, 423, 424, 428], "electron": [5, 19, 135, 138, 143, 162, 179, 195, 198, 199, 205, 219, 238, 258, 285, 287, 314, 315, 359, 367, 377, 378, 381, 382, 383, 384, 397, 399, 400, 410, 413, 414, 415, 416, 422, 424], "structur": [5, 19, 63, 91, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 135, 138, 140, 143, 148, 160, 161, 166, 168, 170, 179, 187, 188, 192, 208, 210, 214, 217, 238, 239, 258, 264, 270, 279, 287, 288, 289, 313, 315, 325, 333, 337, 338, 342, 343, 345, 350, 352, 359, 360, 363, 368, 371, 377, 378, 381, 382, 383, 384, 388, 397, 398, 399, 400, 403, 405, 410, 413, 414, 415, 418, 419, 423, 424, 425, 428], "ha": [5, 83, 138, 146, 176, 177, 230, 233, 287, 313, 329, 331, 345, 348, 349, 352, 353, 355, 363, 387, 407, 410, 422, 428], "follow": [5, 10, 83, 138, 191, 233, 287, 313, 329, 331, 345, 349, 350, 352, 353, 355, 358, 359, 360, 363, 371, 378, 382, 383, 388, 397, 400, 410, 412, 415, 416, 417, 419, 420, 422, 423, 424, 428], "band_structur": [5, 368], "yml": 5, "band_structure_2d": 5, "2d": [5, 66, 71, 74, 136, 138, 327, 330, 331, 338, 341, 343, 344, 345, 356, 368, 382, 383, 397, 413, 414, 422, 424], "do": [5, 16, 38, 75, 143, 156, 157, 166, 202, 204, 238, 239, 246, 247, 248, 249, 312, 325, 329, 331, 352, 353, 355, 358, 359, 360, 363, 366, 367, 369, 370, 371, 374, 375, 377, 378, 382, 387, 388, 389, 390, 391, 392, 393, 394, 397, 399, 400, 403, 404, 406, 407, 410, 415, 416, 418, 419, 422], "state": [5, 10, 13, 38, 83, 134, 138, 143, 153, 158, 159, 203, 238, 243, 244, 287, 325, 329, 330, 336, 340, 345, 349, 352, 359, 371, 375, 378, 410, 413, 414, 415, 416, 421, 424], "fermi_surface_3d": 5, "3d": [5, 43, 75, 137, 138, 318, 319, 320, 321, 322, 331, 345, 388, 413, 414, 424], "fermi_surface_2d": 5, "unfold": [5, 355, 356, 368, 409, 413, 414, 424], "class": [7, 10, 19, 66, 74, 75, 83, 90, 99, 125, 134, 135, 137, 138, 139, 141, 142, 144, 146, 148, 150, 153, 166, 175, 176, 177, 179, 185, 187, 193, 238, 258, 279, 288, 289, 291, 292, 293, 296, 299, 300, 308, 309, 310, 311, 314, 315, 316, 317, 387, 388, 389, 390, 391, 392, 393, 394, 405, 410, 420, 422, 425, 427], "reciprocal_lattic": [7, 8, 19, 20, 146, 147, 162, 187, 188, 420, 427], "ndarrai": [7, 8, 10, 11, 19, 20, 21, 22, 23, 24, 25, 26, 34, 35, 36, 37, 39, 40, 41, 42, 43, 45, 46, 47, 48, 49, 59, 60, 61, 63, 65, 66, 74, 83, 84, 92, 93, 94, 113, 114, 115, 120, 122, 123, 125, 126, 131, 132, 162, 171, 184, 187, 188, 189, 190, 195, 196, 202, 220, 263, 265, 266, 267, 290, 291, 292, 302, 303, 304, 305, 306, 307, 311, 326, 327, 405, 416], "transformation_matrix": [7, 8, 59, 63, 92, 93, 123, 428], "int": [7, 8, 10, 11, 13, 16, 17, 18, 19, 20, 33, 50, 51, 52, 53, 54, 55, 56, 57, 58, 71, 74, 75, 76, 77, 83, 84, 86, 87, 88, 95, 111, 117, 118, 156, 162, 163, 172, 187, 188, 243, 244, 245, 246, 247, 248, 251, 252, 254, 255, 258, 259, 263, 265, 266, 267, 273, 290, 294, 302, 305, 318, 319, 320, 321, 322, 325, 326, 327, 328, 329, 330, 331, 332, 333, 416, 417, 421, 422, 423], "sourc": [7, 8, 9, 10, 11, 12, 13, 14, 19, 20, 26, 27, 28, 29, 30, 31, 32, 33, 38, 41, 43, 49, 59, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 90, 91, 92, 93, 98, 99, 100, 110, 111, 112, 113, 114, 119, 122, 123, 125, 126, 128, 130, 131, 132, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 156, 162, 166, 167, 169, 171, 175, 176, 177, 178, 179, 180, 182, 185, 186, 187, 188, 191, 192, 193, 194, 197, 210, 211, 212, 213, 214, 215, 223, 225, 229, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 397, 398, 399, 400, 403, 404, 405, 406, 407, 409, 410, 411, 413, 414, 416, 417, 421, 422, 423, 426, 428], "A": [7, 10, 66, 70, 92, 93, 99, 114, 119, 122, 127, 129, 152, 157, 162, 177, 179, 185, 187, 192, 193, 238, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 258, 260, 261, 262, 263, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 279, 289, 292, 306, 311, 318, 319, 320, 321, 322, 324, 325, 326, 327, 328, 330, 331, 350, 363, 367, 377, 378, 381, 382, 383, 384, 387, 397, 400, 405, 410, 415, 416, 417, 421, 422, 423, 428], "object": [7, 19, 66, 75, 91, 125, 130, 155, 156, 157, 166, 180, 187, 201, 202, 216, 220, 221, 238, 258, 298, 299, 300, 301, 302, 305, 311, 315, 329, 331, 362, 387, 388, 389, 390, 391, 392, 393, 394, 399, 410, 420, 422, 424, 425, 427], "vert": [7, 9, 83, 125, 126], "face": [7, 9, 125, 126, 127, 129, 131, 138, 142, 422], "represent": [7, 46, 47, 83, 420, 422], "calcul": [7, 9, 10, 26, 27, 33, 44, 75, 78, 79, 80, 81, 82, 83, 153, 163, 166, 172, 176, 187, 192, 198, 199, 200, 201, 206, 216, 219, 220, 221, 222, 224, 225, 230, 314, 315, 317, 318, 319, 320, 321, 322, 325, 326, 327, 328, 329, 330, 331, 345, 348, 350, 351, 352, 359, 363, 366, 367, 374, 386, 387, 388, 389, 390, 391, 392, 393, 394, 398, 405, 409, 413, 414, 415, 416, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428], "correspond": [7, 21, 23, 34, 36, 39, 49, 66, 83, 120, 330, 359, 410, 415, 416, 421, 423, 428], "reciproc": [7, 19, 59, 77, 120, 133, 135, 138, 148, 162, 183, 187, 355, 416, 428], "lattic": [7, 19, 41, 59, 77, 99, 100, 101, 102, 104, 105, 106, 109, 114, 115, 120, 123, 133, 135, 138, 141, 148, 162, 183, 187, 289, 290, 292, 297, 298, 299, 306, 311, 350, 355, 403, 404, 406, 416, 427, 428], "paramet": [7, 10, 13, 19, 26, 33, 38, 41, 43, 49, 59, 63, 66, 70, 71, 74, 75, 77, 83, 91, 92, 93, 98, 99, 110, 111, 112, 113, 114, 122, 123, 125, 128, 130, 131, 132, 150, 152, 153, 156, 162, 166, 176, 177, 179, 180, 185, 187, 192, 193, 216, 230, 238, 240, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 258, 260, 262, 263, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 290, 291, 292, 293, 294, 296, 297, 298, 300, 301, 302, 303, 304, 305, 306, 307, 308, 310, 311, 312, 317, 318, 319, 320, 321, 322, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 353, 355, 359, 400, 410, 416, 417, 418, 419, 421, 422, 423, 426, 428], "np": [7, 10, 19, 21, 22, 23, 24, 25, 26, 34, 35, 36, 37, 39, 40, 41, 42, 43, 45, 46, 47, 48, 49, 59, 60, 61, 63, 65, 66, 74, 83, 92, 93, 94, 113, 114, 115, 120, 122, 123, 132, 162, 171, 183, 184, 187, 189, 190, 195, 196, 202, 220, 263, 265, 266, 267, 290, 291, 292, 301, 302, 303, 304, 305, 306, 307, 326, 327, 329, 357, 367, 398, 399, 400, 403, 404, 405, 406, 407, 416, 428], "usgin": 7, "wigner": [7, 9, 424], "seitz": [7, 9, 424], "float": [7, 13, 19, 20, 31, 32, 33, 59, 70, 75, 76, 83, 84, 85, 99, 101, 102, 104, 105, 106, 108, 109, 110, 111, 112, 113, 116, 124, 125, 127, 130, 162, 187, 188, 192, 193, 194, 240, 260, 263, 265, 272, 275, 276, 290, 298, 301, 303, 304, 307, 318, 319, 320, 321, 324, 325, 326, 327, 329, 330, 331, 332, 333, 357, 416, 421, 422], "ani": [7, 10, 11, 210, 213, 331, 359, 363, 410, 416, 418, 421, 422, 426], "transform": [7, 63, 83, 92, 93, 122, 357, 358, 363, 410, 416], "appli": [7, 41, 83, 307, 317, 357, 363, 399, 410, 415, 416, 426], "unit": [7, 124, 289, 403, 404, 406, 407], "cell": [7, 9, 83, 107, 108, 118, 121, 124, 367, 403, 404, 406, 407, 413, 414, 422, 428], "rotat": [7, 41, 99, 100, 185, 186, 330, 381, 382, 383, 384, 399, 420, 422, 424, 427], "supercel": [7, 75, 76, 309, 310, 315, 331, 363, 388, 402, 408, 409, 422, 423, 428], "default": [7, 10, 13, 19, 33, 59, 63, 66, 71, 74, 75, 77, 83, 91, 98, 110, 111, 112, 113, 114, 123, 125, 128, 130, 132, 150, 153, 156, 162, 166, 177, 179, 180, 185, 187, 192, 193, 238, 240, 243, 244, 245, 246, 247, 248, 249, 251, 252, 254, 255, 258, 262, 263, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 290, 291, 293, 296, 298, 300, 301, 302, 303, 304, 305, 306, 307, 308, 310, 312, 317, 318, 319, 320, 321, 322, 324, 325, 326, 327, 328, 329, 330, 331, 355, 359, 366, 374, 378, 383, 388, 416, 417, 419, 421, 422, 423], "method": [7, 10, 19, 59, 63, 66, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 80, 81, 82, 83, 90, 92, 93, 99, 114, 119, 122, 125, 144, 146, 148, 150, 152, 153, 162, 166, 169, 175, 177, 179, 180, 185, 187, 192, 193, 238, 240, 241, 242, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 258, 260, 261, 263, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 279, 289, 295, 299, 308, 309, 310, 312, 316, 317, 318, 319, 320, 321, 322, 387, 388, 389, 390, 391, 392, 393, 394, 410, 416, 420, 424], "attribut": [7, 10, 19, 75, 83, 90, 99, 125, 153, 166, 179, 187, 193, 410, 420], "brillouinzon": [8, 9, 138], "initi": [8, 76, 84, 126, 155, 180, 217, 317, 389, 399, 406, 410], "polydata": [8, 59, 76, 84, 125, 126, 138, 142, 399, 403, 404, 406, 407], "form": [9, 184, 220, 221, 403, 410, 420], "tupl": [9, 77, 89, 125, 319, 320, 331, 422], "return": [9, 12, 13, 14, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 63, 65, 70, 71, 85, 86, 87, 88, 89, 92, 93, 94, 95, 96, 97, 99, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 120, 121, 122, 123, 124, 127, 128, 129, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 168, 170, 171, 172, 173, 174, 181, 183, 184, 189, 190, 195, 196, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 214, 215, 216, 217, 218, 219, 220, 221, 222, 224, 225, 226, 228, 230, 238, 240, 241, 242, 243, 249, 250, 253, 256, 258, 264, 298, 311, 324, 329, 330, 331, 332, 362, 410, 421, 422], "n_vert": 9, "n_face": 9, "dtype": [10, 11], "float64": [10, 11], "interpolation_factor": [10, 11, 43, 75, 76, 83, 84, 162, 187, 188, 325, 326, 327, 331, 388, 416, 422, 428], "function": [10, 38, 43, 83, 89, 128, 146, 156, 197, 210, 211, 212, 213, 229, 233, 315, 324, 325, 326, 327, 329, 330, 331, 339, 341, 345, 348, 351, 355, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 402, 406, 408, 409, 410, 413, 414, 416, 418, 419, 421, 422, 424, 428], "theori": [10, 329, 351, 414], "spectrum": 10, "shape": [10, 19, 21, 22, 23, 24, 25, 26, 34, 35, 36, 37, 39, 40, 42, 46, 47, 60, 61, 65, 358, 363, 399, 406], "n_do": 10, "element": [10, 160, 161, 164, 168, 170, 173, 210, 213, 262, 289, 290, 291, 292, 295, 298, 299, 301, 302, 329, 404, 406, 423], "etc": [10, 306, 359, 415, 416], "n_atom": [10, 19, 60, 61, 66], "n_princip": 10, "n_orbit": [10, 60, 61, 66], "n_spin": [10, 19, 24, 60, 61, 66, 134, 138], "i_princip": 10, "work": [10, 331, 377, 378, 381, 386, 387, 388, 389, 390, 391, 392, 393, 394, 409, 410, 411, 416, 421, 422], "like": [10, 74, 289, 290, 302, 313, 314, 349, 359, 410, 415, 416, 420], "princip": [10, 33, 57, 244, 245, 247, 248], "quantum": [10, 13, 33, 57, 166, 232, 233, 234, 235, 236, 244, 245, 247, 248, 351, 352, 356, 368, 369, 375, 409, 414, 415, 416, 420, 424], "n": [10, 13, 32, 83, 99, 127, 355, 363, 404, 405, 406, 407, 424, 425], "last": [10, 160, 164, 168, 173, 181, 183, 199, 206, 222, 227, 407, 416], "index": [10, 13, 42, 66, 156, 265, 294, 302, 305, 318, 319, 320, 321, 322, 330, 359, 363, 407, 414, 415, 416, 420, 421, 423, 424], "p": [10, 12, 329, 331, 355, 361, 399, 403, 404, 405, 406, 407, 415, 419, 422, 423, 425], "i_orbit": 10, "similar": [10, 329, 331, 348, 410, 419, 422], "angular": [10, 424], "l": [10, 12, 353, 415, 416, 424, 428], "same": [10, 13, 93, 99, 131, 292, 298, 302, 311, 325, 331, 336, 345, 350, 352, 353, 355, 366, 374, 405, 410, 415, 416, 418, 419, 421, 422, 423, 424], "order": [10, 12, 13, 99, 290, 292, 305, 311, 329, 331, 400, 410, 415, 416, 418, 422], "7": [10, 13, 156, 329, 331, 357, 360, 361, 362, 365, 366, 370, 371, 373, 374, 378, 381, 382, 383, 387, 388, 389, 390, 391, 392, 393, 394, 397, 403, 404, 405, 410, 415, 416, 418, 419, 422, 424], "8": [10, 13, 156, 329, 331, 353, 357, 360, 361, 362, 364, 365, 366, 370, 371, 372, 373, 374, 378, 381, 382, 383, 387, 388, 389, 390, 391, 392, 393, 394, 399, 403, 415, 416, 418, 419, 422, 424], "py": [10, 13, 156, 329, 331, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 370, 371, 372, 373, 374, 375, 377, 378, 379, 381, 382, 383, 384, 385, 387, 388, 389, 390, 391, 392, 393, 394, 395, 397, 398, 399, 400, 401, 403, 404, 405, 406, 407, 408, 412, 422, 423, 424], "pz": [10, 13, 156, 329, 331, 422, 423, 424], "px": [10, 13, 156, 329, 331, 422, 423, 424], "dxy": [10, 13, 156, 329, 331, 422, 424], "dyz": [10, 13, 156, 329, 331, 422, 424], "dz2": [10, 13, 156, 329, 331, 422, 424], "dxz": [10, 13, 156, 329, 331, 422, 424], "dx2": [10, 424], "y2": [10, 13, 83, 156, 329, 331, 332, 397, 422], "i_spin": 10, "magnet": [10, 179, 415, 416, 424], "m": [10, 12, 124, 349, 350, 357, 405, 415, 416, 417, 424, 428], "increas": [10, 75, 83, 331, 422, 428], "densityofst": [11, 12, 13, 14, 15, 16, 17, 18, 138, 155, 156, 157, 201, 238, 239, 287], "convert": [12, 38, 49, 197, 403, 404, 406, 407, 424], "coupl": [12, 364, 372, 422], "uncoupl": 12, "assum": [12, 410], "coupled_orbit": 12, "j": [12, 400, 410, 415], "uncoupled_orbit": 12, "ret": [12, 13, 31, 32, 33, 210, 213], "principal_q_numb": [13, 33, 244, 245, 247, 248], "sum_noncolinear": [13, 33], "bool": [13, 15, 19, 33, 38, 44, 59, 91, 93, 114, 177, 192, 246, 258, 259, 289, 290, 291, 296, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 312, 316, 317, 318, 319, 320, 321, 322, 324, 325, 326, 327, 328, 329, 330, 331, 333, 416, 417, 421, 422, 423, 428], "tabl": [13, 329, 331, 422, 428], "lm": [13, 415, 416, 424], "tot": [13, 416, 424], "x2": [13, 83, 156, 329, 331, 332, 397, 422], "need": [13, 59, 146, 156, 218, 281, 290, 329, 348, 349, 358, 359, 360, 363, 367, 371, 378, 382, 387, 388, 389, 390, 391, 392, 393, 394, 397, 399, 400, 403, 404, 406, 407, 410, 416, 418, 419, 422, 423, 428], "sume": [13, 156], "over": [13, 26, 33, 156, 331, 410, 411, 413, 414, 419, 420, 422, 424], "count": [13, 302, 329, 331, 415, 416, 421, 422, 423], "from": [13, 38, 74, 125, 128, 133, 138, 139, 142, 146, 148, 153, 156, 166, 179, 289, 305, 308, 325, 328, 329, 331, 349, 359, 367, 384, 386, 395, 397, 400, 403, 404, 405, 406, 407, 409, 410, 411, 412, 413, 414, 415, 417, 418, 419, 420, 421, 422, 423, 424, 426, 428], "zero": [13, 329, 331, 415, 416, 422, 424], "input": [13, 176, 179, 233, 289, 313, 314, 328, 329, 331, 334, 345, 348, 349, 352, 353, 416, 417, 422, 426], "sum": [13, 33, 156, 299, 416, 419, 420], "string": [14, 130, 163, 172, 179, 243, 244, 245, 246, 247, 248, 262, 268, 269, 270, 271, 274, 289, 301, 325, 326, 327, 328, 389, 416, 417], "current": [14, 63, 352, 359, 386, 387, 388, 389, 390, 391, 392, 393, 394, 409, 414, 415, 416], "basi": [14, 45, 48, 50, 51, 52, 59, 63, 307, 364, 372, 415, 420], "str": [14, 59, 66, 71, 75, 76, 83, 84, 98, 99, 110, 121, 128, 130, 131, 132, 153, 156, 162, 166, 167, 175, 176, 177, 179, 180, 185, 186, 187, 188, 192, 193, 229, 240, 242, 243, 244, 245, 246, 247, 248, 249, 250, 252, 253, 255, 260, 262, 268, 269, 270, 271, 273, 274, 289, 290, 291, 292, 293, 296, 297, 298, 299, 300, 301, 302, 308, 309, 310, 312, 316, 317, 318, 319, 320, 321, 322, 324, 325, 326, 327, 328, 329, 330, 331, 333, 334, 416, 417, 421, 422, 423, 426], "non": [15, 33, 44, 329, 331, 353, 355, 356, 357, 359, 361, 362, 367, 368, 369, 370, 375, 377, 378, 382, 383, 384, 387, 388, 389, 390, 391, 392, 394, 398, 399, 400, 409, 410, 415, 416, 420, 422, 423, 424, 428], "colinear": [15, 33, 44, 328, 350, 353, 355, 356, 357, 358, 360, 363, 366, 368, 369, 371, 374, 375, 381, 382, 383, 384, 389, 393, 394, 400, 409, 415, 416, 417, 423], "calc": [15, 218], "channel": [18, 38, 58, 329, 363, 415, 416, 424], "kpoint": [19, 20, 21, 23, 34, 36, 39, 41, 42, 45, 46, 47, 48, 49, 50, 51, 52, 59, 63, 66, 67, 75, 91, 92, 93, 98, 135, 137, 138, 144, 145, 162, 171, 178, 187, 189, 190, 192, 221, 233, 279, 280, 317, 330, 331, 333, 352, 353, 355, 358, 363, 367, 397, 399, 400, 416, 420, 422, 423, 424, 428], "efermi": [19, 20, 146, 147, 187, 188, 350, 399, 420, 428], "n_kx": [19, 20, 22, 24, 25, 26, 35, 37, 40, 42, 46, 47, 60, 61, 65, 187, 188, 420], "n_ky": [19, 20, 22, 24, 25, 26, 35, 37, 40, 42, 46, 47, 60, 61, 65, 187, 188, 420], "n_kz": [19, 20, 22, 24, 25, 26, 35, 37, 40, 42, 46, 47, 60, 61, 65, 187, 188, 420], "projected_phas": [19, 20, 420], "kpath": [19, 20, 59, 91, 92, 93, 94, 95, 96, 97, 98, 135, 138, 146, 147, 169, 187, 188, 258, 259, 325, 345, 352, 400, 420, 424], "store": [19, 21, 22, 23, 24, 25, 34, 35, 36, 37, 39, 40, 42, 60, 61, 65, 75, 134, 135, 137, 138, 140, 141, 179, 180, 229, 289, 296, 298, 311, 314, 317, 331, 420, 422, 423], "informomr": 19, "arrai": [19, 21, 22, 23, 24, 25, 34, 35, 36, 37, 39, 40, 60, 61, 65, 66, 74, 75, 94, 123, 134, 136, 138, 139, 141, 157, 202, 215, 290, 295, 303, 311, 329, 331, 333, 400, 403, 404, 405, 406, 407, 415, 416, 420, 422, 428], "Will": 19, "have": [19, 32, 218, 331, 345, 349, 352, 363, 405, 406, 410, 411, 418, 419, 420, 421, 422, 423, 424], "n_kpoint": [19, 21, 23, 34, 36, 39, 66, 74], "n_band": [19, 21, 22, 23, 24, 25, 34, 35, 36, 37, 39, 40, 60, 61, 66, 74], "norbit": [19, 420], "full": [19, 179, 290, 331, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 397, 398, 399, 400, 403, 404, 405, 406, 407, 410, 417, 420, 422], "incud": 19, "complex": [19, 420], "part": [19, 200, 410, 422], "clacul": 19, "vector": [19, 99, 101, 102, 104, 105, 106, 109, 125, 126, 132, 148, 183, 271, 292, 306, 307, 311, 331, 355, 360, 361, 362, 363, 364, 365, 366, 367, 377, 378, 399, 403, 404, 406, 407, 415, 416, 422], "matrix": [19, 59, 63, 83, 92, 93, 99, 114, 120, 122, 123, 133, 138, 141, 162, 184, 187, 309, 330, 421, 422, 428], "shifted_to_efermi": [19, 420], "determin": [19, 33, 44, 59, 91, 93, 114, 177, 330, 359, 410, 421], "shift": [19, 75, 89, 299, 422], "electronicbandstructur": [20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 75, 138, 258, 259, 287, 399, 424, 425], "gradient": [21, 22, 26, 420], "numpi": [21, 22, 23, 24, 25, 34, 35, 36, 37, 39, 40, 60, 61, 65, 66, 74, 83, 134, 136, 138, 139, 141, 329, 331, 367, 398, 399, 400, 403, 404, 405, 406, 407, 412, 420, 422, 428], "self": [21, 23, 32, 34, 36, 39, 83, 198, 199, 212, 289, 290, 291, 295, 299, 349, 355, 358, 363, 367, 398], "where": [21, 22, 23, 24, 36, 37, 166, 246, 317, 326, 327, 330, 331, 345, 353, 357, 359, 360, 363, 371, 382, 388, 389, 403, 410, 416, 417, 421, 422, 423, 424], "second": [21, 23, 24, 36, 102, 104, 109, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 397, 398, 399, 400, 403, 404, 405, 406, 407], "dimens": [21, 22, 23, 24, 36, 37, 315], "dx": [21, 22, 23, 24, 36, 37], "dy": [21, 22, 23, 24, 36, 37], "dz": [21, 22, 23, 24, 36, 37], "fradient": [21, 22], "mesh": [22, 24, 25, 26, 35, 37, 40, 42, 43, 46, 47, 49, 60, 61, 65, 344, 355, 397, 413, 414, 420, 422, 424], "grid": [22, 24, 25, 26, 35, 37, 40, 42, 43, 46, 47, 60, 61, 65, 83, 85, 86, 87, 88, 93, 325, 331, 355, 360, 371, 397, 400, 405, 416, 420, 421, 422], "first": [22, 24, 37, 83, 101, 105, 109, 161, 170, 298, 306, 350, 355, 357, 358, 359, 361, 362, 363, 364, 365, 366, 367, 370, 372, 373, 374, 377, 381, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 400, 404, 407, 410, 418, 421, 422, 423, 428], "hessian": [23, 24, 420], "third": [23, 102, 105, 106, 410], "scalar_mesh": [26, 27], "cartesian": [26, 45, 46, 59, 171, 189, 289, 290, 291, 296, 299, 301, 303, 304, 306, 307, 308, 312, 403, 404, 406, 407, 420, 424], "coordin": [26, 83, 138, 139, 141, 171, 189, 190, 290, 291, 303, 304, 307, 308, 332, 397, 403, 404, 406, 407, 420, 424], "scalar_gradient_mesh": 26, "integr": 27, "nd_list": 28, "scalar_list": 29, "vector_list": 30, "_summary_": [31, 33, 332], "ipr": [31, 32, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 377, 378], "It": [32, 74, 150, 191, 281, 292, 298, 302, 308, 311, 329, 349, 359, 360, 371, 378, 382, 388, 403, 407, 410, 415, 416, 421], "resolv": [32, 410, 415, 416, 419], "pipr": 32, "pipr_j": 32, "frac": [32, 357, 363, 387, 424], "c_j": 32, "sum_i": 32, "c_i": 32, "clearli": [32, 410], "sum_j": 32, "mind": [32, 329, 331, 349, 407, 422, 423], "wavefunct": [32, 349, 355, 424], "c": [32, 306, 387, 403, 405, 407, 410, 411, 412, 422, 427], "_i": 32, "we": [32, 218, 329, 331, 349, 352, 353, 355, 358, 359, 360, 363, 367, 371, 378, 382, 384, 387, 388, 403, 404, 405, 406, 407, 410, 411, 415, 419, 421, 422, 424, 428], "alreadi": [32, 66, 74, 410], "quantiti": 32, "NOT": [32, 410], "readi": [32, 410], "FOR": [32, 410], "pleas": [32, 361, 364, 365, 366, 367, 370, 372, 373, 374, 377, 378, 381, 382, 383, 384, 397, 400, 410, 411, 412, 422, 424], "prefer": [32, 312, 410, 411], "ebs_ipr": 32, "speed": [34, 35, 79], "veloc": [35, 37, 331, 357, 413, 414, 422], "two": [38, 298, 315, 329, 331, 404, 407, 410, 411, 416, 422], "singl": [38, 299, 301, 363, 410, 417], "adjust": [38, 378, 382, 388, 389], "neg": [38, 363, 426], "typic": [38, 363, 400, 410, 426], "No": [38, 410, 416], "requir": [38, 125, 348, 349, 350, 352, 353, 355, 359, 410, 416, 418, 420, 421, 422, 423], "chang": [38, 299, 300, 302, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 406, 407, 410, 419], "otherwis": [38, 410], "harmon": [39, 40, 331, 422, 424], "averag": [39, 40], "effect": [39, 40, 331, 359, 387, 410, 421, 422], "mass": [39, 40, 331, 422], "symmetri": [41, 91, 110, 111, 112, 113, 177, 184, 192, 317, 359, 381, 382, 383, 384, 386, 387, 388, 389, 390, 391, 392, 393, 394, 399, 409, 416, 417, 420, 422], "oper": [41, 184, 303, 304, 410, 421], "particular": [42, 331, 352, 410, 420, 421, 422, 423], "mesh_grid": [43, 62], "an": [43, 70, 83, 94, 137, 138, 139, 142, 180, 215, 238, 258, 297, 298, 312, 313, 315, 348, 349, 355, 359, 363, 384, 387, 388, 389, 390, 391, 392, 393, 394, 397, 399, 400, 403, 404, 405, 406, 407, 410, 415, 416, 419, 422, 424], "nd": [43, 290], "nx": [43, 83], "ny": [43, 83], "nz": [43, 83], "rtype": [46, 47], "fraction": [48, 99, 138, 141, 292], "eb": [49, 75, 76, 166, 258, 259, 366, 374, 399, 420, 425], "lsit": 49, "uniqu": [50, 51, 52, 400, 420], "reduc": [50, 51, 52, 59, 190, 317, 407, 420, 423, 424], "numbersk": 57, "show_brillouin_zon": 59, "r": [59, 274, 349, 350, 357, 405, 416, 419, 422], "point_siz": [59, 397, 399, 400, 403, 404, 406, 407], "render_points_as_spher": [59, 397, 399, 400, 403, 404, 406, 407], "move": [59, 349, 355, 422], "core": [59, 63, 92, 93, 122, 123, 133, 134, 135, 136, 137, 139, 140, 141, 142, 143, 155, 156, 157, 160, 161, 164, 165, 168, 170, 173, 174, 187, 192, 201, 202, 220, 221, 228, 238, 258, 357, 422], "updat": [59, 63, 131, 132, 289, 295, 403, 410], "new": [59, 63, 191, 291, 331, 407, 410, 422, 423], "implement": [59, 281, 359, 410, 416], "pyvista": [59, 83, 125, 138, 142, 331, 357, 387, 388, 389, 390, 391, 392, 393, 394, 397, 399, 400, 403, 404, 406, 407, 412, 422], "wether": 59, "phase": [61, 135, 138, 355, 359, 420, 428], "done": [63, 303, 304, 329, 355, 359, 377, 398, 412, 417, 421], "expect": [63, 66, 135, 136, 138, 141, 287, 345, 410], "materi": [63, 110, 111, 331, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 398, 399, 400, 410, 415, 416, 418, 422], "spd": [66, 67, 78, 279, 280, 358, 363], "band_indic": [66, 67, 330, 381, 383, 421], "band_color": [66, 67, 330, 381, 383, 421], "loglevel": [66, 67], "30": [66, 67, 329, 349, 353, 403, 404, 406, 407, 410], "kwarg": [66, 67, 238, 239, 258, 259, 318, 319, 320, 321, 322, 325, 326, 327, 329, 330, 416, 421, 428], "nx3": 66, "substract": 66, "n_kppint": 66, "cmap": [66, 130, 281, 282, 284, 331, 360, 371, 378, 382, 415, 416, 422], "indic": [66, 329, 330, 331, 358, 361, 364, 365, 366, 370, 372, 373, 374, 382, 384, 404, 410, 416, 421, 422, 428], "given": [66, 70, 136, 138, 156, 291, 294, 307, 311, 315, 330, 381, 387, 393, 397, 400, 410, 413, 414, 419, 421, 428], "_type_": [66, 153, 325, 326, 327, 332, 334, 416, 423, 426], "verbos": [66, 289, 290, 299, 300, 309, 310, 371, 403, 404, 407], "log": 66, "warn": [66, 357, 404], "fermisurfac": [67, 68, 69, 70, 71, 72, 73, 74, 138], "matplotlib": [68, 69, 71, 238, 258, 326, 327, 329, 330, 331, 367, 405, 412, 415, 422, 424], "search": [70, 75, 331, 363, 390, 391, 414, 422], "around": [70, 331, 363, 390, 391, 422, 424], "rais": [70, 71, 74, 123, 193, 330, 421, 423], "runtimeerror": [70, 71, 74, 330, 421, 423], "found": [70, 181, 191, 193, 298, 353, 398, 400, 404, 410, 419, 424], "error": [70, 71, 74, 123, 191, 218, 298, 359, 363, 417, 421], "500": 71, "along": [71, 74, 94, 307, 410, 417, 420, 425], "onli": [71, 74, 98, 125, 191, 265, 289, 291, 317, 329, 331, 352, 363, 370, 374, 381, 383, 387, 388, 389, 390, 391, 392, 393, 394, 404, 410, 411, 415, 416, 422, 423], "layer": [71, 74, 359, 363, 403, 422], "geometri": [71, 74, 315, 359, 428], "pyplot": [71, 330, 405, 424], "instanc": [71, 300, 310, 311, 345, 359, 363, 367, 415, 416, 426, 428], "wa": [71, 74, 329, 407, 410, 416, 424], "call": [71, 74, 317, 334, 345, 349, 352, 353, 355, 387, 388, 389, 390, 391, 392, 393, 394, 403, 410, 418, 422, 426], "befor": [71, 74, 358, 359, 360, 363, 371, 378, 382, 388, 406, 421, 426, 428], "sx": 74, "sy": 74, "sz": 74, "300": [74, 360, 371, 378, 382], "enhanc": 74, "version": [74, 348, 367, 377, 378, 381, 382, 383, 384, 397, 400, 410, 411, 412, 419, 422, 423], "nkpoint": [74, 420], "nband": [74, 420, 424], "thei": [74, 191, 359, 410, 418], "also": [74, 331, 348, 349, 353, 359, 360, 366, 371, 374, 378, 381, 382, 383, 388, 410, 415, 416, 421, 422, 428], "other": [74, 83, 210, 329, 331, 349, 359, 378, 388, 400, 401, 405, 410, 416, 420, 421, 422, 423, 424, 426], "compon": [74, 410, 421, 423, 424], "marker": [74, 283, 284, 360, 371, 378, 382], "fermi_shift": [75, 76, 331, 422], "projection_accuraci": [75, 76, 331, 388, 422], "manapul": 75, "fermi_toler": [75, 331, 422], "improv": [75, 331, 359, 422], "effienc": [75, 331, 422], "prior": [75, 146, 331, 410, 412, 422], "select": [75, 290, 291, 329, 331, 359, 366, 374, 419, 422, 424], "within": [75, 331, 359, 363, 400, 403, 410, 412, 416, 422, 423, 424, 428], "toler": [75, 110, 111, 112, 113, 298, 331, 400, 422], "everi": [75, 329, 410, 413, 414, 424], "accuraci": [75, 331, 422], "isosurfac": [75, 84, 85, 86, 87, 88, 89, 137, 138, 391, 422], "fermisurface3d": [76, 77, 78, 79, 80, 81, 82, 138, 422], "extended_zone_direct": [77, 331, 357, 388, 422], "extend": [77, 363, 410], "vecctor": 77, "expand": [77, 358, 363, 410], "fermi_spe": [79, 357, 387, 388, 389, 390, 391, 392, 393, 394, 399], "fermi_veloc": [80, 331, 357, 387, 388, 389, 390, 391, 392, 393, 394, 399, 422], "harmonic_effective_mass": [81, 357, 387, 388, 389, 390, 391, 392, 393, 394], "spd_spin": 82, "xyz": [83, 84, 289, 299, 308, 312], "isovalu": [83, 84, 138, 139, 331, 422], "v_matrix": [83, 84], "algorithm": [83, 84], "lewin": [83, 84], "transform_matrix": [83, 84], "boundari": [83, 84, 307, 359], "all": [83, 156, 181, 209, 228, 230, 289, 293, 299, 305, 307, 328, 329, 331, 359, 405, 409, 410, 416, 417, 419, 421, 422, 423, 424, 428], "equat": [83, 422, 424], "f": [83, 229, 352, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 398, 399, 400, 406, 410, 415, 416, 421, 422], "must": [83, 289, 331, 345, 352, 353, 389, 400, 410, 416, 422, 428], "between": [83, 85, 91, 102, 105, 109, 125, 298, 363, 405, 410, 416, 426], "x1": [83, 332, 397], "y1": [83, 332, 397], "z1": 83, "z2": 83, "v1": [83, 329, 331, 422], "v2": 83, "constant": [83, 306, 384, 421], "One": [83, 331, 359, 415, 416, 421, 422], "can": [83, 125, 143, 150, 179, 329, 331, 345, 348, 349, 350, 353, 355, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 397, 398, 399, 400, 403, 405, 409, 410, 411, 412, 415, 416, 417, 418, 419, 420, 421, 422, 423, 425, 427, 428], "present": [83, 118, 121, 183, 293, 328, 329, 331, 349, 410, 416, 417, 422], "instead": [83, 289, 293, 349, 367, 391, 410, 416, 421], "togeth": [83, 289, 348, 410, 415, 416], "provid": [83, 130, 179, 180, 238, 258, 309, 311, 317, 328, 329, 331, 345, 348, 349, 355, 359, 360, 363, 371, 378, 382, 388, 405, 410, 413, 414, 415, 416, 417, 419, 420, 422, 424, 425, 427], "scikit": [83, 412], "possibl": [83, 410, 415, 416, 422], "classic": 83, "modul": [83, 233, 328, 333, 334, 402, 409, 414, 417, 418, 421, 423, 426, 428], "fourier": [83, 331, 422], "dafault": [83, 419], "period": 83, "dataset": [83, 112, 422, 423], "e": [83, 181, 274, 298, 301, 302, 307, 329, 331, 353, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 377, 378, 387, 405, 410, 419, 421, 422, 423], "g": [83, 301, 329, 331, 352, 353, 359, 387, 400, 405, 416, 417, 421, 422, 423], "1st": [83, 331, 411, 422], "bz": [83, 417, 428], "cover": [83, 363, 410], "fulli": [83, 363], "so": [83, 329, 403, 410, 416, 418, 420, 423, 424], "one": [83, 89, 125, 181, 183, 281, 289, 290, 291, 294, 302, 317, 329, 331, 349, 352, 353, 355, 383, 400, 410, 415, 416, 417, 419, 421, 422, 423], "want": [83, 125, 312, 329, 331, 358, 389, 407, 410, 411, 421, 422, 423], "wrap": 83, "look": [83, 331, 363, 393, 422], "afterward": 83, "easili": [83, 419], "doabl": 83, "trimesh": [83, 128, 130, 331, 412, 422], "goe": [83, 416, 419, 423], "eigen_matrix": 83, "In": [83, 143, 329, 331, 349, 355, 358, 359, 367, 387, 400, 403, 404, 405, 406, 407, 410, 411, 415, 416, 419, 422, 423, 424, 428], "word": [83, 329, 331, 422], "creat": [83, 125, 310, 311, 315, 329, 331, 333, 349, 352, 353, 355, 367, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 397, 400, 416, 422, 423], "super": [83, 413, 414], "withpad": 83, "vertic": [83, 138, 142, 240, 244, 245, 246, 247, 248, 329, 350, 405, 419, 422], "verts_prim": 83, "t": [83, 229, 281, 352, 410, 411], "exampl": [83, 125, 156, 329, 349, 352, 353, 355, 356, 357, 358, 360, 361, 362, 363, 364, 365, 366, 367, 369, 370, 371, 372, 373, 374, 376, 377, 378, 380, 381, 382, 383, 384, 386, 387, 388, 389, 390, 391, 392, 393, 394, 396, 401, 402, 403, 404, 405, 406, 407, 410, 411, 415, 416, 419, 421, 422, 423, 424], "space": [85, 110, 111, 313, 359, 387, 388, 389, 390, 391, 392, 393, 394, 400, 405, 421, 422, 426, 428], "length": [85, 410], "tri": [89, 191], "correct": [89, 410], "abl": [89, 389, 415, 416, 422, 424], "min": 89, "max": 89, "kname": [90, 91, 325, 326, 327, 349, 416, 425, 428], "ktick": [90, 91, 325, 326, 327, 349, 416, 425, 428], "special_kpoint": [90, 91, 425], "ngrid": [90, 91, 425], "has_time_revers": [90, 91, 144, 145, 177, 178], "handl": [91, 233, 317, 367, 399, 405, 422, 426], "map": [91, 125, 130, 131, 179, 331, 359, 415, 416, 421, 422], "special": [91, 359, 410, 415, 421], "time": [91, 177, 289, 291, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 397, 398, 399, 400, 403, 404, 405, 406, 407, 410, 428], "revers": [91, 177, 400, 410], "get": [92, 93, 169, 335, 352, 386, 395, 399, 400, 403, 404, 407, 409, 410, 422], "same_grid_s": 93, "optim": [93, 359], "after": [93, 406, 410, 419, 424], "transformm": 93, "retain": [93, 410], "segment": [95, 421, 425], "filenam": [98, 144, 145, 150, 152, 153, 162, 166, 177, 178, 179, 180, 185, 186, 187, 188, 192, 193, 194, 249, 268, 289, 290, 296, 297, 298, 299, 300, 308, 310, 312, 324, 325, 329, 330, 334, 389, 404, 419, 421, 426, 428], "fmt": 98, "vasp": [98, 146, 153, 216, 230, 233, 237, 289, 324, 325, 326, 327, 329, 330, 331, 348, 349, 351, 352, 356, 357, 358, 359, 360, 361, 362, 363, 366, 367, 368, 369, 371, 374, 375, 377, 378, 381, 382, 383, 384, 387, 388, 389, 392, 393, 394, 398, 399, 400, 403, 404, 405, 406, 407, 409, 414, 415, 416, 418, 419, 420, 421, 422, 424, 425, 426, 427, 428], "write": [98, 289, 297, 299, 407, 410, 423], "support": [98, 331, 349, 352, 353, 367, 410, 412, 414, 415, 416, 422], "moment": [98, 179, 424], "_description_": [98, 325, 327, 330, 332, 421, 423], "cartesian_coordin": [99, 100, 427], "fractional_coordin": [99, 100, 427], "defin": [99, 329, 331, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 400, 403, 404, 406, 407, 410, 416, 419, 421, 422, 423, 424], "perid": 99, "crystal": [99, 101, 102, 104, 105, 106, 109, 114, 115, 120, 227, 289, 313, 315, 349, 352, 353, 400, 413, 414], "symbol": [99, 138, 141, 292], "natom": [99, 292, 420, 427], "coordinatesd": 99, "magnitud": [101, 104, 106, 331, 415, 416, 422], "angl": [102, 105, 109, 298, 400, 406, 421], "convex": [107, 119], "hull": [107, 119], "scipi": [107, 412], "spatial": 107, "convexhul": 107, "symprec": [110, 111, 112, 113, 192, 333, 400], "1e": [110, 111, 112, 113, 192, 333, 349, 400], "intern": [110, 289, 295], "group": [110, 111, 289, 387, 388, 389, 390, 391, 392, 393, 394], "spglib": [112, 192], "dict": [112, 158, 159, 179, 203, 204, 221, 225, 246, 290, 298, 325, 326, 327, 329, 416, 419], "wyckoff": 113, "insid": [114, 150, 410], "unitcel": [114, 367], "question": 114, "corner": [115, 419], "speci": [118, 248, 290, 301, 329, 405, 419], "differ": [121, 298, 329, 331, 349, 352, 353, 355, 360, 364, 367, 371, 372, 378, 382, 384, 388, 404, 406, 410, 416, 417, 418, 419, 422], "crystla": 123, "valueerror": [123, 193], "proper": 123, "face_norm": [125, 126], "vert_norm": [125, 126], "face_color": [125, 126], "vert_color": [125, 126], "hold": 125, "about": [125, 143, 179, 224, 225, 359, 382, 383, 399, 410, 411, 419, 422], "inherit": 125, "To": [125, 328, 331, 348, 349, 350, 352, 353, 355, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 410, 412, 416, 417, 419, 421, 422, 424], "minimum": [125, 130, 327, 329, 331, 416, 421, 422, 423], "nvert": 125, "vertici": 125, "integ": [125, 311], "nface": 125, "connect": [125, 400, 410, 422], "vertex": 125, "attach": [125, 410], "glyph": [125, 399], "file_obj": 128, "output": [128, 149, 153, 179, 233, 296, 312, 328, 329, 331, 334, 348, 410, 416, 417, 419, 422, 426], "glb": [128, 331, 422], "file_typ": 128, "new_fac": 129, "viridi": [130, 360, 371, 378, 388], "vmin": [130, 281, 282, 284, 327, 331, 416, 421, 422, 428], "vmax": [130, 281, 282, 284, 327, 331, 416, 421, 422, 428], "maximum": [130, 327, 329, 331, 416, 421, 422, 423], "scalar_nam": 131, "vectors_x": 132, "vectors_i": 132, "vectors_z": 132, "vectors_nam": 132, "manipul": [134, 135, 138, 313, 314, 315], "1d": [134, 138, 139, 404], "n_energi": [134, 138], "see": [134, 135, 136, 137, 140, 141, 310, 349, 367, 387, 399, 405, 410, 411, 415, 416, 421, 428], "further": [134, 135, 136, 137, 140, 141, 146, 410, 416, 421, 423, 428], "informt": [137, 138], "includ": [137, 138, 143, 156, 179, 184, 241, 242, 246, 289, 345, 352, 355, 359, 410, 413, 414, 415, 416, 424, 428], "extens": [137, 138, 139, 142, 297, 308, 312, 363, 410], "path": [138, 140, 166, 179, 180, 185, 186, 329, 331, 345, 350, 352, 353, 355, 357, 358, 359, 360, 363, 367, 371, 382, 388, 403, 404, 405, 406, 407, 413, 414, 417, 418, 422, 424], "tick_label": [138, 140], "tick_posit": [138, 140, 252, 255, 273, 425], "n_segement": [138, 140], "kdistanc": [138, 140, 425], "learn": [143, 411], "more": [143, 181, 183, 281, 289, 294, 302, 331, 345, 366, 374, 382, 383, 400, 404, 410, 411, 415, 416, 419, 422, 423], "pars": [143, 144, 146, 148, 150, 152, 153, 162, 166, 169, 176, 177, 179, 185, 187, 193, 195, 196, 210, 225, 231, 232, 233, 234, 235, 236, 237, 289, 290, 330, 404, 407, 419, 421], "dft": [143, 329, 331, 349, 352, 358, 400, 410, 413, 414, 415, 416, 417, 419, 420, 422, 424, 427, 428], "highlight": [143, 359, 428], "python": [143, 158, 203, 229, 329, 331, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 397, 398, 399, 400, 403, 404, 405, 406, 407, 409, 410, 411, 412, 413, 414, 422], "interfac": [143, 363, 410, 422], "configur": [143, 356, 357, 358, 359, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 372, 373, 374, 375, 377, 378, 380, 381, 383, 384, 385, 386, 387, 389, 390, 391, 392, 393, 394, 395, 409], "io": [143, 231, 232, 234, 235, 236, 237, 349, 399, 420, 425, 427], "pyposcar": [143, 298, 314, 315, 359, 403, 404, 405, 406, 407, 408], "modulu": 143, "script": [143, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 346, 347, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 397, 398, 399, 400, 403, 404, 405, 406, 407, 410, 416, 417, 421, 422, 423, 426, 428], "bandsplot": [143, 325, 345, 349, 352, 353, 355, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 374, 377, 378, 416, 418, 419], "dosplot": [143, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 287, 325, 345, 352, 353, 355, 370, 371, 372, 373, 374, 377, 378, 419], "bandsdosplot": [143, 345, 352, 353, 355, 376, 379, 409, 419], "abinitkpoint": [145, 233], "dirnam": [146, 147, 153, 154, 166, 167, 316, 317, 324, 325, 326, 327, 329, 330, 331, 349, 352, 353, 355, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 398, 416, 418, 419, 421, 422, 428], "infil": [146, 147, 150, 151, 152, 328, 331, 333, 334, 400, 417, 422, 423, 426], "abinit_output": [146, 147, 148, 149, 328, 331, 348, 416, 417, 422], "procar": [146, 153, 154, 162, 188, 189, 190, 191, 192, 233, 317, 324, 325, 328, 331, 334, 339, 345, 347, 348, 349, 355, 398, 412, 413, 414, 415, 416, 417, 421, 422, 423, 424, 426, 428], "unlik": 146, "here": [146, 191, 281, 290, 308, 349, 351, 352, 353, 355, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 409, 411, 416], "merg": [146, 328, 348, 410, 417], "fix": [146, 191, 218, 299, 328, 348, 363, 410, 417], "format": [146, 191, 229, 233, 313, 328, 329, 331, 348, 349, 352, 397, 398, 399, 400, 410, 413, 414, 416, 417, 422, 424, 426], "issu": [146, 328, 348, 357, 417, 426], "abinitprocar": [147, 233], "through": [150, 152, 318, 321, 359, 410, 415, 416, 420, 421, 422, 425, 427, 428], "becaus": [150, 410, 416], "multipl": [150, 328, 339, 348, 413, 414, 419, 424], "bsxf": 150, "sown": 150, "bxsfparser": [151, 152, 233], "bxsf": [151, 152, 232, 233, 331, 422], "helper": 152, "qe": [153, 154, 233, 234, 235, 329, 352, 353, 355, 362, 364, 370, 372, 390, 391], "lobsterin": [153, 154, 352], "lobsterout": [153, 154, 352], "scfin_filenam": [153, 154], "scf": [153, 154, 166, 167, 349, 352, 353, 355], "outcar": [153, 154, 162, 180, 181, 182, 183, 184, 192, 233, 324, 331, 355, 398, 416, 422, 428], "poscar": [153, 154, 162, 186, 226, 233, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 305, 308, 309, 310, 311, 313, 315, 329, 331, 367, 400, 402, 408, 409, 422, 423, 428], "dos_interpolation_factor": [153, 154, 193, 194], "directori": [153, 166, 317, 326, 327, 328, 329, 330, 345, 349, 350, 352, 353, 355, 357, 358, 359, 360, 363, 371, 406, 416, 417, 421], "put": [153, 329, 331, 417, 422], "lobsterpars": [154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 233], "retrun": 155, "dos_paramater": 156, "separatli": 156, "pychemia": [156, 208, 216, 217, 220, 221, 228, 412], "visual": [156, 363, 402, 408, 409, 421, 422], "multi": [157, 202], "diment": [157, 202, 422], "complet": [158, 203, 350], "dictionari": [158, 179, 203, 211, 214, 246, 298, 325, 326, 327, 329, 345, 416], "denis": 158, "sturcutu": 162, "scf_in_filenam": [166, 167], "bands_in_filenam": [166, 167], "pdos_in_filenam": [166, 167], "pdo": [166, 167, 353], "kpdos_in_filenam": [166, 167], "kpdo": [166, 167, 353], "atomic_proj_xml": [166, 167], "atomic_proj": [166, 167, 353], "xml": [166, 167, 193, 194, 197, 218, 225, 329, 349, 353, 419], "expresso": 166, "most": [166, 329, 359, 405, 410, 416, 419], "import": [166, 329, 331, 352, 353, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 397, 398, 399, 400, 403, 404, 405, 406, 407, 410, 412, 420, 421, 422, 425, 427, 428], "come": [166, 410, 413, 414], "parser": [166, 218, 233, 399, 416, 420, 425, 427], "took": 166, "place": [166, 345, 353, 363, 410, 422], "case": [166, 329, 331, 345, 358, 405, 410, 416, 417, 422, 423, 428], "ofstat": 166, "locat": [166, 238, 258, 276, 357, 358, 359, 360, 363, 371, 378, 382, 388, 423], "outdir": 166, "prefix": 166, "qepars": [167, 168, 169, 170, 171, 172, 173, 174, 233], "fdf_file": [175, 176], "siestapars": [176, 233], "siesta": [176, 233, 236, 351], "fdf": 176, "vlaue": 177, "kpioint": 177, "run": [179, 290, 348, 349, 350, 352, 353, 355, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 397, 398, 399, 400, 403, 404, 405, 406, 407, 410, 417, 424], "extract": [179, 212, 213, 355, 423], "summari": [179, 349], "eigenvalu": 179, "stress": 179, "tensor": 179, "forc": [179, 410], "local": [179, 357, 359, 361, 362, 363, 364, 365, 366, 367, 370, 372, 373, 374, 377, 381, 383, 384, 387, 389, 390, 391, 392, 393, 394, 397, 398, 399, 400, 405, 410], "charg": [179, 349, 363, 410], "dielectr": 179, "amount": [179, 299, 307], "written": [179, 265, 297, 308, 312, 349, 355, 397, 400, 410, 428], "onto": [179, 415, 416, 424], "chosen": 179, "modifi": [179, 289, 300, 310, 329, 402, 408, 409, 410, 415, 416], "nwrite": 179, "tag": [179, 215, 349, 416, 421], "incar": [179, 355, 422], "act": 179, "access": [179, 410, 415, 424], "variabl": [179, 293, 416], "union": [179, 180], "file_str": 179, "content": [179, 180, 293, 308, 311, 312, 410], "constructor": 180, "read": [180, 218, 331, 353, 400, 410, 419, 422, 428], "specifi": [180, 197, 317, 329, 331, 350, 353, 355, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 397, 398, 399, 400, 410, 416, 419, 422], "its": [180, 363, 410], "just": [181, 183, 281, 290, 307, 308, 312, 422, 423], "field": 181, "keep": [181, 329, 331, 410, 415, 422, 423], "than": [181, 183, 210, 281, 329, 331, 349, 404, 410, 415, 416, 422, 423, 428], "ndaarai": 183, "them": [184, 229, 289, 359, 363, 410, 416, 424], "matric": [184, 424], "stupid": 191, "problem": [191, 410], "due": [191, 426, 428], "fortran": [191, 426], "now": [191, 352, 353, 407, 421, 423, 424], "separ": [191, 410, 415, 416, 417], "61": [191, 404], "00000000": [191, 424], "50000000": 191, "But": [191, 383, 410, 421], "precis": [192, 410], "vasprun": [193, 194, 223, 225, 329, 419], "vaspxml": [194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 233], "el": 197, "_type": 197, "attrib": 197, "tree": 197, "boolian": [198, 199, 200, 229, 329], "consist": [198, 199, 212, 349, 355, 398, 410, 415, 416, 424], "ionic": [198, 200, 205, 209, 219, 228], "converg": [199, 200], "system": [206, 222, 290, 352, 359, 410, 417, 421, 428], "final": [208, 407, 410, 416, 417], "xml_tree": [210, 211, 212, 213, 214, 215], "calculatio": 210, "scstep": 210, "dest": 211, "recurc": [211, 213], "check": [211, 328, 411, 417], "spell": 211, "tage": 213, "varrai": 215, "vaspincar": 216, "alwai": [218, 289, 307, 421], "accord": [218, 363, 410, 421], "finish": 218, "pseudopotenti": 224, "potcar": 224, "covert": 229, "abinit": [231, 233, 328, 329, 331, 351, 352, 414, 415, 416, 417, 422], "espresso": [232, 233, 234, 235, 236, 351, 352, 356, 368, 369, 375, 409, 414, 415, 416], "decrib": 233, "result": [233, 387, 410, 423, 428], "lobster": [233, 234, 325, 327, 329, 330, 351, 414, 421], "abinitpars": 233, "vasppars": 233, "mpl": [238, 258], "orient": [240, 243, 244, 245, 246, 247, 248, 325, 329, 389, 399, 415, 416, 419], "horizont": [240, 243, 244, 245, 246, 247, 248, 325, 329, 419], "linestyl": [240, 360, 371, 382, 405], "THe": 240, "plain": [243, 264, 325, 326, 327, 329, 330, 331, 349, 352, 353, 355, 358, 359, 360, 362, 363, 367, 371, 372, 373, 378, 382, 383, 384, 386, 387, 388, 389, 394, 395, 409, 413, 414, 418, 421, 422, 424, 428], "parametr": [244, 245, 266, 329, 331, 345, 358, 359, 360, 362, 363, 367, 371, 377, 378, 382, 383, 384, 387, 388, 389, 390, 391, 394, 415, 416, 418, 422, 424], "item": [246, 325, 326, 327, 329, 361, 370, 374, 410, 416, 419, 428], "plot_tot": [246, 329, 371, 419], "contribut": [246, 247, 248, 329, 331, 410, 411, 415, 416, 419, 422], "eachoth": 248, "pdf": [249, 268, 329], "interv": [251, 254, 272, 275, 276, 358, 363, 418], "xlim": [251, 358, 363], "tick_nam": [252, 255, 273, 425], "xtick": 252, "ylim": 254, "ytick": 255, "config_dict": [257, 278], "kdirect": [258, 259, 325, 326, 327, 416, 428], "ebsplot": [259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 287], "fermi_level": 260, "methdo": 262, "width_mask": [263, 265, 267], "color_mask": [263, 265, 267], "width_weight": [263, 265, 267], "color_weight": [263, 265, 267], "elimit": [263, 265, 325, 326, 327, 329, 358, 362, 363, 367, 416, 418, 419, 428], "scatter": [263, 265, 267, 358, 359, 360, 362, 363, 364, 365, 367, 377, 378, 416], "mask": [263, 265, 267, 282, 284, 326, 327, 410, 416], "overlai": [266, 357, 358, 359, 360, 362, 363, 364, 365, 366, 367, 377, 378, 387, 388, 389, 390, 391, 392, 393, 394], "fo": [271, 274], "begin": [272, 275, 332, 424], "end": [272, 275, 332, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 397, 398, 399, 400, 403, 404, 405, 406, 407, 410, 419, 424], "_f": [274, 358, 360, 361, 362, 363, 364, 365, 366, 367, 377, 378], "depeci": 279, "ot": 279, "procarplot": [280, 281, 282, 283, 284, 287], "hot_r": [281, 284], "handler": [281, 357], "parametricplot": 281, "fake": 281, "shouldn": 281, "invok": [281, 308, 410, 412], "discontinu": [282, 283, 284, 325, 353, 424], "figsiz": [282, 283], "13": [282, 283, 364, 372, 387, 395, 403, 410, 415, 423, 424], "plot_bar": [282, 371], "02": [283, 368, 379, 395], "50": [284, 355, 404, 423], "structutu": 285, "stuctur": 287, "depreci": 288, "low": [289, 313, 314, 358, 363, 423], "tailor": 289, "manual": [289, 389, 400, 416, 417], "coord": [289, 307, 312, 332], "_set_cartesian": 289, "_set_direct": 289, "ie": 289, "angstrom": [289, 292], "load": [289, 290, 292, 293, 349, 387, 388, 389, 390, 391, 392, 393, 394, 403, 404, 407], "whole": [289, 331, 363, 410, 422], "_unpars": 289, "sort": 289, "remov": [289, 299, 406, 410], "automat": [290, 295, 297, 308, 329, 331, 349, 355, 358, 363, 397, 400, 404, 410, 416, 422], "debug": [290, 410], "cpo": 290, "nadarrai": [290, 301], "dpo": [290, 403, 404, 406, 407], "lat": [290, 403, 404, 406, 407], "3x3": [290, 311], "typesp": 290, "aam": 290, "numbersp": 290, "ntotal": [290, 407], "elm": [290, 403, 404, 406, 407], "dynam": [290, 410], "selectflag": 290, "flag": [290, 328, 348, 349, 350, 352, 353, 355, 417, 428], "Not": [290, 410], "conveni": [290, 308, 312, 410], "volum": [290, 410, 422, 427], "box": [290, 410], "product": [290, 403, 404, 406, 407, 410], "selectiveflag": 291, "1x3": 291, "direct_posit": 292, "essenci": 292, "direct_po": 292, "coordiant": [292, 301], "fromstr": 293, "memori": [293, 387, 388, 389, 390, 391, 392, 393, 394, 423], "popul": 293, "when": [295, 317, 330, 331, 348, 355, 357, 359, 362, 366, 374, 387, 388, 389, 390, 391, 392, 393, 394, 397, 399, 400, 403, 404, 406, 407, 410, 415, 417, 418, 421, 422, 423, 425], "out": [296, 329, 331, 348, 349, 350, 352, 353, 359, 410, 422], "positon": 296, "falseposit": 296, "comment": [297, 424], "ad": [297, 308, 312, 331, 352, 410, 422], "poscar1": 298, "poscar2": 298, "compar": [298, 315, 356, 368, 387, 409, 413, 414, 424, 428], "small": [298, 410, 422], "numer": [298, 410], "ignor": [298, 405, 423], "empti": 298, "comparison": [298, 416, 418], "doe": [298, 305, 329, 331, 359, 367, 381, 386, 387, 388, 389, 390, 391, 392, 393, 394, 409, 410, 419, 421, 422, 423], "distanc": [298, 405, 425, 428], "rel": [298, 423], "consid": [298, 329, 331, 370, 374, 410, 411, 413, 414, 415, 416, 422], "equal": [298, 362, 390, 391], "pos_multipli": 299, "multipli": [299, 303, 306], "pos_sum": 299, "human": [299, 302, 305, 407], "scale_lattic": [299, 407], "poscar_modifi": [300, 301, 302, 303, 304, 305, 306, 307, 308, 313, 315, 407], "cu": 301, "newel": [302, 407], "replac": [302, 361, 362, 364, 365, 366, 367, 370, 372, 373, 374, 377, 381, 383, 384, 387, 389, 390, 391, 392, 393, 394, 400], "fx": [303, 304], "fy": [303, 304], "fz": [303, 304], "trivial": [305, 359], "equival": [305, 329, 410], "desir": [305, 311, 400, 416, 419], "onc": [305, 349, 358, 359, 360, 363, 371, 378, 382, 388, 412], "start": [305, 329, 331, 403, 404, 407, 410, 415, 416, 421, 422, 423], "keep_cartesian": [306, 407], "b": [306, 405, 406, 407, 410, 427], "what": [306, 409, 410], "cooddin": 306, "remain": [306, 410, 424], "pbc": 307, "enforc": [307, 410], "perod": 307, "condit": [307, 410], "too": [308, 407, 410, 426], "poscar_supercel": [310, 311, 312, 313, 315, 407], "origin": [311, 331, 381, 382, 383, 384, 410, 416, 420, 422, 423], "overwritten": 311, "b1x": 311, "b1y": 311, "b1z": 311, "b2x": 311, "b2y": 311, "b2z": 311, "b3x": 311, "b3y": 311, "b3z": 311, "note": [311, 359, 398, 405, 412, 416, 417, 419, 428], "creation": [311, 410], "make": [311, 349, 353, 355, 358, 363, 386, 387, 388, 389, 390, 391, 392, 393, 394, 406, 407, 409, 410, 421, 423], "deep": 311, "copi": [311, 353, 410, 419], "analysi": [313, 349, 422, 423], "real": [313, 359, 423], "featur": [313, 331, 355, 359, 366, 374, 410, 421, 422, 423], "storag": [313, 410], "util": [313, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 397, 398, 399, 400, 405, 406, 410, 417, 421, 422, 423, 426], "poscarutil": [313, 407], "poscardiff": [313, 315], "strcutur": 314, "repair": [316, 317, 324, 325, 331, 345, 347, 410, 422, 424], "apply_symmetri": [316, 317, 357, 387, 388, 389, 390, 391, 392, 393, 394], "fermihandl": [317, 318, 319, 320, 321, 322, 323, 345, 349, 355, 387, 388, 389, 390, 391, 392, 393, 394], "Then": [317, 355, 361, 362, 364, 365, 366, 367, 370, 372, 373, 374, 377, 381, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 400, 428], "srufac": [317, 318, 321], "iso_rang": [318, 321, 331, 390, 391, 422], "iso_surfac": [318, 321, 331, 390, 391, 422], "iso_valu": [318, 321, 391], "spin_textur": [318, 319, 320, 321, 322, 330, 331, 357, 381, 382, 383, 384, 386, 387, 388, 389, 390, 391, 392, 393, 395, 409, 421, 422], "property_nam": [318, 319, 320, 321, 322, 357], "save_gif": [318, 322, 391], "print_plot_opt": [318, 319, 320, 321, 322, 325, 326, 329, 330, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 416, 421, 428], "slide": [318, 321], "go": [318, 321, 329, 331, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 397, 398, 399, 400, 403, 404, 405, 406, 407, 412, 422], "ther": [318, 321, 327], "slider": [318, 321, 331, 422], "slice_norm": [319, 320, 331, 387, 389, 422], "slice_origin": [319, 320, 331, 387, 389, 422], "save_2d": [319, 320, 321, 322], "save_2d_slic": [319, 320, 389], "save_mp4": 322, "save_3d": 322, "gap": [324, 359, 363, 398], "bands_set": [325, 345, 377, 378], "cubic": [325, 326, 327, 416, 428], "interpolation_typ": [325, 326, 327, 416, 428], "projection_mask": [325, 326, 327, 329, 416, 428], "dos_set": [325, 345, 377, 378], "dos_limit": [325, 329], "savefig": [325, 326, 327, 329, 330, 360, 371, 416, 418, 419, 421, 428], "k_limit": 325, "title_fonts": 325, "draw_fermi": 325, "plot_color_bar": [325, 360, 371, 382, 383, 384], "keyword": [325, 345, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 410, 420], "argument": [325, 329, 331, 345, 349, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 410, 419, 420, 422, 425, 427], "window": [325, 326, 327, 329, 359, 410, 416, 422], "structutr": [326, 416], "sting": [326, 416], "kanem": [326, 416], "decid": [326, 410, 416, 421], "plt": [326, 327, 329, 330, 405, 416, 421, 428], "bandstructur": [327, 336, 410, 417], "kitck": 327, "objext": 327, "outfil": [328, 333, 334, 400, 417, 423, 426], "procar_merg": [328, 417], "gz": [328, 417], "mergeparallel": [328, 417], "fixformat": [328, 417], "nspin": [328, 353, 417, 420], "concaten": [328, 339, 345, 348, 424], "procar_": [328, 417], "compress": [328, 417], "parallel": [328, 348, 417], "detect": [328, 363, 417], "nsppol": [328, 417], "being": [329, 387, 410], "carri": [329, 359, 410, 416, 419], "srvo3": 329, "perform": [329, 331, 349, 350, 353, 355, 410, 413, 414, 421, 422, 423, 425, 428], "explain": [329, 348, 410, 422], "exmapl": [329, 387, 389, 390, 391, 392, 393, 394, 397, 399, 400, 403, 404, 406, 407], "tutori": [329, 367, 411, 422], "parametric_lin": [329, 371, 372, 373, 377, 378, 424], "stack_orbit": [329, 370, 371, 372, 373, 374, 377, 378, 424], "stack_speci": [329, 371, 372, 373, 377, 378, 424], "polor": 329, "packag": [329, 331, 353, 357, 358, 360, 371, 378, 382, 388, 405, 406, 407, 410, 416, 419, 422], "relev": [329, 331, 349, 359, 410, 422], "srvo": [329, 331, 415, 416, 419, 422], "choos": [329, 331, 359, 410, 422], "oxygen": [329, 331, 419, 422], "sr1": [329, 331, 422], "o3": [329, 331, 422], "900891": [329, 331, 422], "000000": [329, 331, 422, 426], "sr": [329, 331, 415, 416, 419, 422], "500000": [329, 331, 422], "noth": [329, 331, 410, 422], "indeci": [329, 331, 422], "relav": [329, 331, 422], "while": [329, 331, 359, 410, 419, 422, 423], "ask": [329, 410, 419], "graph": [329, 410], "higher": 329, "accept": [329, 410, 420], "png": [329, 331, 389, 416, 419, 422, 428], "jpg": 329, "interact": [329, 405, 410, 422], "well": [329, 359, 381, 383, 410, 416, 417, 422], "entri": [329, 367, 407], "cal": 329, "argumnet": [329, 419], "elk": [329, 351, 414, 415, 416, 418, 419], "fill": [329, 419], "under": [329, 410, 419], "curv": [329, 419], "For": [329, 345, 355, 361, 363, 364, 365, 366, 367, 370, 372, 373, 374, 382, 383, 387, 388, 389, 390, 391, 392, 393, 394, 397, 410, 415, 416, 419, 421, 422, 423, 424, 428], "clarif": 329, "visit": 329, "specif": [329, 345, 352, 358, 359, 388, 405, 406, 410, 411, 415, 416, 419, 422], "clarifi": 329, "lingo": 329, "top": [329, 419], "take": [329, 345, 353, 359, 363, 364, 372, 410, 420, 425, 427], "treat": [329, 410, 421], "subplot": [329, 405, 406], "larger": [329, 410], "row": [329, 415, 416, 423], "colomun": 329, "fig": [329, 362, 405, 416], "linspac": 329, "pi": [329, 387], "1000": [329, 405], "sin": 329, "plt_show": 329, "skip": [329, 422], "set_ylim": 329, "k_z_plane": [330, 421], "k_z_plane_tol": [330, 421], "rot_symm": [330, 421], "translat": [330, 424], "exportplt": [330, 421, 428], "k_z": [330, 421], "invalid": [330, 410, 421], "background_color": [331, 388, 422], "save_color": [331, 422], "calculate_fermi_spe": [331, 422], "calculate_fermi_veloc": [331, 422], "calculate_effective_mass": [331, 422], "arrow_color": [331, 382, 383, 422], "arrow_s": [331, 382, 383, 384, 388, 389, 394, 422], "015": [331, 400, 422], "only_spin": [331, 422], "savegif": [331, 422], "savemp4": [331, 422], "save3d": [331, 422], "save_meshio": [331, 422], "perspect": [331, 422], "save2d": [331, 422], "show_slic": [331, 422], "show_cross_section_area": [331, 389, 422], "iso_slid": [331, 422], "camera_po": [331, 422], "widget": [331, 389, 422], "simul": [331, 363, 422], "mgb2": [331, 367, 422], "ni_f": [331, 422], "49": [331, 422, 425], "iter": [331, 422], "ones": [331, 419, 422], "14": [331, 364, 372, 383, 389, 395, 403, 415, 422, 424], "17": [331, 357, 364, 372, 384, 388, 395, 403, 404, 415, 422], "kgrid": [331, 422], "5x5x5": [331, 422], "lead": [331, 422], "20x20x20": [331, 422], "uniform": [331, 422], "direect": [331, 422], "rgba": [331, 422], "whena": [331, 422], "recomend": [331, 422], "qualit": [331, 422], "grai": [331, 422], "allow": [331, 359, 363, 410, 415, 416, 421, 422, 428], "web": [331, 422], "page": [331, 410, 411, 414, 422], "http": [331, 349, 367, 387, 410, 412, 422], "org": [331, 367, 387, 410, 422], "user": [331, 345, 359, 361, 363, 364, 365, 366, 370, 372, 373, 374, 400, 410, 415, 416, 419, 421, 422], "html": [331, 349, 367, 410, 422], "surfca": [331, 422], "property_project": [331, 357, 422], "fermi_velocity_vector": [331, 422], "mean": [331, 361, 363, 364, 365, 366, 370, 372, 373, 374, 410, 422], "effective_mass": [331, 422], "collinear": [331, 415, 416, 420, 422, 424], "As": [331, 359, 405, 410, 416, 422, 424], "suggest": [331, 422], "abov": [331, 352, 353, 355, 359, 384, 387, 390, 391, 404, 410, 415, 416, 418, 422], "belov": [331, 422], "fast": [331, 422], "rather": [331, 422, 423, 428], "inaccur": [331, 410, 422], "nearest": [331, 363, 405, 407, 422], "neighbor": [331, 363, 405, 407, 422], "accur": [331, 422], "linear": [331, 422], "gif": [331, 391, 422], "mp4": [331, 422], "video": [331, 422], "export": [331, 422, 424], "stl": [331, 422], "binari": [331, 422], "ply": [331, 422], "ascii": [331, 422], "off": [331, 386, 387, 388, 389, 390, 391, 392, 393, 394, 397, 399, 400, 403, 404, 406, 407, 409, 422], "obj": [331, 422], "gltf": [331, 422], "collada": [331, 422], "meshio": [331, 422], "illus": [331, 422], "depth": [331, 411, 422], "graphic": [331, 422], "turn": [331, 386, 387, 388, 389, 390, 391, 392, 393, 394, 409, 422], "largest": [331, 422], "show_curvatur": [331, 422], "curvatur": [331, 422], "curvature_typ": [331, 422], "avail": [331, 410, 411, 416, 421, 422, 428], "gaussian": [331, 422], "iso_energi": [331, 422], "view": [331, 410, 422], "camera": [331, 422], "nkx": 332, "nky": 332, "grid_siz": 333, "40": [333, 350, 385, 387, 400, 404, 406, 416], "with_time_revers": 333, "recip": [333, 349, 400, 422], "hpkot": [333, 400], "threshold": [333, 400, 405], "07": [333, 385, 400, 408], "angle_toler": 333, "supercell_matrix": [333, 367, 400, 428], "recepi": 333, "procarrepair": [334, 426], "exist": 335, "pre": [345, 367, 377, 378, 381, 382, 383, 384, 397, 400, 410, 413, 414], "post": [345, 367, 377, 378, 381, 382, 383, 384, 397, 400, 410, 413, 414, 423], "cat": [345, 348, 417, 424], "depend": [345, 412, 419], "mai": [345, 359, 366, 367, 374, 410, 416, 422], "orbitald": 345, "bandsplot_2d": 345, "bandtructur": 345, "combin": [345, 378, 382, 410, 415, 416, 417, 422], "fermi2d": [345, 380, 382, 384, 385, 409, 421], "fermi3d": [345, 352, 353, 386, 395, 409, 422], "generate2dkmesh": [345, 397], "kmesh": [345, 349, 352, 355, 399], "bandgap": [345, 396, 401, 409], "reapir": 345, "abinitoutput": 348, "prtprocar": 348, "nameofoutputfil": 348, "split": [348, 380, 385, 403, 404, 406, 407, 409, 417, 421], "guid": [349, 351, 353, 355, 361, 364, 365, 366, 370, 372, 373, 374, 411], "eigenvector": 349, "writeeigenvector": 349, "ye": 349, "eigenvectorsastext": 349, "block": [349, 416, 424], "calcualt": 349, "writebandout": 349, "analisi": 349, "writedetailedxml": 349, "writedetailedout": 349, "your": [349, 352, 353, 410, 411, 422], "dftb_in": 349, "hsd": 349, "ouput": 349, "much": [349, 363, 407], "faster": [349, 423], "variou": [349, 352, 353, 355, 360, 371, 378, 382, 388, 413, 414, 420, 424, 425, 427], "independ": [349, 352, 353, 355, 410], "bin": [349, 353, 405], "dftbplu": 349, "readthedoc": 349, "en": 349, "latest": 349, "basic": [349, 410, 413, 414, 416, 419], "bandstruct": 349, "sure": [349, 353, 355, 386, 387, 388, 389, 390, 391, 392, 393, 394, 406, 409, 410], "respect": [349, 363, 407, 410, 415, 416, 421, 423, 428], "readinitialcharg": 349, "maxscciter": 349, "hamiltonian": 349, "kpointsandweight": 349, "suppos": 349, "scctoler": 349, "kline": 349, "333333": 349, "gamma": [349, 350, 355, 358, 397, 416, 417, 425, 427, 428], "bandlin": 350, "band_": [350, 415, 416], "_a": 350, "obtain": [350, 403, 405, 413, 414, 416, 417, 424], "task": [350, 359, 413, 414], "22": [350, 403, 404, 407], "addition": [350, 420], "spinpol": 350, "These": [350, 356, 369, 376, 377, 378, 380, 386, 396, 402, 409, 410, 415, 416, 422], "join": [350, 357, 360, 371, 382, 388, 403, 404, 405, 406, 407], "plot1d": 350, "were": [350, 404, 410], "prepar": 351, "perper": 351, "dftb": 351, "fatband": 352, "lobter": 352, "lobstercod": 352, "v6": [352, 353], "pw": [352, 353], "bands_dirnam": [352, 353, 355], "dos_dirnam": [352, 353, 355], "bands_mod": [352, 353, 355], "dos_mod": [352, 353, 355], "right": [352, 363, 405, 410, 419, 422, 424], "addit": [352, 353, 355, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 410, 424], "wf_collect": 352, "nosym": 352, "noinv": 352, "k_point": [352, 353], "520": 352, "0000000": 352, "1428571": 352, "2857143": 352, "4285714": 352, "0000000000": [352, 353], "0000": 352, "0200000000": 352, "4800000000": 352, "5000000000": [352, 353], "5110420726": 352, "4889579274": 352, "7539676705": 352, "2460323295": 352, "7650097432": 352, "2349902568": 352, "h2": 352, "h0": 352, "2238002446": 352, "meth": 352, "explicitli": [352, 353, 410], "lobster_input_fil": 352, "explicit": [352, 353], "createfatband": 352, "2p_x": 352, "2p_y": 352, "2p_z": 352, "li": [352, 410], "refer": [352, 361, 364, 365, 366, 370, 372, 373, 374, 382, 383, 410, 415, 416, 420, 424, 425, 427], "fe": [352, 360, 361, 362, 364, 365, 366, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 388, 389, 390, 391, 392, 393, 394, 398, 399, 400], "lobster_q": 352, "projwfc": 353, "kresolveddo": 353, "main": [353, 363, 420, 425, 427], "nscf": 353, "crystal_b": 353, "6250000000": 353, "2500000000": 353, "u": [353, 410, 411, 421], "3750000000": 353, "7500000000": 353, "w": [353, 410, 422], "occur": [353, 410, 416], "269": 353, "0083333333": 353, "0166666667": 353, "0250000000": 353, "0333333333": 353, "0416666667": 353, "4916666667": 353, "5062500000": 353, "0125000000": 353, "6125000000": 353, "2250000000": 353, "6187500000": 353, "2375000000": 353, "3691406250": 353, "7382812500": 353, "3632812500": 353, "7265625000": 353, "3574218750": 353, "7148437500": 353, "0058593750": 353, "0117187500": 353, "starting_magnet": 353, "branch": 353, "instal": [353, 406, 410], "git": [353, 412], "clone": 353, "gitlab": 353, "com": [353, 410, 412], "pietrodeluga": 353, "q": [353, 422], "cd": [353, 412], "checkout": 353, "new_proj": 353, "side": [353, 378, 406, 410], "noncolin": 353, "lspinorb": 353, "savesigma": 353, "still": [354, 410], "develop": [354, 367, 377, 378, 381, 382, 383, 384, 397, 400, 414], "lorbit": [355, 428], "11": [355, 364, 372, 403, 410, 415, 424], "12": [355, 364, 372, 378, 403, 404, 415, 422, 424, 428], "wave": [355, 424], "ispin": [355, 428], "lnoncollinear": 355, "icharg": 355, "math": [355, 415, 416], "chgcar": 355, "line_mod": 355, "h": [355, 363, 405, 410, 425, 428], "demonstr": [356, 360, 369, 371, 376, 378, 380, 382, 386, 388, 396, 402, 404, 406, 407, 409], "capabl": [356, 359, 369, 376, 380, 386, 396, 409, 413, 414, 416, 422], "autoband": [356, 368, 409], "invers": [356, 359, 368, 409], "particip": [356, 359, 368, 409], "ratio": [356, 359, 368, 409], "download": [357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 397, 398, 399, 400, 403, 404, 405, 406, 407, 409], "data_dir": [357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 397, 398, 399, 400, 403, 404, 405, 406, 407], "download_exampl": [357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 398, 399, 400], "save_dir": [357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 398, 399, 400], "graphen": 357, "spin_calc_typ": [357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 398, 399, 400], "calc_typ": [357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 398, 399, 400], "2d_band": 357, "root": [357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 398, 399, 400, 403, 404, 405, 406, 407], "sep": [357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 398, 399, 400, 403, 404, 406, 407], "bandstructure2dhandl": 357, "plot_band_structur": 357, "add_fermi_plan": 357, "fermi_plane_s": 357, "energy_lim": 357, "There": [357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 411], "pass": [357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 410], "research": [357, 358, 360, 363, 367, 371, 381, 382, 383, 384, 388, 411], "venv_doc": 357, "lib": 357, "site": [357, 415, 416, 424], "52": [357, 404, 424], "userwarn": [357, 358, 363, 367], "caus": [357, 410], "filter": [357, 359, 399, 424], "cast": 357, "float32": 357, "disabl": 357, "force_float": 357, "band_veloc": [357, 399], "scalar_bar_position_x": [357, 388], "scalar_bar_titl": [357, 388], "bisb_monolay": [357, 384], "fermi_text_posit": 357, "clip_brillouin_zone_factor": 357, "surface_clim": [357, 388], "18": [357, 384, 403, 407, 408], "19": [357, 384, 403, 404], "21": [357, 384, 403], "minut": [357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 397, 398, 399, 400, 403, 404, 405, 406, 407], "31": [357, 368, 403], "780": [357, 368], "plot_2d_band": [357, 368], "jupyt": [357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 397, 398, 399, 400, 403, 404, 405, 406, 407, 409], "notebook": [357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 397, 398, 399, 400, 403, 404, 405, 406, 407, 409], "ipynb": [357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 397, 398, 399, 400, 403, 404, 405, 406, 407], "galleri": [357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 397, 398, 399, 400, 403, 404, 405, 406, 407, 409], "sphinx": [357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378, 381, 382, 383, 384, 387, 388, 389, 390, 391, 392, 393, 394, 397, 398, 399, 400, 403, 404, 405, 406, 407, 409], "illustr": [358, 360, 371, 378, 382, 388, 419, 424], "compound": 358, "hbn": 358, "cncn": 358, "dive": [358, 359, 360, 363, 371, 378, 382, 388, 405, 406], "cnn": 358, "necessari": [358, 359, 363, 410, 416, 424], "librari": [358, 359, 363, 367, 377, 378, 381, 382, 383, 384, 397, 400, 410, 412, 413, 414], "focu": [358, 422], "re": [358, 423], "interest": [358, 359, 363, 410, 422], "96": 358, "97": 358, "42": [358, 404], "44": 358, "clim": [358, 360, 363, 371, 378, 382], "overlay_speci": [358, 359, 360, 362, 363, 364, 365, 366, 367, 377, 378], "overlay_orbit": [358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 377, 378], "ebs_plot": [358, 363, 367, 416, 418], "607": [358, 363], "attempt": [358, 363, 410], "ident": [358, 363], "singular": [358, 363], "set_xlim": [358, 363], "246": 358, "98": 358, "900x600": [358, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374], "ylabel": [358, 360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378], "468": [358, 368], "plot_atomic_level": [358, 368], "power": [359, 410], "correl": [359, 415, 416], "defect": [359, 402, 405, 408, 409, 410], "tradition": 359, "That": [359, 413, 414], "tediou": 359, "prone": [359, 363], "care": [359, 421], "aim": [359, 410], "bulk": [359, 363], "fundament": [359, 363, 410], "insul": 359, "identifi": [359, 410, 415, 416, 421], "van": [359, 363, 386, 395, 409], "der": [359, 363], "waal": [359, 363], "suitabl": [359, 400, 410], "emphas": 359, "execut": [359, 368, 375, 379, 385, 395, 401, 408, 410, 416], "without": [359, 407, 410, 419, 422], "intervent": 359, "identif": [359, 363], "evalu": 359, "autom": 359, "statist": 359, "distinct": 359, "rest": 359, "scenario": 359, "readili": [359, 410], "appar": 359, "standard": [359, 410], "robust": [359, 413, 414], "geometr": 359, "yet": [359, 411], "captur": [359, 363], "howev": [359, 363, 410, 416, 422], "anticip": 359, "continu": [359, 410, 422], "feedback": 359, "bi2se3_data_dir": [359, 363], "auto": 359, "slab": [359, 363, 402, 408, 409], "topolog": 359, "bi": 359, "dirac": 359, "cone": 359, "upper": [359, 405], "report": [359, 424], "txt": 359, "info": 359, "compris": 359, "associ": [359, 410], "autobandsplot": 359, "unknow": 359, "did": [359, 419], "ok": 359, "953": 359, "956": 359, "26": [359, 368, 403, 404, 407], "997": [359, 368], "plot_autoband": [359, 368], "wai": [360, 363, 371, 378, 382, 388, 405, 410, 411, 423], "explor": [360, 371, 378, 382, 388, 403, 405], "print_plot_op": 360, "config_path": [360, 371, 382, 388], "__path__": [360, 371, 382, 388], "spin_color": [360, 371, 388, 393], "colorbar_titl": [360, 371], "colorbar_title_s": [360, 371], "colorbar_title_pad": [360, 371], "colorbar_tick_labels": [360, 371], "fermi_color": [360, 371, 378], "fermi_linestyl": [360, 371, 378], "fermi_linewidth": [360, 371, 378], "grid_axi": [360, 371], "grid_color": [360, 371], "grid_linestyl": [360, 371], "grid_linewidth": [360, 371], "grid_which": [360, 371], "markers": [360, 371, 378], "weighted_color": [360, 371], "weighted_width": [360, 371], "figure_s": [360, 371, 378], "dpi": [360, 371, 378, 382], "xlabel": [360, 361, 362, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 377, 378], "1000x600": [360, 371], "839": [360, 368], "plot_bandsplot_configur": [360, 368], "ref": [361, 364, 365, 366, 370, 372, 373, 374], "atomic_project": [361, 364, 365, 366, 370, 372, 373, 374], "591": [361, 368], "plot_colinear": [361, 368], "vasp_data_dir": 362, "qe_data_dir": 362, "maplotlib": 362, "747": [362, 368], "plot_compare_band": [362, 368], "often": [363, 428], "usual": [363, 421], "procedur": [363, 410], "cumbersom": 363, "lowest": 363, "unoccupi": 363, "neutral": 363, "c_n": 363, "bn": 363, "practic": [363, 410], "delai": 363, "photon": 363, "emitt": 363, "jara2021": 363, "auburger2021": 363, "simpler": [363, 423], "ipr_": 363, "nk": [363, 424], "sum_": [363, 424], "c_": 363, "nki": 363, "left": [363, 405, 422, 424], "sum_a": 363, "nka": 363, "been": [363, 410, 422], "context": [363, 410], "anderson": 363, "evers2000": 363, "kind": [363, 410], "perfectli": 363, "would": [363, 390, 391, 410, 415, 416, 421, 422], "bi2se3": [363, 402, 408, 409], "spinorbit": 363, "c_data_dir": 363, "center": [363, 389, 397, 410, 421, 424], "zhang2009": 363, "six": 363, "quintupl": [363, 403], "five": [363, 415, 416], "thick": 363, "outer": 363, "contrast": [363, 410], "enough": 363, "clear": [363, 410, 418], "substitut": [363, 402, 408, 409], "plu": [363, 410], "adjac": 363, "vacanc": 363, "Its": 363, "ground": 363, "triplet": 363, "microwav": 363, "radiat": 363, "doherty2013": 363, "215": 363, "henc": 363, "to0": 363, "sever": [363, 407, 409, 422], "lie": 363, "dark": 363, "closest": 363, "doubl": [363, 428], "degener": 363, "occupi": 363, "optic": 363, "transit": [363, 421], "430": 363, "to431": 363, "to432": 363, "emiss": 363, "involv": 363, "excit": 363, "occup": 363, "mention": 363, "delta": 363, "scfmethod": 363, "jin2021": 363, "540": 363, "24": [363, 368, 372, 375, 403], "965": [363, 368, 371, 375], "plot_ipr": [363, 368], "sphinx_gallery_thumbnail_numb": [364, 387, 389, 390, 391, 392, 393, 394, 397, 398, 399, 400], "express": [364, 372, 410], "therefor": [364, 372, 410, 415, 428], "651": [364, 368], "plot_noncolinear_q": [364, 368], "116": [365, 368], "plot_noncolinear_vasp": [365, 368], "few": [366, 374], "doc": [366, 374], "default_set": [366, 374], "ini": [366, 374], "518": [366, 368], "plot_spin_polar": [366, 368], "supercell_dir": 367, "supercell_band": 367, "primitive_dir": 367, "primitive_band": 367, "mgb2_unfold": 367, "reflect": 367, "unfold_mod": [367, 428], "diag": [367, 428], "____": [367, 377, 378, 381, 382, 383, 384, 397, 400], "__": [367, 377, 378, 381, 382, 383, 384, 397, 400], "___": [367, 377, 378, 381, 382, 383, 384, 397, 400], "jun": [367, 377, 378, 381, 382, 383, 384, 397, 400], "10th": [367, 377, 378, 381, 382, 383, 384, 397, 400], "2021": [367, 377, 378, 381, 382, 383, 384, 397, 400], "cite": [367, 377, 378, 381, 382, 383, 384, 397, 400, 422], "uthpala": [367, 377, 378, 381, 382, 383, 384, 397, 400, 410], "herath": [367, 377, 378, 381, 382, 383, 384, 397, 400, 410], "pedram": [367, 377, 378, 381, 382, 383, 384, 397, 400, 410], "tavadz": [367, 377, 378, 381, 382, 383, 384, 397, 400, 410], "xu": [367, 377, 378, 381, 382, 383, 384, 397, 400, 410], "he": [367, 377, 378, 381, 382, 383, 384, 397, 400, 410], "eric": [367, 377, 378, 381, 382, 383, 384, 397, 400, 410], "bousquet": [367, 377, 378, 381, 382, 383, 384, 397, 400, 410], "sobhit": [367, 377, 378, 381, 382, 383, 384, 397, 400, 410], "singh": [367, 377, 378, 381, 382, 383, 384, 397, 400, 410], "francisco": [367, 377, 378, 381, 382, 383, 384, 397, 400, 410], "mu\u00f1oz": [367, 377, 378, 381, 382, 383, 384, 397, 400, 410], "aldo": [367, 377, 378, 381, 382, 383, 384, 397, 400, 410], "romero": [367, 377, 378, 381, 382, 383, 384, 397, 400, 410], "comput": [367, 377, 378, 381, 382, 383, 384, 397, 400, 410], "physic": [367, 377, 378, 381, 382, 383, 384, 397, 400, 410], "commun": [367, 377, 378, 381, 382, 383, 384, 397, 400, 410], "251": [367, 377, 378, 381, 382, 383, 384, 397, 400, 410], "2020": [367, 377, 378, 381, 382, 383, 384, 397, 400, 410], "107080": [367, 377, 378, 381, 382, 383, 384, 397, 400, 410], "rees": [367, 377, 378, 381, 382, 383, 384, 397, 400, 410], "boucher": [367, 377, 378, 381, 382, 383, 384, 397, 400, 410], "logan": [367, 377, 378, 381, 382, 383, 384, 397, 400, 410], "lang": [367, 377, 378, 381, 382, 383, 384, 397, 400, 410], "freddi": [367, 377, 378, 381, 382, 383, 384, 397, 400, 410], "farah": [367, 377, 378, 381, 382, 383, 384, 397, 400, 410], "684": 367, "proxi": [367, 410], "artist": 367, "stabl": 367, "intermedi": 367, "legend_guid": 367, "23": [367, 368, 403, 407], "457": [367, 368], "plot_unfold": [367, 368], "04": [368, 375, 401, 405], "130": 368, "examples_00": 368, "03": [368, 379, 404], "mb": [368, 375, 379, 385, 395, 401, 408], "00": [368, 375, 379, 385, 395, 401, 406, 408], "29": [370, 375, 403, 404, 407, 410], "245": [370, 375], "plot_colinear_do": [370, 375], "font_siz": [371, 400], "spin_label": 371, "stack_y_label": 371, "x_label": [371, 382], "y_label": [371, 382], "plot_dosplot_configur": [371, 375], "813": [372, 375], "plot_noncolinear_dos_q": [372, 375], "803": [373, 375], "plot_noncolinear_dos_vasp": [373, 375], "501": [374, 375], "plot_spin_polarized_do": [374, 375], "06": [375, 408], "328": 375, "examples_01": 375, "bands_dir": [377, 378], "dos_dir": [377, 378], "1650x550": [377, 378], "509": [377, 379], "plot_bandsdosplot": [377, 379], "appear": [378, 382, 388], "ll": [378, 382, 388, 403, 404, 405, 406, 407], "overal": 378, "862": [378, 379], "plot_bandsdosplot_configur": [378, 379], "371": 379, "examples_02": 379, "bands_do": 379, "noncolinear": [380, 385, 409, 415], "rashba": [380, 385, 409, 415, 416, 421], "comp": [381, 382, 383, 384], "rot": [381, 382, 383, 384], "trasl": [381, 382, 383, 384], "_____________________________________________________": [381, 382, 383, 384], "add_legend": [381, 382], "contact": [381, 410], "specfic": [381, 383, 387, 389, 390, 391, 392, 393, 394], "541": [381, 385], "plot_fermi2d": [381, 385], "plain_band": [382, 383, 384], "add_axes_label": 382, "no_arrow": [382, 384], "arrow_dens": [382, 383, 384], "spin_project": [382, 383, 384], "442": [382, 385], "plot_fermi2d_configur": [382, 385], "By": [383, 410, 422, 428], "s_z": [383, 415, 416, 421], "arrow_project": 383, "464": [383, 385], "plot_fermi2d_spin_textur": [383, 385], "paper": [384, 387, 410], "had": [384, 410, 416], "bisb": 384, "60ev": 384, "fermei": 384, "90ev": 384, "51": [384, 385, 404], "878": [384, 385], "plot_rashba_spin_split": [384, 385], "326": 385, "examples_03": 385, "isovalue_gif": [386, 395, 409], "alphen": [386, 395, 409], "fequenc": [386, 395, 409], "cross_sect": [386, 395, 409], "de": [387, 410], "frequenc": 387, "theoret": 387, "freuqenc": 387, "taken": [387, 410], "experiment": 387, "copper": 387, "silver": 387, "gold": 387, "haa": 387, "doi": [387, 400, 410, 422], "1098": 387, "rsta": 387, "1962": 387, "0011": 387, "hbar": 387, "cg": 387, "768e": 387, "statcoulomb": 387, "0e": 387, "cm": 387, "0546e": 387, "27": [387, 393, 395, 403, 404, 407], "erg": 387, "au": 387, "ensur": [387, 388, 389, 390, 391, 392, 393, 394, 397, 399, 400, 403, 404, 406, 407, 410], "screen": [387, 388, 389, 390, 391, 392, 393, 394, 397, 399, 400, 403, 404, 406, 407, 428], "off_screen": [387, 388, 389, 390, 391, 392, 393, 394, 397, 399, 400, 403, 404, 406, 407], "actual": [387, 388, 389, 390, 391, 392, 393, 394, 410], "plot_fermi_cross_section_box_widget": 387, "surface_opac": [387, 388], "Near": [387, 388, 389, 390, 391, 392, 393, 394], "1586": 387, "ang": 387, "1586e": 387, "365e": 387, "f_": 387, "exp": 387, "50e": 387, "1596": 387, "1596e": 387, "68e": 387, "3956": 387, "3956e": 387, "61e": 387, "85e": 387, "452": [387, 395], "plot_de_hass_van_alphen": [387, 395], "plot_fermi_surfac": [388, 392, 393, 394], "surface_cmap": [388, 393], "surface_color": 388, "surface_bands_color": 388, "brillouin_zone_styl": 388, "brillouin_zone_line_width": 388, "brillouin_zone_color": 388, "brillouin_zone_opac": 388, "texture_cmap": 388, "texture_color": 388, "texture_s": 388, "texture_scal": 388, "texture_opac": 388, "add_ax": 388, "x_axes_label": 388, "y_axes_label": 388, "z_axes_label": 388, "axes_label_color": 388, "axes_line_width": 388, "add_scalar_bar": 388, "scalar_bar_label": 388, "scalar_bar_ital": 388, "scalar_bar_bold": 388, "scalar_bar_title_font_s": 388, "scalar_bar_label_font_s": 388, "scalar_bar_position_i": 388, "scalar_bar_color": 388, "orbit_gif_n_point": 388, "orbit_gif_step": 388, "orbit_mp4_n_point": 388, "orbit_mp4_step": 388, "plotter_offscreen": 388, "plotter_camera_po": 388, "isoslider_titl": 388, "isoslider_styl": 388, "isoslider_color": 388, "cross_section_slice_linewidth": [388, 389], "cross_section_slice_show_area": 388, "454": [388, 395], "plot_fermi3d_configur": [388, 395], "outermost": 389, "line_width": [389, 403, 404, 406, 407], "plot_fermi_cross_sect": 389, "2d_slice": 389, "053": [389, 395], "plot_fermi3d_cross_sect": [389, 395], "throughout": [390, 391, 410], "plot_fermi_isoslid": 390, "33": [390, 395, 403, 404], "821": [390, 395], "plot_fermi3d_isoslid": [390, 395], "exact": [391, 410], "create_isovalue_gif": 391, "34": [391, 395, 403], "508": [391, 395], "plot_fermi3d_isovalue_gif": [391, 395], "667": [392, 395], "plot_fermi3d_plain": [392, 395], "690": [393, 395], "plot_fermi3d_spin": [393, 395], "996": [394, 395], "plot_fermi3d_spin_textur": [394, 395], "48": 395, "641": 395, "examples_04": 395, "kmesh_gener": [396, 401, 409, 421], "kpath_gener": [396, 401, 409], "particularli": [397, 417, 421, 426], "command": [397, 410, 412, 417, 418], "num_grids_x": 397, "num_grids_i": 397, "add_mesh": [397, 399, 403, 404, 406, 407], "show_ax": [397, 400], "show_grid": [397, 400], "466": [397, 401], "plot_2dkmesh_gener": [397, 401], "band_gap": 398, "138": [398, 401], "plot_bandgap": [398, 401], "dir": [399, 420, 425, 427], "pv": [399, 403, 404, 406, 407], "e_fermi": 399, "ibz2fbz": [399, 420], "enectron": 399, "3375": 399, "let": [399, 403, 404, 405, 407, 416], "band_0": 399, "atom_0": 399, "orbital_5": 399, "bands_gradi": 399, "08": 399, "scalar_bar_arg": 399, "band_spe": 399, "show_scalar_bar": [399, 403, 404, 406, 407], "harmonic_average_effective_mass": 399, "765": [399, 401], "plot_eb": [399, 401], "momentum": [400, 422], "enabl": [400, 410, 421, 422, 428], "suffici": 400, "retriev": [400, 416], "slight": 400, "modif": [400, 407, 410], "regard": [400, 403, 404, 410, 421, 423], "seek": 400, "seekpath": [400, 412], "hinuma": 400, "et": [400, 422], "al": [400, 422], "pizzi": 400, "kumagai": 400, "oba": 400, "tanaka": 400, "diagram": 400, "crystallographi": 400, "scienc": [400, 410], "128": 400, "2017": 400, "140": 400, "184": 400, "1016": [400, 410], "commatsci": 400, "2016": 400, "k_path": 400, "k_label": 400, "ey": 400, "unique_label": 400, "unique_kpath": 400, "enumer": [400, 403, 405], "append": [400, 405], "ik": 400, "len": [400, 403], "add_lin": 400, "els": 400, "add_point_label": [400, 403, 404, 406, 407], "point_color": 400, "text_color": 400, "always_vis": [400, 403, 404, 406, 407], "view_yz": 400, "599": [400, 401], "plot_kpath_gener": [400, 401], "968": 401, "examples_05": 401, "cluster": [402, 404, 408, 409], "analyz": [402, 408, 409, 421], "radial": [402, 408, 409], "distribut": [402, 408, 409, 410, 411], "rdf": [402, 408, 409], "ql": 403, "itertool": [403, 404, 405, 406, 407], "def": [403, 404, 406, 407], "create_gif": [403, 404, 406, 407], "unit_cel": [403, 404, 406, 407], "save_fil": [403, 404, 406, 407], "add_titl": [403, 404, 406, 407], "delaunay_3d": [403, 404, 406, 407], "extract_feature_edg": [403, 404, 406, 407], "render_lines_as_tub": [403, 404, 406, 407], "show_point": [403, 404, 406, 407], "generate_orbital_path": [403, 404, 406, 407], "n_point": [403, 404, 406, 407], "open_gif": [403, 404, 406, 407], "orbit_on_path": [403, 404, 406, 407], "write_fram": [403, 404, 406, 407], "viewup": [403, 404, 406, 407], "close": [403, 404, 406, 407, 410, 422], "clusters_map": 403, "i_atom": 403, "clusters_arrai": 403, "28": [403, 407, 410], "32": [403, 404], "atoms_befor": [403, 404, 406, 407], "labels_befor": [403, 404, 406, 407], "zip": [403, 404, 405, 406, 407, 409], "labels_aft": [403, 404, 406, 407], "unit_cell_comb": [403, 404, 406, 407], "repeat": [403, 404, 406, 407, 424], "comb": [403, 404, 406, 407], "unit_cell_befor": [403, 404, 407], "atoms_before_clust": 403, "atoms_after_clust": 403, "360": [403, 408], "plot_clusters_pyposcar": [403, 408], "agnr": [404, 405, 407], "finddefect": 404, "all_defect": 404, "nthe": 404, "write_defect": 404, "inspect": 404, "subtitut": 404, "0d": 404, "agrn": 404, "edg": 404, "tmp_a": [404, 407], "atoms_aft": [404, 406, 407], "unit_cell_aft": [404, 407], "atoms_before_defect_find": 404, "atoms_after_defect_find": 404, "find_forgein_atom": 404, "delimit": 404, "minima": 404, "maxima": 404, "less": 404, "nearest_neighbors_environ": 404, "environ": [404, 405], "abund": 404, "35": 404, "53": 404, "54": [404, 428], "55": 404, "56": 404, "57": 404, "58": 404, "59": 404, "60": [404, 407, 410, 421, 423], "62": 404, "63": 404, "64": [404, 407], "65": [404, 407], "200": [404, 408], "plot_finding_defects_pyposcar": [404, 408], "insight": 405, "probabl": 405, "certain": [405, 410, 415, 416, 421], "anoth": [405, 419, 422], "understand": 405, "gridspec": 405, "my_rdf": 405, "thresholdsp": 405, "neighbor_thresholdsp": 405, "spcurv": 405, "kde_curvesp": 405, "share": [405, 410], "domain": [405, 410], "kde_spac": 405, "cutoff": 405, "inter": 405, "meaaningful": 405, "defen": 405, "databas": 405, "neighborsclass": 405, "latticeutil": [405, 407], "estimatemaxbonddist": 405, "neighbor_threshold": 405, "d_max": 405, "9500000000000002": 405, "6500000000000001": 405, "95": 405, "4772259999999975": 405, "height_ratio": 405, "ax1": 405, "ax2": 405, "ax3": 405, "kde_curv": 405, "set_titl": [405, 416], "cc": 405, "cycl": 405, "next": [405, 410, 422], "flatten": 405, "histogram": 405, "distance_matrix": 405, "100": 405, "patch": 405, "hist": 405, "edgecolor": 405, "alpha": [405, 424, 427], "set_xlabel": 405, "tolist": 405, "plotlabel": 405, "var_cutoff": 405, "leg1": 405, "loc": 405, "data_cutoff": 405, "leg2": 405, "color_label": 405, "add_artist": 405, "tight_layout": 405, "7725483399593904": 405, "8348023074035522": 405, "9434419177103412": 405, "7744469683442248": 405, "3036753236814713": 405, "4123149339882604": 405, "2433199846221439": 405, "0520815280171307": 405, "883086578651014": 405, "7140916292848973": 405, "719": [405, 408], "plot_rdf_cutoff_pyposcar": [405, 408], "boron": 406, "nitrogen": 406, "yb6": 406, "nelement": 406, "nposit": 406, "098": 406, "1989": 406, "8011": 406, "nchang": 406, "new_po": 406, "border": 406, "106": [406, 408], "plot_subsitution_pyposcar": [406, 408], "poscar_util": 407, "9agnr": 407, "shrink": [407, 428], "smaller": [407, 423], "atoms_before_sc": 407, "atoms_after_sc": 407, "3878": 407, "71": 407, "726": 407, "9087": 407, "nnow": 407, "3x1x1": 407, "311": 407, "atoms_before_supercel": 407, "atoms_after_supercel": 407, "nfinal": 407, "change_el": 407, "atoms_before_defect": 407, "atoms_after_defect": 407, "nn": 407, "nn_list": 407, "327": [407, 408], "plot_utils_pyposcar": [407, 408], "38": 408, "711": 408, "examples_06": 408, "examples_python": 409, "examples_jupyt": 409, "open": [410, 413, 414, 422], "head": [410, 411], "bibtex": 410, "articl": [410, 422], "herath2020107080": 410, "journal": [410, 422], "year": [410, 422], "issn": 410, "0010": 410, "4655": 410, "cpc": 410, "2019": [410, 422], "url": [410, 422], "www": 410, "sciencedirect": 410, "pii": 410, "s0010465519303935": 410, "condens": 410, "matter": 410, "lang2024109063": 410, "maintain": 410, "reliabl": 410, "297": 410, "109063": 410, "2024": 410, "2023": 410, "s0010465523004083": 410, "andr": 410, "tellez": 410, "nicola": 410, "vasquez": 410, "who": 410, "made": 410, "substanti": 410, "concept": 410, "design": 410, "softwar": [410, 422], "draft": 410, "substant": 410, "revis": 410, "global": 410, "effort": 410, "team": 410, "thank": 410, "jan": 410, "janssen": 410, "litong": 410, "jiang": 410, "nichola": 410, "pike": 410, "don": [410, 411], "munoz": 410, "departamento": 410, "isica": 410, "facultad": 410, "ciencia": 410, "universidad": 410, "chile": 410, "santiago": 410, "nanosci": 410, "nanotechnologi": 410, "cedenna": 410, "depart": 410, "astronomi": 410, "west": 410, "virginia": 410, "univers": 410, "morgantown": 410, "wv": 410, "26505": 410, "6315": 410, "usa": 410, "rutger": 410, "piscatawai": 410, "nj": 410, "08854": 410, "physiqu": 410, "eoriqu": 410, "mat": 410, "eriaux": 410, "cesam": 410, "universit": 410, "eg": 410, "4000": 410, "sart": 410, "tilman": 410, "belgium": 410, "gnu": 410, "public": [410, 411, 422], "june": 410, "2007": 410, "copyright": 410, "free": 410, "foundat": 410, "inc": 410, "fsf": 410, "everyon": 410, "permit": 410, "verbatim": 410, "document": [410, 419], "preambl": 410, "copyleft": 410, "awai": 410, "freedom": 410, "guarante": 410, "releas": 410, "speak": 410, "price": 410, "wish": [410, 416], "receiv": 410, "piec": 410, "know": 410, "thing": 410, "protect": 410, "prevent": [410, 426], "deni": 410, "surrend": 410, "respons": 410, "grati": 410, "fee": 410, "recipi": 410, "And": 410, "gpl": 410, "assert": 410, "offer": 410, "give": [410, 421, 424], "legal": 410, "permiss": [410, 426], "warranti": 410, "sake": 410, "mark": 410, "erron": [410, 426], "previou": 410, "devic": 410, "although": 410, "manufactur": 410, "incompat": 410, "systemat": 410, "pattern": 410, "abus": 410, "individu": 410, "unaccept": 410, "prohibit": 410, "those": 410, "aris": [410, 426], "stand": 410, "provis": 410, "futur": [410, 416], "threaten": 410, "constantli": 410, "patent": 410, "restrict": 410, "purpos": [410, 428], "avoid": 410, "danger": 410, "could": [410, 416, 421, 423], "proprietari": 410, "assur": 410, "cannot": 410, "AND": 410, "definit": [410, 422], "law": 410, "semiconductor": 410, "license": 410, "address": 410, "organ": 410, "adapt": 410, "fashion": 410, "earlier": 410, "unmodifi": 410, "propag": 410, "anyth": 410, "directli": 410, "secondarili": 410, "liabl": 410, "infring": 410, "applic": 410, "except": 410, "privat": 410, "countri": 410, "activ": 410, "convei": 410, "parti": 410, "mere": 410, "network": 410, "transfer": 410, "appropri": 410, "notic": 410, "extent": 410, "promin": 410, "visibl": [410, 411], "tell": 410, "menu": 410, "meet": 410, "criterion": 410, "offici": 410, "recogn": 410, "bodi": 410, "languag": 410, "wide": 410, "among": 410, "serv": 410, "essenti": [410, 420], "kernel": 410, "compil": 410, "produc": [410, 428], "interpret": 410, "tool": 410, "link": [410, 419], "subprogram": 410, "intim": 410, "flow": 410, "regener": 410, "grant": 410, "irrevoc": 410, "met": 410, "affirm": 410, "unlimit": 410, "constitut": 410, "acknowledg": [410, 411], "fair": 410, "long": [410, 416], "sole": 410, "exclus": 410, "facil": 410, "compli": 410, "thu": [410, 415], "behalf": 410, "outsid": 410, "relationship": 410, "circumst": 410, "sublicens": 410, "unnecessari": 410, "anti": 410, "circumvent": 410, "shall": 410, "deem": 410, "technolog": 410, "measur": 410, "fulfil": 410, "oblig": 410, "wipo": 410, "treati": 410, "adopt": 410, "decemb": 410, "1996": 410, "waiv": 410, "forbid": 410, "exercis": 410, "disclaim": 410, "intent": 410, "against": 410, "medium": 410, "conspicu": 410, "publish": [410, 422], "intact": 410, "absenc": 410, "date": [410, 412, 422], "entir": 410, "anyon": 410, "possess": 410, "regardless": 410, "natur": 410, "aggreg": 410, "beyond": [410, 416, 419], "inclus": 410, "machin": 410, "readabl": 410, "embodi": 410, "accompani": 410, "durabl": 410, "customarili": 410, "interchang": 410, "valid": 410, "least": 410, "three": [410, 415, 416, 417, 422, 423], "spare": 410, "model": 410, "reason": [410, 416], "cost": 410, "server": 410, "altern": 410, "occasion": 410, "noncommerci": 410, "subsect": 410, "6b": 410, "sai": 410, "host": 410, "satisfi": 410, "peer": 410, "transmiss": 410, "6d": 410, "portion": 410, "whose": 410, "exclud": 410, "consum": 410, "tangibl": 410, "person": 410, "famili": 410, "household": 410, "sold": 410, "incorpor": [410, 416], "dwell": 410, "doubt": 410, "favor": 410, "coverag": 410, "common": 410, "statu": 410, "commerci": 410, "industri": 410, "unless": 410, "signific": 410, "suffic": 410, "interf": 410, "transact": 410, "perpetu": 410, "character": 410, "neither": 410, "nor": 410, "abil": 410, "rom": 410, "servic": 410, "itself": [410, 411], "advers": 410, "affect": 410, "violat": 410, "rule": 410, "protocol": 410, "across": [410, 424], "publicli": 410, "password": 410, "unpack": 410, "supplement": 410, "though": 410, "govern": 410, "own": 410, "notwithstand": 410, "holder": 410, "liabil": 410, "preserv": 410, "misrepresent": 410, "licensor": 410, "declin": 410, "trademark": 410, "trade": 410, "indemnif": 410, "contractu": 410, "assumpt": 410, "impos": 410, "relicens": 410, "surviv": 410, "statement": 410, "termin": [410, 412], "expressli": 410, "void": 410, "paragraph": 410, "ceas": 410, "reinstat": 410, "provision": 410, "until": 410, "perman": 410, "fail": 410, "notifi": 410, "dai": 410, "cessat": 410, "moreov": 410, "cure": 410, "receipt": 410, "qualifi": 410, "ancillari": 410, "consequ": 410, "likewis": 410, "action": [410, 422], "downstream": 410, "subject": 410, "complianc": 410, "entiti": 410, "asset": 410, "subdivid": 410, "whatev": 410, "predecessor": 410, "royalti": 410, "litig": 410, "claim": 410, "counterclaim": 410, "lawsuit": 410, "alleg": 410, "sell": 410, "sale": 410, "acquir": 410, "hereaft": 410, "manner": [410, 416], "worldwid": 410, "agreement": 410, "commit": 410, "denomin": 410, "coven": 410, "sue": 410, "knowingli": 410, "reli": 410, "arrang": [410, 415, 416], "depriv": 410, "yourself": 410, "benefit": 410, "knowledg": 410, "believ": 410, "pursuant": 410, "procur": 410, "convey": 410, "discriminatori": 410, "scope": 410, "busi": 410, "payment": 410, "primarili": 410, "enter": 410, "march": 410, "constru": 410, "impli": 410, "defens": 410, "court": 410, "contradict": 410, "excus": 410, "simultan": 410, "pertin": 410, "agre": 410, "collect": [410, 422], "whom": 410, "refrain": 410, "affero": 410, "concern": [410, 422], "Such": 410, "spirit": 410, "distinguish": 410, "later": 410, "ever": 410, "THERE": 410, "NO": 410, "THE": 410, "TO": 410, "BY": 410, "IN": 410, "OR": 410, "AS": 410, "OF": 410, "BUT": 410, "merchant": 410, "fit": 410, "risk": 410, "qualiti": 410, "WITH": 410, "prove": 410, "event": 410, "WILL": 410, "BE": 410, "damag": 410, "incident": 410, "consequenti": 410, "inabl": 410, "loss": 410, "BEING": 410, "sustain": 410, "failur": 410, "even": [410, 416], "IF": 410, "SUCH": 410, "advis": 410, "review": 410, "approxim": 410, "absolut": 410, "waiver": 410, "civil": 410, "greatest": 410, "best": 410, "achiev": [410, 426], "redistribut": 410, "safest": 410, "pointer": 410, "brief": 410, "idea": 410, "hope": 410, "mail": 410, "short": 410, "welcom": 410, "hypothet": 410, "Of": 410, "cours": 410, "gui": 410, "employ": 410, "programm": 410, "school": 410, "sign": [410, 426], "subroutin": 410, "lesser": 410, "philosophi": 410, "why": 410, "lgpl": 410, "herein": 410, "subclass": 410, "minim": 410, "isol": 410, "reproduc": 410, "bound": 410, "suppli": [410, 416], "good": [410, 422], "faith": 410, "meaning": [410, 418], "header": 410, "choic": [410, 419, 421], "layout": 410, "accessor": 410, "macro": 410, "inlin": 410, "templat": 410, "ten": 410, "fewer": 410, "engin": 410, "dure": [410, 426], "recombin": 410, "relink": 410, "mechan": 410, "properli": 410, "compat": 410, "4d0": 410, "4d1": 410, "uncombin": 410, "prerequisit": 411, "simplest": 411, "recommend": [411, 415, 416, 426], "anaconda": 411, "conda": 411, "forg": [411, 412], "pip": 411, "via": 411, "pypi": 411, "instruct": [411, 422], "elsevi": 411, "2nd": 411, "scientif": 411, "ase": 412, "romerogroup": 412, "manag": [413, 414, 420, 425, 427], "kohn": [413, 414, 424], "sham": [413, 414, 424], "multitud": [413, 414], "partial": [413, 414], "stll": 414, "convent": [415, 416, 419], "s_x": [415, 416, 421, 423], "s_y": [415, 416, 421], "st": [415, 416, 421], "perpendicular": [415, 416, 421], "k_x": [415, 416, 421], "k_y": [415, 416, 421], "seismic": [415, 416], "ion": [415, 416, 423, 424], "_3": [415, 416, 419], "strongli": [415, 416], "jm": 415, "y_": [415, 416, 424], "logic": [415, 416], "probe": [415, 416], "queri": [415, 416], "portrai": 416, "fine": [416, 421], "usag": [416, 417, 418, 419, 421, 423, 426, 428], "39": 416, "79": 416, "119": 416, "159": 416, "syntax": 416, "meant": 416, "suit": 416, "four": 416, "convers": 416, "199": [416, 425, 428], "239": 416, "279": 416, "319": 416, "scriptbandsplot": 416, "hexagon": [417, 428], "procar_g": 417, "procar_k": 417, "procar_m": 417, "seper": 417, "scriptcat": 417, "acheiv": 418, "elk_dir": 418, "vasp_dir": [418, 419], "srvo_3": 418, "veri": [419, 423], "invlov": 419, "exmpla": 419, "api": 419, "match": 419, "aregumnet": 419, "button": 419, "defalut": 419, "switch": [419, 422], "back": 419, "dos_plain_v": 419, "familiar": 419, "lawngreen": 419, "royalblu": 419, "stach": 419, "variat": 419, "central": 420, "known": [420, 422, 425, 427], "path_to_calcul": [420, 425, 427], "k1": 420, "k2": 420, "k3": 420, "nprincip": 420, "prinicip": 420, "is_non_collinear": 420, "calcuul": 420, "kpoints_cartesian": 420, "kpoints_reduc": 420, "sometim": 420, "infom": 420, "meshgrid": 420, "index_mesh": 420, "kpoints_mesh": 420, "cartesian_mesh": 420, "bands_mesh": 420, "projected_mesh": 420, "project_phase_mesh": 420, "weights_mesh": 420, "bands_gradient_mesh": 420, "bands_hessian_mesh": 420, "ebs_sum": 420, "recov": 420, "broullin": 420, "dresselhau": 421, "topologi": 421, "examin": 421, "lifshitz": 421, "e_": 421, "noarrow": 421, "heat": 421, "fault": 421, "solut": 421, "90": 421, "degre": 421, "mostli": 421, "220": 421, "Be": 421, "scriptfermi2d": 421, "extern": 422, "phonon": 422, "divid": 422, "sub": 422, "monkhorst": 422, "pack": 422, "isym": 422, "focus": 422, "polygon": 422, "smooth": 422, "cube": 422, "999999": 422, "000001": 422, "triangl": 422, "assign": 422, "aspect": 422, "handel": 422, "isosurfcac": 422, "fermisurfcae3d": 422, "eigen": 422, "bottom": 422, "amaz": 422, "pyvista_doc": 422, "trimesh_doc": 422, "citat": 422, "trimesh_cit": 422, "author": 422, "dawson": 422, "haggerti": 422, "trimsh": 422, "sullivan2019pyvista": 422, "21105": 422, "joss": 422, "01450": 422, "month": 422, "37": 422, "1450": 422, "bane": 422, "sullivan": 422, "alexand": 422, "kaszynski": 422, "streamlin": 422, "toolkit": 422, "vtk": 422, "linux": 422, "mac": 422, "zoom": 422, "isometr": 422, "reset": 422, "click": 422, "middl": 422, "pan": 422, "scene": 422, "cmd": 422, "ctrl": 422, "mous": 422, "wheel": 422, "ctl": 422, "screenhsot": 422, "backgroundplott": 422, "pick": 422, "decreas": 422, "scriptfermi3d": 422, "subset": 423, "heterostructur": 423, "enorm": 423, "consider": 423, "70": 423, "far": 423, "band50": 423, "column": [423, 424], "filtered_sp": 423, "p_x": 423, "especi": 423, "hybrid": 423, "filtered_kpoint": 423, "filtered_spin": 423, "filter_atom": 423, "atom_typ": 423, "scriptfilt": 423, "orbital_nam": 423, "human_atom": 423, "overview": 424, "guidanc": 424, "conduct": 424, "prep": 424, "commonli": 424, "decompos": 424, "224": 424, "12500000": 424, "65660295": 424, "occ": 424, "052": 424, "000": 424, "nion": 424, "spheric": 424, "sphere": 424, "radiu": 424, "phi_": 424, "mu": 424, "nu": 424, "sigma_": 424, "psi_": 424, "sigma": 424, "pauli": 424, "spinor": 424, "bmatrix": 424, "keyboard": 424, "shortcut": 424, "kapth": 425, "nsegment": 425, "belong": 425, "99": 425, "149": 425, "249": 425, "299": 425, "8660254": 425, "70710678": 425, "4330127": 425, "8291562": 425, "ill": 426, "lack": 426, "5000000": 426, "scriptrepair": 426, "beta": 427, "nspeci": 427, "atomic_numb": 427, "lattice_corn": 427, "cell_convex_hul": 427, "get_space_group_numb": 427, "get_space_group_intern": 427, "get_wyckoff_posit": 427, "get_spglib_symmetry_dataset": 427, "primit": 428, "becom": 428, "quit": 428, "sophist": 428, "fold": 428, "difficult": 428, "scheme": 428, "fat": 428, "proport": 428, "2x2x2": 428, "fname": 428, "shift_efermi": 428, "86": 428, "110": 428, "147": 428, "165": 428, "print_kpt": 428, "show_band": 428, "savetab": 428, "csv": 428, "unfolded_band": 428, "scriptunfold": 428, "unfold_mask": 428, "old": 428, "unfold_result": 428, "unfol": 428}, "objects": {"pyprocar.core": [[7, 0, 1, "", "BrillouinZone"], [10, 0, 1, "", "DensityOfStates"], [19, 0, 1, "", "ElectronicBandStructure"], [66, 0, 1, "", "FermiSurface"], [75, 0, 1, "", "FermiSurface3D"], [83, 0, 1, "", "Isosurface"], [90, 0, 1, "", "KPath"], [99, 0, 1, "", "Structure"], [125, 0, 1, "", "Surface"]], "pyprocar.core.BrillouinZone": [[8, 1, 1, "", "__init__"], [9, 1, 1, "", "wigner_seitz"]], "pyprocar.core.DensityOfStates": [[11, 1, 1, "", "__init__"], [12, 1, 1, "", "coupled_to_uncoupled_basis"], [13, 1, 1, "", "dos_sum"], [14, 1, 1, "", "get_current_basis"], [15, 2, 1, "", "is_non_collinear"], [16, 2, 1, "", "n_dos"], [17, 2, 1, "", "n_energies"], [18, 2, 1, "", "n_spins"]], "pyprocar.core.ElectronicBandStructure": [[20, 1, 1, "", "__init__"], [21, 2, 1, "", "bands_gradient"], [22, 2, 1, "", "bands_gradient_mesh"], [23, 2, 1, "", "bands_hessian"], [24, 2, 1, "", "bands_hessian_mesh"], [25, 2, 1, "", "bands_mesh"], [26, 1, 1, "", "calculate_scalar_gradient"], [27, 1, 1, "", "calculate_scalar_integral"], [28, 1, 1, "", "create_nd_mesh"], [29, 1, 1, "", "create_scaler_mesh"], [30, 1, 1, "", "create_vector_mesh"], [31, 1, 1, "", "ebs_ipr"], [32, 1, 1, "", "ebs_ipr_atom"], [33, 1, 1, "", "ebs_sum"], [34, 2, 1, "", "fermi_speed"], [35, 2, 1, "", "fermi_speed_mesh"], [36, 2, 1, "", "fermi_velocity"], [37, 2, 1, "", "fermi_velocity_mesh"], [38, 1, 1, "", "fix_collinear_spin"], [39, 2, 1, "", "harmonic_average_effective_mass"], [40, 2, 1, "", "harmonic_average_effective_mass_mesh"], [41, 1, 1, "", "ibz2fbz"], [42, 2, 1, "", "index_mesh"], [43, 1, 1, "", "interpolate_mesh_grid"], [44, 2, 1, "", "is_non_collinear"], [45, 2, 1, "", "kpoints_cartesian"], [46, 2, 1, "", "kpoints_cartesian_mesh"], [47, 2, 1, "", "kpoints_mesh"], [48, 2, 1, "", "kpoints_reduced"], [49, 1, 1, "", "mesh_to_array"], [50, 2, 1, "", "n_kx"], [51, 2, 1, "", "n_ky"], [52, 2, 1, "", "n_kz"], [53, 2, 1, "", "natoms"], [54, 2, 1, "", "nbands"], [55, 2, 1, "", "nkpoints"], [56, 2, 1, "", "norbitals"], [57, 2, 1, "", "nprincipals"], [58, 2, 1, "", "nspins"], [59, 1, 1, "", "plot_kpoints"], [60, 2, 1, "", "projected_mesh"], [61, 2, 1, "", "projected_phase_mesh"], [62, 1, 1, "", "ravel_array"], [63, 1, 1, "", "unfold"], [64, 1, 1, "", "update_weights"], [65, 2, 1, "", "weights_mesh"]], "pyprocar.core.FermiSurface": [[67, 1, 1, "", "__init__"], [68, 1, 1, "", "add_axes_labels"], [69, 1, 1, "", "add_legend"], [70, 1, 1, "", "find_energy"], [71, 1, 1, "", "plot"], [72, 1, 1, "", "savefig"], [73, 1, 1, "", "show"], [74, 1, 1, "", "spin_texture"]], "pyprocar.core.FermiSurface3D": [[76, 1, 1, "", "__init__"], [77, 1, 1, "", "extend_surface"], [78, 1, 1, "", "project_atomic_projections"], [79, 1, 1, "", "project_fermi_speed"], [80, 1, 1, "", "project_fermi_velocity"], [81, 1, 1, "", "project_harmonic_effective_mass"], [82, 1, 1, "", "project_spin_texture_atomic_projections"]], "pyprocar.core.Isosurface": [[84, 1, 1, "", "__init__"], [85, 2, 1, "", "dxyz"], [86, 2, 1, "", "nX"], [87, 2, 1, "", "nY"], [88, 2, 1, "", "nZ"], [89, 2, 1, "", "surface_boundaries"]], "pyprocar.core.KPath": [[91, 1, 1, "", "__init__"], [92, 1, 1, "", "get_kpoints_transformed"], [93, 1, 1, "", "get_optimized_kpoints_transformed"], [94, 2, 1, "", "kdistances"], [95, 2, 1, "", "nsegments"], [96, 2, 1, "", "tick_names"], [97, 2, 1, "", "tick_positions"], [98, 1, 1, "", "write_to_file"]], "pyprocar.core.Structure": [[100, 1, 1, "", "__init__"], [101, 2, 1, "", "a"], [102, 2, 1, "", "alpha"], [103, 2, 1, "", "atomic_numbers"], [104, 2, 1, "", "b"], [105, 2, 1, "", "beta"], [106, 2, 1, "", "c"], [107, 2, 1, "", "cell_convex_hull"], [108, 2, 1, "", "density"], [109, 2, 1, "", "gamma"], [110, 1, 1, "", "get_space_group_international"], [111, 1, 1, "", "get_space_group_number"], [112, 1, 1, "", "get_spglib_symmetry_dataset"], [113, 1, 1, "", "get_wyckoff_positions"], [114, 1, 1, "", "is_point_inside"], [115, 2, 1, "", "lattice_corners"], [116, 2, 1, "", "masses"], [117, 2, 1, "", "natoms"], [118, 2, 1, "", "nspecies"], [119, 1, 1, "", "plot_cell_convex_hull"], [120, 2, 1, "", "reciprocal_lattice"], [121, 2, 1, "", "species"], [122, 1, 1, "", "supercell"], [123, 1, 1, "", "transform"], [124, 2, 1, "", "volume"]], "pyprocar.core.Surface": [[126, 1, 1, "", "__init__"], [127, 2, 1, "", "centers"], [128, 1, 1, "", "export"], [129, 2, 1, "", "faces_array"], [130, 1, 1, "", "set_color_with_cmap"], [131, 1, 1, "", "set_scalars"], [132, 1, 1, "", "set_vectors"]], "pyprocar.io.abinit": [[144, 0, 1, "", "AbinitKpoints"], [146, 0, 1, "", "AbinitProcar"], [148, 0, 1, "", "Output"]], "pyprocar.io.abinit.AbinitKpoints": [[145, 1, 1, "", "__init__"]], "pyprocar.io.abinit.AbinitProcar": [[147, 1, 1, "", "__init__"]], "pyprocar.io.abinit.Output": [[149, 1, 1, "", "__init__"]], "pyprocar.io.bxsf": [[150, 0, 1, "", "BxsfParser"]], "pyprocar.io.bxsf.BxsfParser": [[151, 1, 1, "", "__init__"], [152, 1, 1, "", "parse_bxsf"]], "pyprocar.io.lobster": [[153, 0, 1, "", "LobsterParser"]], "pyprocar.io.lobster.LobsterParser": [[154, 1, 1, "", "__init__"], [155, 2, 1, "", "dos"], [156, 1, 1, "", "dos_parametric"], [157, 2, 1, "", "dos_projected"], [158, 2, 1, "", "dos_to_dict"], [159, 2, 1, "", "dos_total"], [160, 2, 1, "", "final_structure"], [161, 2, 1, "", "initial_structure"], [162, 1, 1, "", "parse_structure"], [163, 2, 1, "", "species"], [164, 2, 1, "", "structure"], [165, 2, 1, "", "structures"]], "pyprocar.io.qe": [[166, 0, 1, "", "QEParser"]], "pyprocar.io.qe.QEParser": [[167, 1, 1, "", "__init__"], [168, 2, 1, "", "final_structure"], [169, 1, 1, "", "getKpointLabels"], [170, 2, 1, "", "initial_structure"], [171, 1, 1, "", "kpoints_cart"], [172, 2, 1, "", "species"], [173, 2, 1, "", "structure"], [174, 2, 1, "", "structures"]], "pyprocar.io.siesta": [[175, 0, 1, "", "SiestaParser"]], "pyprocar.io.siesta.SiestaParser": [[176, 1, 1, "", "__init__"]], "pyprocar.io.vasp": [[177, 0, 1, "", "Kpoints"], [179, 0, 1, "", "Outcar"], [185, 0, 1, "", "Poscar"], [187, 0, 1, "", "Procar"], [193, 0, 1, "", "VaspXML"]], "pyprocar.io.vasp.Kpoints": [[178, 1, 1, "", "__init__"]], "pyprocar.io.vasp.Outcar": [[180, 1, 1, "", "__init__"], [181, 2, 1, "", "efermi"], [179, 3, 1, "", "file_str"], [179, 3, 1, "", "filename"], [182, 1, 1, "", "get_symmetry_operations"], [183, 2, 1, "", "reciprocal_lattice"], [184, 2, 1, "", "rotations"], [179, 3, 1, "", "variables"]], "pyprocar.io.vasp.Poscar": [[186, 1, 1, "", "__init__"]], "pyprocar.io.vasp.Procar": [[188, 1, 1, "", "__init__"], [189, 2, 1, "", "kpoints_cartesian"], [190, 2, 1, "", "kpoints_reduced"], [191, 1, 1, "", "repair"], [192, 1, 1, "", "symmetrize"]], "pyprocar.io.vasp.VaspXML": [[194, 1, 1, "", "__init__"], [195, 2, 1, "", "bands"], [196, 2, 1, "", "bands_projected"], [197, 1, 1, "", "conv"], [198, 2, 1, "", "convergence"], [199, 2, 1, "", "convergence_electronic"], [200, 2, 1, "", "convergence_ionic"], [201, 2, 1, "", "dos"], [202, 2, 1, "", "dos_projected"], [203, 2, 1, "", "dos_to_dict"], [204, 2, 1, "", "dos_total"], [205, 2, 1, "", "energies"], [206, 2, 1, "", "energy"], [207, 2, 1, "", "fermi"], [208, 2, 1, "", "final_structure"], [209, 2, 1, "", "forces"], [210, 1, 1, "", "get_general"], [211, 1, 1, "", "get_params"], [212, 1, 1, "", "get_scstep"], [213, 1, 1, "", "get_set"], [214, 1, 1, "", "get_structure"], [215, 1, 1, "", "get_varray"], [216, 2, 1, "", "incar"], [217, 2, 1, "", "initial_structure"], [218, 2, 1, "", "is_finished"], [219, 2, 1, "", "iteration_data"], [220, 2, 1, "", "kpoints"], [221, 2, 1, "", "kpoints_list"], [222, 2, 1, "", "last_energy"], [223, 1, 1, "", "parse_vasprun"], [224, 2, 1, "", "potcar_info"], [225, 1, 1, "", "read"], [226, 2, 1, "", "species"], [227, 2, 1, "", "structure"], [228, 2, 1, "", "structures"], [229, 1, 1, "", "text_to_bool"], [230, 2, 1, "", "vasp_parameters"]], "pyprocar.plotter": [[238, 0, 1, "", "DOSPlot"], [258, 0, 1, "", "EBSPlot"], [279, 0, 1, "", "ProcarPlot"]], "pyprocar.plotter.DOSPlot": [[239, 1, 1, "", "__init__"], [240, 1, 1, "", "draw_fermi"], [241, 1, 1, "", "grid"], [242, 1, 1, "", "legend"], [243, 1, 1, "", "plot_dos"], [244, 1, 1, "", "plot_parametric"], [245, 1, 1, "", "plot_parametric_line"], [246, 1, 1, "", "plot_stack"], [247, 1, 1, "", "plot_stack_orbitals"], [248, 1, 1, "", "plot_stack_species"], [249, 1, 1, "", "save"], [250, 1, 1, "", "set_xlabel"], [251, 1, 1, "", "set_xlim"], [252, 1, 1, "", "set_xticks"], [253, 1, 1, "", "set_ylabel"], [254, 1, 1, "", "set_ylim"], [255, 1, 1, "", "set_yticks"], [256, 1, 1, "", "show"], [257, 1, 1, "", "update_config"]], "pyprocar.plotter.EBSPlot": [[259, 1, 1, "", "__init__"], [260, 1, 1, "", "draw_fermi"], [261, 1, 1, "", "grid"], [262, 1, 1, "", "legend"], [263, 1, 1, "", "plot_atomic_levels"], [264, 1, 1, "", "plot_bands"], [265, 1, 1, "", "plot_parameteric"], [266, 1, 1, "", "plot_parameteric_overlay"], [267, 1, 1, "", "plot_scatter"], [268, 1, 1, "", "save"], [269, 1, 1, "", "set_colorbar_title"], [270, 1, 1, "", "set_title"], [271, 1, 1, "", "set_xlabel"], [272, 1, 1, "", "set_xlim"], [273, 1, 1, "", "set_xticks"], [274, 1, 1, "", "set_ylabel"], [275, 1, 1, "", "set_ylim"], [276, 1, 1, "", "set_yticks"], [277, 1, 1, "", "show"], [278, 1, 1, "", "update_config"]], "pyprocar.plotter.ProcarPlot": [[280, 1, 1, "", "__init__"], [281, 1, 1, "", "atomicPlot"], [282, 1, 1, "", "parametricPlot"], [283, 1, 1, "", "plotBands"], [284, 1, 1, "", "scatterPlot"]], "pyprocar.pyposcar": [[289, 0, 1, "", "Poscar"], [298, 4, 1, "", "poscarDiff"], [299, 0, 1, "", "poscar_modify"], [309, 0, 1, "", "poscar_supercell"]], "pyprocar.pyposcar.Poscar": [[290, 1, 1, "", "__init__"], [291, 1, 1, "", "add"], [292, 1, 1, "", "load_from_data"], [293, 1, 1, "", "parse"], [294, 1, 1, "", "remove"], [295, 1, 1, "", "sort"], [296, 1, 1, "", "write"], [297, 1, 1, "", "xyz"]], "pyprocar.pyposcar.Poscar.self": [[290, 3, 1, "", "verbose"]], "pyprocar.pyposcar.poscar_modify": [[300, 1, 1, "", "__init__"], [301, 1, 1, "", "add"], [302, 1, 1, "", "change_elements"], [303, 1, 1, "", "pos_multiply"], [304, 1, 1, "", "pos_sum"], [305, 1, 1, "", "remove"], [306, 1, 1, "", "scale_lattice"], [307, 1, 1, "", "shift"], [308, 1, 1, "", "write"]], "pyprocar.pyposcar.poscar_supercell": [[310, 1, 1, "", "__init__"], [311, 1, 1, "", "supercell"], [312, 1, 1, "", "write"]], "pyprocar.pyposcar.self": [[290, 3, 1, "", "Ntotal"], [290, 3, 1, "", "cpos"], [290, 3, 1, "", "dpos"], [290, 3, 1, "", "elm"], [290, 3, 1, "", "filename"], [290, 3, 1, "", "flags"], [290, 3, 1, "", "lat"], [290, 3, 1, "", "numberSp"], [290, 3, 1, "", "poscar"], [290, 3, 1, "", "selectFlags"], [290, 3, 1, "", "selective"], [290, 3, 1, "", "typeSp"], [290, 3, 1, "", "volume"]], "pyprocar": [[419, 5, 0, "-", "scriptDosplot"]], "pyprocar.scripts": [[316, 0, 1, "", "FermiHandler"], [324, 4, 1, "", "bandgap"], [325, 4, 1, "", "bandsdosplot"], [326, 4, 1, "", "bandsplot"], [327, 4, 1, "", "bandsplot_2d"], [328, 4, 1, "", "cat"], [329, 4, 1, "", "dosplot"], [330, 4, 1, "", "fermi2D"], [331, 4, 1, "", "fermi3D"], [332, 4, 1, "", "generate2dkmesh"], [333, 4, 1, "", "kpath"], [334, 4, 1, "", "repair"], [416, 5, 0, "-", "scriptBandsplot"], [417, 5, 0, "-", "scriptCat"], [421, 5, 0, "-", "scriptFermi2D"], [422, 5, 0, "-", "scriptFermi3D"], [423, 5, 0, "-", "scriptFilter"], [426, 5, 0, "-", "scriptRepair"], [428, 5, 0, "-", "scriptUnfold"]], "pyprocar.scripts.FermiHandler": [[317, 1, 1, "", "__init__"], [318, 1, 1, "", "create_isovalue_gif"], [319, 1, 1, "", "plot_fermi_cross_section"], [320, 1, 1, "", "plot_fermi_cross_section_box_widget"], [321, 1, 1, "", "plot_fermi_isoslider"], [322, 1, 1, "", "plot_fermi_surface"], [323, 1, 1, "", "print_default_settings"]], "pyprocar.scripts.scriptBandsplot": [[416, 4, 1, "", "bandsplot"]], "pyprocar.scripts.scriptCat": [[417, 4, 1, "", "cat"]], "pyprocar.scripts.scriptFermi2D": [[421, 4, 1, "", "fermi2D"]], "pyprocar.scripts.scriptFermi3D": [[422, 4, 1, "", "fermi3D"]], "pyprocar.scripts.scriptFilter": [[423, 4, 1, "", "filter"]], "pyprocar.scripts.scriptRepair": [[426, 4, 1, "", "repair"]], "pyprocar.scripts.scriptUnfold": [[428, 4, 1, "", "unfold"]]}, "objtypes": {"0": "py:class", "1": "py:method", "2": "py:property", "3": "py:attribute", "4": "py:function", "5": "py:module"}, "objnames": {"0": ["py", "class", "Python class"], "1": ["py", "method", "Python method"], "2": ["py", "property", "Python property"], "3": ["py", "attribute", "Python attribute"], "4": ["py", "function", "Python function"], "5": ["py", "module", "Python module"]}, "titleterms": {"band": [0, 1, 195, 349, 353, 355, 356, 357, 361, 362, 364, 365, 366, 367, 376, 381, 383, 399, 409, 416, 418, 420, 428], "structur": [0, 1, 99, 141, 164, 165, 173, 174, 227, 228, 349, 353, 355, 356, 357, 361, 362, 364, 365, 366, 367, 406, 409, 416, 420, 427], "plot": [0, 1, 2, 3, 4, 6, 71, 357, 358, 359, 360, 361, 363, 364, 365, 366, 367, 370, 371, 372, 373, 374, 376, 377, 378, 381, 382, 383, 384, 388, 389, 390, 391, 392, 393, 394, 397, 400, 409, 416, 421, 428], "option": [0, 1, 2, 3, 4, 6], "spin_color": [0, 2, 4, 6], "color": [0, 2, 3, 6, 383], "colorbar_titl": [0, 2], "colorbar_title_s": [0, 2], "colorbar_title_pad": [0, 2], "colorbar_tick_labels": [0, 2], "cmap": [0, 2, 3, 6], "clim": [0, 2, 3, 6], "fermi_color": [0, 2, 6], "fermi_linestyl": [0, 2, 6], "fermi_linewidth": [0, 2, 6], "grid": [0, 1, 2, 6, 241, 261], "grid_axi": [0, 2, 6], "grid_color": [0, 2, 6], "grid_linestyl": [0, 2, 6], "grid_linewidth": [0, 2, 6], "grid_which": [0, 2, 6], "label": [0, 6], "legend": [0, 2, 6, 242, 262], "linestyl": [0, 2, 3, 6], "linewidth": [0, 2, 3, 6], "marker": [0, 2, 3, 6], "markers": [0, 2, 6], "opac": [0, 2, 6], "plot_color_bar": [0, 2, 3, 6], "savefig": [0, 2, 6, 72], "titl": [0, 2, 6], "weighted_color": [0, 2, 6], "weighted_width": [0, 2, 6], "figure_s": [0, 2, 6], "dpi": [0, 2, 3, 6], "2d": [1, 3, 357, 380, 409, 421], "surface_cmap": [1, 4], "surface_color": [1, 4], "surface_spinpol_color": 1, "surface_bands_color": [1, 4], "surface_opac": [1, 4], "surface_clim": [1, 4], "extended_zone_direct": [1, 4], "supercel": [1, 4, 122, 311, 367, 407], "projection_accuraci": [1, 4], "interpolation_factor": [1, 4], "brillouin_zone_styl": [1, 4], "brillouin_zone_line_width": [1, 4], "brillouin_zone_color": [1, 4], "brillouin_zone_opac": [1, 4], "texture_cmap": [1, 4], "texture_color": [1, 4], "texture_s": [1, 4], "texture_scal": [1, 4], "texture_opac": [1, 4], "add_ax": [1, 4], "energy_lim": 1, "x_axes_label": [1, 4], "y_axes_label": [1, 4], "z_axes_label": [1, 4], "axes_label_color": [1, 4], "axes_line_width": [1, 4], "add_scalar_bar": [1, 4], "scalar_bar_titl": [1, 4], "scalar_bar_label": [1, 4], "scalar_bar_ital": [1, 4], "scalar_bar_bold": [1, 4], "scalar_bar_title_font_s": [1, 4], "scalar_bar_label_font_s": [1, 4], "scalar_bar_position_x": [1, 4], "scalar_bar_position_i": [1, 4], "scalar_bar_color": [1, 4], "background_color": [1, 4], "orbit_gif_n_point": [1, 4], "orbit_gif_step": [1, 4], "orbit_mp4_n_point": [1, 4], "orbit_mp4_step": [1, 4], "clip_brillouin_zon": 1, "clip_brillouin_zone_factor": 1, "grid_xtitl": 1, "grid_ytitl": 1, "grid_ztitl": 1, "add_fermi_plan": 1, "fermi_plane_opac": 1, "fermi_plane_color": 1, "fermi_plane_s": 1, "show_fermi_plane_text": 1, "fermi_text_posit": 1, "plotter_offscreen": [1, 4], "plotter_camera_po": [1, 4], "isoslider_titl": [1, 4], "isoslider_styl": [1, 4], "isoslider_color": [1, 4], "cross_section_slice_linewidth": [1, 4], "cross_section_slice_show_area": [1, 4], "do": [2, 155, 201, 372, 373, 376, 409], "font": 2, "font_siz": 2, "plot_bar": 2, "plot_tot": 2, "spin_label": 2, "verbos": 2, "stack_y_label": 2, "x_label": [2, 3], "y_label": [2, 3], "fermi": [3, 4, 207, 349, 353, 355, 380, 386, 387, 399, 409, 422], "surfac": [3, 4, 125, 142, 363, 387, 422], "add_axes_label": [3, 68], "add_legend": [3, 69], "no_arrow": 3, "arrow_color": 3, "arrow_dens": 3, "arrow_s": [3, 4], "spin_project": 3, "3d": [4, 386, 409, 422], "configur": [5, 360, 371, 382, 388], "file": [5, 404, 405, 406, 407], "unfold": [6, 63, 367, 428], "pyprocar": [7, 10, 19, 66, 75, 83, 90, 99, 125, 144, 146, 148, 150, 153, 166, 175, 177, 179, 185, 187, 193, 238, 258, 279, 289, 299, 309, 316, 360, 371, 382, 388, 410, 411, 413, 414], "core": [7, 10, 19, 66, 75, 83, 90, 99, 125, 138], "brillouinzon": [7, 133], "__init__": [8, 11, 20, 67, 76, 84, 91, 100, 126, 145, 147, 149, 151, 154, 167, 176, 178, 180, 186, 188, 194, 239, 259, 280, 290, 300, 310, 317], "wigner_seitz": 9, "densityofst": [10, 134], "coupled_to_uncoupled_basi": 12, "dos_sum": 13, "get_current_basi": 14, "is_non_collinear": [15, 44], "n_do": 16, "n_energi": 17, "n_spin": 18, "electronicbandstructur": [19, 135, 420], "bands_gradi": 21, "bands_gradient_mesh": 22, "bands_hessian": 23, "bands_hessian_mesh": 24, "bands_mesh": 25, "calculate_scalar_gradi": 26, "calculate_scalar_integr": 27, "create_nd_mesh": 28, "create_scaler_mesh": 29, "create_vector_mesh": 30, "ebs_ipr": 31, "ebs_ipr_atom": 32, "ebs_sum": 33, "fermi_spe": 34, "fermi_speed_mesh": 35, "fermi_veloc": 36, "fermi_velocity_mesh": 37, "fix_collinear_spin": 38, "harmonic_average_effective_mass": 39, "harmonic_average_effective_mass_mesh": 40, "ibz2fbz": 41, "index_mesh": 42, "interpolate_mesh_grid": 43, "kpoints_cartesian": [45, 189], "kpoints_cartesian_mesh": 46, "kpoints_mesh": 47, "kpoints_reduc": [48, 190], "mesh_to_arrai": 49, "n_kx": 50, "n_ky": 51, "n_kz": 52, "natom": [53, 117], "nband": 54, "nkpoint": 55, "norbit": 56, "nprincip": 57, "nspin": 58, "plot_kpoint": 59, "projected_mesh": 60, "projected_phase_mesh": 61, "ravel_arrai": 62, "update_weight": 64, "weights_mesh": 65, "fermisurfac": [66, 136], "find_energi": 70, "show": [73, 256, 277, 387], "spin_textur": [74, 394], "fermisurface3d": [75, 137], "extend_surfac": 77, "project_atomic_project": 78, "project_fermi_spe": 79, "project_fermi_veloc": 80, "project_harmonic_effective_mass": 81, "project_spin_texture_atomic_project": 82, "isosurfac": [83, 139], "dxyz": 85, "nx": 86, "ny": 87, "nz": 88, "surface_boundari": 89, "kpath": [90, 140, 333, 346, 425], "get_kpoints_transform": 92, "get_optimized_kpoints_transform": 93, "kdistanc": 94, "nsegment": 95, "tick_nam": 96, "tick_posit": 97, "write_to_fil": 98, "alpha": 102, "atomic_numb": 103, "b": 104, "beta": 105, "c": 106, "cell_convex_hul": 107, "densiti": [108, 353, 355, 369, 370, 374, 409, 419], "gamma": 109, "get_space_group_intern": 110, "get_space_group_numb": 111, "get_spglib_symmetry_dataset": 112, "get_wyckoff_posit": 113, "is_point_insid": 114, "lattice_corn": 115, "mass": [116, 399], "nspeci": 118, "plot_cell_convex_hul": 119, "reciprocal_lattic": [120, 183], "speci": [121, 163, 172, 226], "transform": 123, "volum": 124, "center": 127, "export": [128, 416, 421, 428], "faces_arrai": 129, "set_color_with_cmap": 130, "set_scalar": 131, "set_vector": 132, "api": [138, 143, 233, 287, 313, 345], "refer": 143, "io": [144, 146, 148, 150, 153, 166, 175, 177, 179, 185, 187, 193, 233], "abinit": [144, 146, 148, 348], "abinitkpoint": 144, "abinitprocar": 146, "output": 148, "bxsf": 150, "bxsfparser": [150, 232], "parse_bxsf": 152, "lobster": [153, 352], "lobsterpars": [153, 234], "dos_parametr": 156, "dos_project": [157, 202], "dos_to_dict": [158, 203], "dos_tot": [159, 204], "final_structur": [160, 168, 208], "initial_structur": [161, 170, 217], "parse_structur": 162, "qe": 166, "qepars": [166, 235], "getkpointlabel": 169, "kpoints_cart": 171, "siesta": [175, 354], "siestapars": [175, 236], "vasp": [177, 179, 185, 187, 193, 355, 365, 373], "kpoint": [177, 220, 421], "outcar": 179, "efermi": 181, "get_symmetry_oper": 182, "rotat": [184, 421], "poscar": [185, 289, 314, 403, 404, 405, 406, 407], "procar": 187, "repair": [191, 334, 426], "symmetr": 192, "vaspxml": 193, "bands_project": 196, "conv": 197, "converg": 198, "convergence_electron": 199, "convergence_ion": 200, "energi": [205, 206, 384], "forc": 209, "get_gener": 210, "get_param": 211, "get_scstep": 212, "get_set": 213, "get_structur": 214, "get_varrai": 215, "incar": 216, "is_finish": 218, "iteration_data": 219, "kpoints_list": 221, "last_energi": 222, "parse_vasprun": 223, "potcar_info": 224, "read": [225, 406], "text_to_bool": 229, "vasp_paramet": 230, "abinitpars": 231, "vasppars": 237, "plotter": [238, 258, 279, 287], "dosplot": [238, 286, 329, 340], "draw_fermi": [240, 260], "plot_do": 243, "plot_parametr": 244, "plot_parametric_lin": 245, "plot_stack": 246, "plot_stack_orbit": 247, "plot_stack_speci": 248, "save": [249, 268, 389], "set_xlabel": [250, 271], "set_xlim": [251, 272], "set_xtick": [252, 273], "set_ylabel": [253, 274], "set_ylim": [254, 275], "set_ytick": [255, 276], "update_config": [257, 278], "ebsplot": [258, 285], "plot_atomic_level": 263, "plot_band": 264, "plot_parameter": 265, "plot_parameteric_overlai": 266, "plot_scatt": 267, "set_colorbar_titl": 269, "set_titl": 270, "procarplot": [279, 288], "atomicplot": 281, "parametricplot": 282, "plotband": 283, "scatterplot": 284, "pyposcar": [289, 299, 309, 313, 402, 409], "add": [291, 301], "load_from_data": 292, "pars": [293, 403, 405, 406], "remov": [294, 305], "sort": 295, "write": [296, 308, 312], "xyz": 297, "poscardiff": 298, "poscar_modifi": 299, "change_el": 302, "pos_multipli": 303, "pos_sum": 304, "scale_lattic": 306, "shift": 307, "poscar_supercel": 309, "poscarutil": 315, "script": [316, 345], "fermihandl": [316, 343], "create_isovalue_gif": 318, "plot_fermi_cross_sect": 319, "plot_fermi_cross_section_box_widget": 320, "plot_fermi_isoslid": 321, "plot_fermi_surfac": 322, "print_default_set": 323, "bandgap": [324, 335, 398, 399], "bandsdosplot": [325, 336, 377, 378], "bandsplot": [326, 337], "bandsplot_2d": [327, 338], "cat": [328, 339], "fermi2d": [330, 341, 381, 383], "fermi3d": [331, 342, 389, 390, 391, 392, 393, 394], "generate2dkmesh": [332, 344], "reapir": 347, "perper": [348, 350, 352, 354], "dftb": 349, "prepar": [349, 353, 355, 358, 359, 360, 363, 371, 378, 382, 388], "calcul": [349, 353, 355, 417], "ssc": 349, "non": [349, 364, 365, 372, 373], "scc": 349, "ad": 349, "name": [349, 361], "k": [349, 353, 355, 400, 416, 423, 425], "point": [349, 353, 355, 416, 423], "elk": 350, "dft": 351, "prep": 351, "quantum": [353, 364, 372], "espresso": [353, 364, 372], "state": [353, 355, 363, 369, 370, 374, 409, 419], "format": [353, 355], "magnet": [353, 355], "plain": [357, 361, 364, 365, 366, 370, 374, 377, 381, 390, 391, 392, 393, 416, 419], "mode": [357, 358, 361, 364, 365, 366, 370, 372, 373, 374, 377, 381, 390, 391, 392, 393, 394, 419], "parametr": [357, 361, 364, 365, 366, 370, 372, 373, 374, 381, 392, 393, 419], "properti": [357, 399], "project": [357, 383, 384, 399, 415, 416], "spin": [357, 366, 374, 383, 384, 393, 394, 415, 416, 421, 423], "textur": [357, 383, 394, 421], "atom": [358, 406, 415, 416, 423], "level": 358, "set": [358, 359, 363], "up": [358, 359, 363], "environ": [358, 359, 363], "autoband": 359, "exampl": [359, 397, 398, 399, 400, 409], "parametric_linemod": 361, "scatter": [361, 366], "overlay_speci": 361, "overlay_orbti": 361, "overlai": [361, 370], "orbit": [361, 415, 416, 423], "compar": [362, 418], "invers": 363, "particip": 363, "ratio": 363, "topolog": 363, "protect": 363, "bi_2se_3": 363, "nv": 363, "defect": [363, 404, 407], "diamond": 363, "colinear": [364, 365, 372, 373], "polar": [366, 374, 393], "primit": 367, "comput": [368, 375, 379, 385, 395, 401, 405, 408], "time": [368, 375, 379, 385, 395, 401, 408], "parametric_lin": [370, 374, 419], "stack_speci": [370, 374, 419], "stack_orbti": [370, 374], "stack": [374, 419], "plain_band": 381, "select": [381, 383, 423], "indic": [381, 383, 414], "noncolinear": 383, "singl": 383, "rashba": 384, "split": 384, "0": [384, 387], "60": 384, "sx": 384, "arrow": 384, "sy": 384, "sz": 384, "90": 384, "how": 387, "get": [387, 411], "van": 387, "alphen": 387, "fequenc": 387, "from": [387, 416], "maxim": 387, "cross": [387, 389], "section": [387, 389], "area": 387, "along": 387, "1": [387, 415, 416, 419], "minim": 387, "extrem": 387, "cross_sect": 389, "slice": 389, "isoslid": 390, "isovalue_gif": 391, "other": [396, 399, 409], "kmesh_gener": 397, "kmesh": 397, "find": [398, 399, 404], "gradient": 399, "veloc": 399, "effect": 399, "kpath_gener": 400, "path": [400, 416, 425], "visual": [403, 404, 405, 406, 407], "cluster": 403, "bi2se3": 403, "slab": 403, "util": [403, 404, 407], "function": [403, 404, 405, 407], "creat": [403, 404, 406, 407], "gif": [403, 404, 406, 407], "identifi": 403, "analyz": 405, "radial": 405, "distribut": 405, "rdf": 405, "kde": 405, "curv": 405, "result": 405, "substitut": 406, "modifi": 407, "scale": 407, "vacuum": 407, "space": 407, "lattic": 407, "introduc": 407, "author": 410, "citat": 410, "cite": [410, 411], "contributor": 410, "develop": 410, "licens": 410, "start": 411, "instal": [411, 412], "paper": 411, "support": 411, "pip": 412, "conda": 412, "clone": 412, "through": 412, "github": 412, "after": 412, "why": 413, "tabl": 414, "2": [415, 416, 419], "3": [415, 416, 419], "4": [416, 419], "matplotlib": [416, 421, 428], "pyplot": [416, 421, 428], "object": [416, 421, 428], "convert": 416, "reduc": 416, "cartesian": 416, "coordin": 416, "discontinu": 416, "concaten": 417, "multipl": 417, "5": 419, "6": 419, "stack_orbit": 419, "access": [420, 425, 427], "electron": 420, "translat": 421, "mesh": 421, "keyboard": 422, "shortcut": 422, "filter": 423, "data": 423, "To": 423, "user": 424, "guid": 424, "further": 424, "detail": 424, "inform": [425, 427]}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.viewcode": 1, "sphinx": 58}, "alltitles": {"band structure plotting Options": [[0, "band-structure-plotting-options"]], "spin_colors": [[0, "spin-colors"], [2, "spin-colors"], [4, "spin-colors"], [6, "spin-colors"]], "color": [[0, "color"], [3, "color"], [6, "color"]], "colorbar_title": [[0, "colorbar-title"], [2, "colorbar-title"]], "colorbar_title_size": [[0, "colorbar-title-size"], [2, "colorbar-title-size"]], "colorbar_title_padding": [[0, "colorbar-title-padding"], [2, "colorbar-title-padding"]], "colorbar_tick_labelsize": [[0, "colorbar-tick-labelsize"], [2, "colorbar-tick-labelsize"]], "cmap": [[0, "cmap"], [2, "cmap"], [3, "cmap"], [6, "cmap"]], "clim": [[0, "clim"], [2, "clim"], [3, "clim"], [6, "clim"]], "fermi_color": [[0, "fermi-color"], [2, "fermi-color"], [6, "fermi-color"]], "fermi_linestyle": [[0, "fermi-linestyle"], [2, "fermi-linestyle"], [6, "fermi-linestyle"]], "fermi_linewidth": [[0, "fermi-linewidth"], [2, "fermi-linewidth"], [6, "fermi-linewidth"]], "grid": [[0, "grid"], [1, "grid"], [2, "grid"], [6, "grid"], [241, "grid"], [261, "grid"]], "grid_axis": [[0, "grid-axis"], [2, "grid-axis"], [6, "grid-axis"]], "grid_color": [[0, "grid-color"], [2, "grid-color"], [6, "grid-color"]], "grid_linestyle": [[0, "grid-linestyle"], [2, "grid-linestyle"], [6, "grid-linestyle"]], "grid_linewidth": [[0, "grid-linewidth"], [2, "grid-linewidth"], [6, "grid-linewidth"]], "grid_which": [[0, "grid-which"], [2, "grid-which"], [6, "grid-which"]], "label": [[0, "label"], [6, "label"]], "legend": [[0, "legend"], [2, "legend"], [6, "legend"], [242, "legend"], [262, "legend"]], "linestyle": [[0, "linestyle"], [2, "linestyle"], [3, "linestyle"], [6, "linestyle"]], "linewidth": [[0, "linewidth"], [2, "linewidth"], [3, "linewidth"], [6, "linewidth"]], "marker": [[0, "marker"], [2, "marker"], [3, "marker"], [6, "marker"]], "markersize": [[0, "markersize"], [2, "markersize"], [6, "markersize"]], "opacity": [[0, "opacity"], [2, "opacity"], [6, "opacity"]], "plot_color_bar": [[0, "plot-color-bar"], [2, "plot-color-bar"], [3, "plot-color-bar"], [6, "plot-color-bar"]], "savefig": [[0, "savefig"], [2, "savefig"], [6, "savefig"], [72, "savefig"]], "title": [[0, "title"], [2, "title"], [6, "title"]], "weighted_color": [[0, "weighted-color"], [2, "weighted-color"], [6, "weighted-color"]], "weighted_width": [[0, "weighted-width"], [2, "weighted-width"], [6, "weighted-width"]], "figure_size": [[0, "figure-size"], [2, "figure-size"], [6, "figure-size"]], "dpi": [[0, "dpi"], [2, "dpi"], [3, "dpi"], [6, "dpi"]], "band structure 2d plotting Options": [[1, "band-structure-2d-plotting-options"]], "surface_cmap": [[1, "surface-cmap"], [4, "surface-cmap"]], "surface_color": [[1, "surface-color"], [4, "surface-color"]], "surface_spinpol_colors": [[1, "surface-spinpol-colors"]], "surface_bands_colors": [[1, "surface-bands-colors"], [4, "surface-bands-colors"]], "surface_opacity": [[1, "surface-opacity"], [4, "surface-opacity"]], "surface_clim": [[1, "surface-clim"], [4, "surface-clim"]], "extended_zone_directions": [[1, "extended-zone-directions"], [4, "extended-zone-directions"]], "supercell": [[1, "supercell"], [4, "supercell"], [122, "supercell"], [311, "supercell"]], "projection_accuracy": [[1, "projection-accuracy"], [4, "projection-accuracy"]], "interpolation_factor": [[1, "interpolation-factor"], [4, "interpolation-factor"]], "brillouin_zone_style": [[1, "brillouin-zone-style"], [4, "brillouin-zone-style"]], "brillouin_zone_line_width": [[1, "brillouin-zone-line-width"], [4, "brillouin-zone-line-width"]], "brillouin_zone_color": [[1, "brillouin-zone-color"], [4, "brillouin-zone-color"]], "brillouin_zone_opacity": [[1, "brillouin-zone-opacity"], [4, "brillouin-zone-opacity"]], "texture_cmap": [[1, "texture-cmap"], [4, "texture-cmap"]], "texture_color": [[1, "texture-color"], [4, "texture-color"]], "texture_size": [[1, "texture-size"], [4, "texture-size"]], "texture_scale": [[1, "texture-scale"], [4, "texture-scale"]], "texture_opacity": [[1, "texture-opacity"], [4, "texture-opacity"]], "add_axes": [[1, "add-axes"], [4, "add-axes"]], "energy_lim": [[1, "energy-lim"]], "x_axes_label": [[1, "x-axes-label"], [4, "x-axes-label"]], "y_axes_label": [[1, "y-axes-label"], [4, "y-axes-label"]], "z_axes_label": [[1, "z-axes-label"], [4, "z-axes-label"]], "axes_label_color": [[1, "axes-label-color"], [4, "axes-label-color"]], "axes_line_width": [[1, "axes-line-width"], [4, "axes-line-width"]], "add_scalar_bar": [[1, "add-scalar-bar"], [4, "add-scalar-bar"]], "scalar_bar_title": [[1, "scalar-bar-title"], [4, "scalar-bar-title"]], "scalar_bar_labels": [[1, "scalar-bar-labels"], [4, "scalar-bar-labels"]], "scalar_bar_italic": [[1, "scalar-bar-italic"], [4, "scalar-bar-italic"]], "scalar_bar_bold": [[1, "scalar-bar-bold"], [4, "scalar-bar-bold"]], "scalar_bar_title_font_size": [[1, "scalar-bar-title-font-size"], [4, "scalar-bar-title-font-size"]], "scalar_bar_label_font_size": [[1, "scalar-bar-label-font-size"], [4, "scalar-bar-label-font-size"]], "scalar_bar_position_x": [[1, "scalar-bar-position-x"], [4, "scalar-bar-position-x"]], "scalar_bar_position_y": [[1, "scalar-bar-position-y"], [4, "scalar-bar-position-y"]], "scalar_bar_color": [[1, "scalar-bar-color"], [4, "scalar-bar-color"]], "background_color": [[1, "background-color"], [4, "background-color"]], "orbit_gif_n_points": [[1, "orbit-gif-n-points"], [4, "orbit-gif-n-points"]], "orbit_gif_step": [[1, "orbit-gif-step"], [4, "orbit-gif-step"]], "orbit_mp4_n_points": [[1, "orbit-mp4-n-points"], [4, "orbit-mp4-n-points"]], "orbit_mp4_step": [[1, "orbit-mp4-step"], [4, "orbit-mp4-step"]], "clip_brillouin_zone": [[1, "clip-brillouin-zone"]], "clip_brillouin_zone_factor": [[1, "clip-brillouin-zone-factor"]], "grid_xtitle": [[1, "grid-xtitle"]], "grid_ytitle": [[1, "grid-ytitle"]], "grid_ztitle": [[1, "grid-ztitle"]], "add_fermi_plane": [[1, "add-fermi-plane"]], "fermi_plane_opacity": [[1, "fermi-plane-opacity"]], "fermi_plane_color": [[1, "fermi-plane-color"]], "fermi_plane_size": [[1, "fermi-plane-size"]], "show_fermi_plane_text": [[1, "show-fermi-plane-text"]], "fermi_text_position": [[1, "fermi-text-position"]], "plotter_offscreen": [[1, "plotter-offscreen"], [4, "plotter-offscreen"]], "plotter_camera_pos": [[1, "plotter-camera-pos"], [4, "plotter-camera-pos"]], "isoslider_title": [[1, "isoslider-title"], [4, "isoslider-title"]], "isoslider_style": [[1, "isoslider-style"], [4, "isoslider-style"]], "isoslider_color": [[1, "isoslider-color"], [4, "isoslider-color"]], "cross_section_slice_linewidth": [[1, "cross-section-slice-linewidth"], [4, "cross-section-slice-linewidth"]], "cross_section_slice_show_area": [[1, "cross-section-slice-show-area"], [4, "cross-section-slice-show-area"]], "dos plotting Options": [[2, "dos-plotting-options"]], "colors": [[2, "colors"]], "font": [[2, "font"]], "font_size": [[2, "font-size"]], "plot_bar": [[2, "plot-bar"]], "plot_total": [[2, "plot-total"]], "spin_labels": [[2, "spin-labels"]], "verbose": [[2, "verbose"]], "stack_y_label": [[2, "stack-y-label"]], "x_label": [[2, "x-label"], [3, "x-label"]], "y_label": [[2, "y-label"], [3, "y-label"]], "fermi surface 2d plotting Options": [[3, "fermi-surface-2d-plotting-options"]], "add_axes_labels": [[3, "add-axes-labels"], [68, "add-axes-labels"]], "add_legend": [[3, "add-legend"], [69, "add-legend"]], "no_arrow": [[3, "no-arrow"]], "arrow_color": [[3, "arrow-color"]], "arrow_density": [[3, "arrow-density"]], "arrow_size": [[3, "arrow-size"], [4, "arrow-size"]], "spin_projection": [[3, "spin-projection"]], "fermi surface 3d plotting Options": [[4, "fermi-surface-3d-plotting-options"]], "Configuration Files": [[5, "configuration-files"]], "unfold plotting Options": [[6, "unfold-plotting-options"]], "pyprocar.core.BrillouinZone": [[7, "pyprocar-core-brillouinzone"]], "__init__": [[8, "init"], [11, "init"], [20, "init"], [67, "init"], [76, "init"], [84, "init"], [91, "init"], [100, "init"], [126, "init"], [145, "init"], [147, "init"], [149, "init"], [151, "init"], [154, "init"], [167, "init"], [176, "init"], [178, "init"], [180, "init"], [186, "init"], [188, "init"], [194, "init"], [239, "init"], [259, "init"], [280, "init"], [290, "init"], [300, "init"], [310, "init"], [317, "init"]], "wigner_seitz": [[9, "wigner-seitz"]], "pyprocar.core.DensityOfStates": [[10, "pyprocar-core-densityofstates"]], "coupled_to_uncoupled_basis": [[12, "coupled-to-uncoupled-basis"]], "dos_sum": [[13, "dos-sum"]], "get_current_basis": [[14, "get-current-basis"]], "is_non_collinear": [[15, "is-non-collinear"], [44, "is-non-collinear"]], "n_dos": [[16, "n-dos"]], "n_energies": [[17, "n-energies"]], "n_spins": [[18, "n-spins"]], "pyprocar.core.ElectronicBandStructure": [[19, "pyprocar-core-electronicbandstructure"]], "bands_gradient": [[21, "bands-gradient"]], "bands_gradient_mesh": [[22, "bands-gradient-mesh"]], "bands_hessian": [[23, "bands-hessian"]], "bands_hessian_mesh": [[24, "bands-hessian-mesh"]], "bands_mesh": [[25, "bands-mesh"]], "calculate_scalar_gradient": [[26, "calculate-scalar-gradient"]], "calculate_scalar_integral": [[27, "calculate-scalar-integral"]], "create_nd_mesh": [[28, "create-nd-mesh"]], "create_scaler_mesh": [[29, "create-scaler-mesh"]], "create_vector_mesh": [[30, "create-vector-mesh"]], "ebs_ipr": [[31, "ebs-ipr"]], "ebs_ipr_atom": [[32, "ebs-ipr-atom"]], "ebs_sum": [[33, "ebs-sum"]], "fermi_speed": [[34, "fermi-speed"]], "fermi_speed_mesh": [[35, "fermi-speed-mesh"]], "fermi_velocity": [[36, "fermi-velocity"]], "fermi_velocity_mesh": [[37, "fermi-velocity-mesh"]], "fix_collinear_spin": [[38, "fix-collinear-spin"]], "harmonic_average_effective_mass": [[39, "harmonic-average-effective-mass"]], "harmonic_average_effective_mass_mesh": [[40, "harmonic-average-effective-mass-mesh"]], "ibz2fbz": [[41, "ibz2fbz"]], "index_mesh": [[42, "index-mesh"]], "interpolate_mesh_grid": [[43, "interpolate-mesh-grid"]], "kpoints_cartesian": [[45, "kpoints-cartesian"], [189, "kpoints-cartesian"]], "kpoints_cartesian_mesh": [[46, "kpoints-cartesian-mesh"]], "kpoints_mesh": [[47, "kpoints-mesh"]], "kpoints_reduced": [[48, "kpoints-reduced"], [190, "kpoints-reduced"]], "mesh_to_array": [[49, "mesh-to-array"]], "n_kx": [[50, "n-kx"]], "n_ky": [[51, "n-ky"]], "n_kz": [[52, "n-kz"]], "natoms": [[53, "natoms"], [117, "natoms"]], "nbands": [[54, "nbands"]], "nkpoints": [[55, "nkpoints"]], "norbitals": [[56, "norbitals"]], "nprincipals": [[57, "nprincipals"]], "nspins": [[58, "nspins"]], "plot_kpoints": [[59, "plot-kpoints"]], "projected_mesh": [[60, "projected-mesh"]], "projected_phase_mesh": [[61, "projected-phase-mesh"]], "ravel_array": [[62, "ravel-array"]], "unfold": [[63, "unfold"]], "update_weights": [[64, "update-weights"]], "weights_mesh": [[65, "weights-mesh"]], "pyprocar.core.FermiSurface": [[66, "pyprocar-core-fermisurface"]], "find_energy": [[70, "find-energy"]], "plot": [[71, "plot"]], "show": [[73, "show"], [256, "show"], [277, "show"]], "spin_texture": [[74, "spin-texture"]], "pyprocar.core.FermiSurface3D": [[75, "pyprocar-core-fermisurface3d"]], "extend_surface": [[77, "extend-surface"]], "project_atomic_projections": [[78, "project-atomic-projections"]], "project_fermi_speed": [[79, "project-fermi-speed"]], "project_fermi_velocity": [[80, "project-fermi-velocity"]], "project_harmonic_effective_mass": [[81, "project-harmonic-effective-mass"]], "project_spin_texture_atomic_projections": [[82, "project-spin-texture-atomic-projections"]], "pyprocar.core.Isosurface": [[83, "pyprocar-core-isosurface"]], "dxyz": [[85, "dxyz"]], "nX": [[86, "nx"]], "nY": [[87, "ny"]], "nZ": [[88, "nz"]], "surface_boundaries": [[89, "surface-boundaries"]], "pyprocar.core.KPath": [[90, "pyprocar-core-kpath"]], "get_kpoints_transformed": [[92, "get-kpoints-transformed"]], "get_optimized_kpoints_transformed": [[93, "get-optimized-kpoints-transformed"]], "kdistances": [[94, "kdistances"]], "nsegments": [[95, "nsegments"]], "tick_names": [[96, "tick-names"]], "tick_positions": [[97, "tick-positions"]], "write_to_file": [[98, "write-to-file"]], "pyprocar.core.Structure": [[99, "pyprocar-core-structure"]], "a": [[101, "a"]], "alpha": [[102, "alpha"]], "atomic_numbers": [[103, "atomic-numbers"]], "b": [[104, "b"]], "beta": [[105, "beta"]], "c": [[106, "c"]], "cell_convex_hull": [[107, "cell-convex-hull"]], "density": [[108, "density"]], "gamma": [[109, "gamma"]], "get_space_group_international": [[110, "get-space-group-international"]], "get_space_group_number": [[111, "get-space-group-number"]], "get_spglib_symmetry_dataset": [[112, "get-spglib-symmetry-dataset"]], "get_wyckoff_positions": [[113, "get-wyckoff-positions"]], "is_point_inside": [[114, "is-point-inside"]], "lattice_corners": [[115, "lattice-corners"]], "masses": [[116, "masses"]], "nspecies": [[118, "nspecies"]], "plot_cell_convex_hull": [[119, "plot-cell-convex-hull"]], "reciprocal_lattice": [[120, "reciprocal-lattice"], [183, "reciprocal-lattice"]], "species": [[121, "species"], [163, "species"], [172, "species"], [226, "species"]], "transform": [[123, "transform"]], "volume": [[124, "volume"]], "pyprocar.core.Surface": [[125, "pyprocar-core-surface"]], "centers": [[127, "centers"]], "export": [[128, "export"]], "faces_array": [[129, "faces-array"]], "set_color_with_cmap": [[130, "set-color-with-cmap"]], "set_scalars": [[131, "set-scalars"]], "set_vectors": [[132, "set-vectors"]], "BrillouinZone": [[133, "brillouinzone"]], "DensityOfStates": [[134, "densityofstates"]], "ElectronicBandStructure": [[135, "electronicbandstructure"], [420, "electronicbandstructure"]], "FermiSurface": [[136, "fermisurface"]], "FermiSurface3D": [[137, "fermisurface3d"]], "Core API": [[138, "core-api"]], "Isosurface": [[139, "isosurface"]], "KPath": [[140, "kpath"]], "Structure": [[141, "structure"], [427, "structure"]], "Surface": [[142, "surface"]], "API Reference": [[143, "api-reference"]], "pyprocar.io.abinit.AbinitKpoints": [[144, "pyprocar-io-abinit-abinitkpoints"]], "pyprocar.io.abinit.AbinitProcar": [[146, "pyprocar-io-abinit-abinitprocar"]], "pyprocar.io.abinit.Output": [[148, "pyprocar-io-abinit-output"]], "pyprocar.io.bxsf.BxsfParser": [[150, "pyprocar-io-bxsf-bxsfparser"]], "parse_bxsf": [[152, "parse-bxsf"]], "pyprocar.io.lobster.LobsterParser": [[153, "pyprocar-io-lobster-lobsterparser"]], "dos": [[155, "dos"], [201, "dos"]], "dos_parametric": [[156, "dos-parametric"]], "dos_projected": [[157, "dos-projected"], [202, "dos-projected"]], "dos_to_dict": [[158, "dos-to-dict"], [203, "dos-to-dict"]], "dos_total": [[159, "dos-total"], [204, "dos-total"]], "final_structure": [[160, "final-structure"], [168, "final-structure"], [208, "final-structure"]], "initial_structure": [[161, "initial-structure"], [170, "initial-structure"], [217, "initial-structure"]], "parse_structure": [[162, "parse-structure"]], "structure": [[164, "structure"], [173, "structure"], [227, "structure"]], "structures": [[165, "structures"], [174, "structures"], [228, "structures"]], "pyprocar.io.qe.QEParser": [[166, "pyprocar-io-qe-qeparser"]], "getKpointLabels": [[169, "getkpointlabels"]], "kpoints_cart": [[171, "kpoints-cart"]], "pyprocar.io.siesta.SiestaParser": [[175, "pyprocar-io-siesta-siestaparser"]], "pyprocar.io.vasp.Kpoints": [[177, "pyprocar-io-vasp-kpoints"]], "pyprocar.io.vasp.Outcar": [[179, "pyprocar-io-vasp-outcar"]], "efermi": [[181, "efermi"]], "get_symmetry_operations": [[182, "get-symmetry-operations"]], "rotations": [[184, "rotations"]], "pyprocar.io.vasp.Poscar": [[185, "pyprocar-io-vasp-poscar"]], "pyprocar.io.vasp.Procar": [[187, "pyprocar-io-vasp-procar"]], "repair": [[191, "repair"], [334, "repair"]], "symmetrize": [[192, "symmetrize"]], "pyprocar.io.vasp.VaspXML": [[193, "pyprocar-io-vasp-vaspxml"]], "bands": [[195, "bands"]], "bands_projected": [[196, "bands-projected"]], "conv": [[197, "conv"]], "convergence": [[198, "convergence"]], "convergence_electronic": [[199, "convergence-electronic"]], "convergence_ionic": [[200, "convergence-ionic"]], "energies": [[205, "energies"]], "energy": [[206, "energy"]], "fermi": [[207, "fermi"]], "forces": [[209, "forces"]], "get_general": [[210, "get-general"]], "get_params": [[211, "get-params"]], "get_scstep": [[212, "get-scstep"]], "get_set": [[213, "get-set"]], "get_structure": [[214, "get-structure"]], "get_varray": [[215, "get-varray"]], "incar": [[216, "incar"]], "is_finished": [[218, "is-finished"]], "iteration_data": [[219, "iteration-data"]], "kpoints": [[220, "kpoints"]], "kpoints_list": [[221, "kpoints-list"]], "last_energy": [[222, "last-energy"]], "parse_vasprun": [[223, "parse-vasprun"]], "potcar_info": [[224, "potcar-info"]], "read": [[225, "read"]], "text_to_bool": [[229, "text-to-bool"]], "vasp_parameters": [[230, "vasp-parameters"]], "AbinitParser": [[231, "abinitparser"]], "BxsfParser": [[232, "bxsfparser"]], "IO API": [[233, "io-api"]], "LobsterParser": [[234, "lobsterparser"]], "QEParser": [[235, "qeparser"]], "SiestaParser": [[236, "siestaparser"]], "VaspParser": [[237, "vaspparser"]], "pyprocar.plotter.DOSPlot": [[238, "pyprocar-plotter-dosplot"]], "draw_fermi": [[240, "draw-fermi"], [260, "draw-fermi"]], "plot_dos": [[243, "plot-dos"]], "plot_parametric": [[244, "plot-parametric"]], "plot_parametric_line": [[245, "plot-parametric-line"]], "plot_stack": [[246, "plot-stack"]], "plot_stack_orbitals": [[247, "plot-stack-orbitals"]], "plot_stack_species": [[248, "plot-stack-species"]], "save": [[249, "save"], [268, "save"]], "set_xlabel": [[250, "set-xlabel"], [271, "set-xlabel"]], "set_xlim": [[251, "set-xlim"], [272, "set-xlim"]], "set_xticks": [[252, "set-xticks"], [273, "set-xticks"]], "set_ylabel": [[253, "set-ylabel"], [274, "set-ylabel"]], "set_ylim": [[254, "set-ylim"], [275, "set-ylim"]], "set_yticks": [[255, "set-yticks"], [276, "set-yticks"]], "update_config": [[257, "update-config"], [278, "update-config"]], "pyprocar.plotter.EBSPlot": [[258, "pyprocar-plotter-ebsplot"]], "plot_atomic_levels": [[263, "plot-atomic-levels"]], "plot_bands": [[264, "plot-bands"]], "plot_parameteric": [[265, "plot-parameteric"]], "plot_parameteric_overlay": [[266, "plot-parameteric-overlay"]], "plot_scatter": [[267, "plot-scatter"]], "set_colorbar_title": [[269, "set-colorbar-title"]], "set_title": [[270, "set-title"]], "pyprocar.plotter.ProcarPlot": [[279, "pyprocar-plotter-procarplot"]], "atomicPlot": [[281, "atomicplot"]], "parametricPlot": [[282, "parametricplot"]], "plotBands": [[283, "plotbands"]], "scatterPlot": [[284, "scatterplot"]], "EBSPlot": [[285, "ebsplot"]], "DosPlot": [[286, "dosplot"]], "Plotter API": [[287, "plotter-api"]], "ProcarPlot": [[288, "procarplot"]], "pyprocar.pyposcar.Poscar": [[289, "pyprocar-pyposcar-poscar"]], "add": [[291, "add"], [301, "add"]], "load_from_data": [[292, "load-from-data"]], "parse": [[293, "parse"]], "remove": [[294, "remove"], [305, "remove"]], "sort": [[295, "sort"]], "write": [[296, "write"], [308, "write"], [312, "write"]], "xyz": [[297, "xyz"]], "poscarDiff": [[298, "poscardiff"]], "pyprocar.pyposcar.poscar_modify": [[299, "pyprocar-pyposcar-poscar-modify"]], "change_elements": [[302, "change-elements"]], "pos_multiply": [[303, "pos-multiply"]], "pos_sum": [[304, "pos-sum"]], "scale_lattice": [[306, "scale-lattice"]], "shift": [[307, "shift"]], "pyprocar.pyposcar.poscar_supercell": [[309, "pyprocar-pyposcar-poscar-supercell"]], "PyPoscar API": [[313, "pyposcar-api"]], "Poscar": [[314, "poscar"]], "poscarUtils": [[315, "poscarutils"]], "pyprocar.scripts.FermiHandler": [[316, "pyprocar-scripts-fermihandler"]], "create_isovalue_gif": [[318, "create-isovalue-gif"]], "plot_fermi_cross_section": [[319, "plot-fermi-cross-section"]], "plot_fermi_cross_section_box_widget": [[320, "plot-fermi-cross-section-box-widget"]], "plot_fermi_isoslider": [[321, "plot-fermi-isoslider"]], "plot_fermi_surface": [[322, "plot-fermi-surface"]], "print_default_settings": [[323, "print-default-settings"]], "bandgap": [[324, "bandgap"], [335, "bandgap"]], "bandsdosplot": [[325, "bandsdosplot"], [336, "bandsdosplot"]], "bandsplot": [[326, "bandsplot"], [337, "bandsplot"]], "bandsplot_2d": [[327, "bandsplot-2d"], [338, "bandsplot-2d"]], "cat": [[328, "cat"], [339, "cat"]], "dosplot": [[329, "dosplot"], [340, "dosplot"]], "fermi2D": [[330, "fermi2d"], [341, "fermi2d"]], "fermi3D": [[331, "fermi3d"], [342, "fermi3d"]], "generate2dkmesh": [[332, "generate2dkmesh"], [344, "generate2dkmesh"]], "kpath": [[333, "kpath"], [346, "kpath"]], "FermiHandler": [[343, "fermihandler"]], "Scripts API": [[345, "scripts-api"]], "reapir": [[347, "reapir"]], "Abinit Perperation": [[348, "abinit-perperation"]], "DFTB+ Preparation": [[349, "dftb-preparation"]], "Preparing Calculations": [[349, "preparing-calculations"], [353, "preparing-calculations"], [355, "preparing-calculations"]], "Band Structure (SSC)": [[349, "band-structure-ssc"]], "Band Structure (non-SSC)": [[349, "band-structure-non-ssc"]], "Fermi (SCC)": [[349, "fermi-scc"]], "Adding names to k-points": [[349, "adding-names-to-k-points"]], "Elk Perperation": [[350, "elk-perperation"]], "DFT Prep": [[351, "dft-prep"]], "Lobster Perperation": [[352, "lobster-perperation"]], "Quantum Espresso Preparation": [[353, "quantum-espresso-preparation"]], "Band Structure": [[353, "band-structure"], [355, "band-structure"], [356, "band-structure"], [409, "band-structure"]], "Density of States": [[353, "density-of-states"], [355, "density-of-states"], [369, "density-of-states"], [409, "density-of-states"], [419, "density-of-states"]], "Band Structure and Density of States": [[353, "band-structure-and-density-of-states"], [355, "band-structure-and-density-of-states"]], "Fermi": [[353, "fermi"], [355, "fermi"]], "K-Points Format": [[353, "k-points-format"], [355, "k-points-format"]], "Magnetic Calculations": [[353, "magnetic-calculations"], [355, "magnetic-calculations"]], "Siesta Perperation": [[354, "siesta-perperation"]], "VASP Preparation": [[355, "vasp-preparation"]], "Plotting 2D band structure": [[357, "plotting-2d-band-structure"]], "Plain mode": [[357, "plain-mode"], [361, "plain-mode"], [364, "plain-mode"], [365, "plain-mode"], [366, "plain-mode"], [370, "plain-mode"], [374, "plain-mode"], [377, "plain-mode"], [381, "plain-mode"], [390, "plain-mode"], [391, "plain-mode"], [392, "plain-mode"], [393, "plain-mode"]], "Parametric mode": [[357, "parametric-mode"], [361, "parametric-mode"], [364, "parametric-mode"], [365, "parametric-mode"], [366, "parametric-mode"], [370, "parametric-mode"], [372, "parametric-mode"], [373, "parametric-mode"], [374, "parametric-mode"], [392, "parametric-mode"], [393, "parametric-mode"]], "Property Projection mode": [[357, "property-projection-mode"]], "Spin Texture mode": [[357, "spin-texture-mode"], [394, "spin-texture-mode"]], "Plotting Atomic Levels": [[358, "plotting-atomic-levels"]], "Preparation": [[358, "preparation"], [359, "preparation"], [360, "preparation"], [363, "preparation"], [371, "preparation"], [378, "preparation"], [382, "preparation"], [388, "preparation"]], "Setting up the environment": [[358, "setting-up-the-environment"], [359, "setting-up-the-environment"], [363, "setting-up-the-environment"]], "Plotting in Atomic Mode": [[358, "plotting-in-atomic-mode"]], "Autobands plotting": [[359, "autobands-plotting"]], "Autobands Example": [[359, "autobands-example"]], "Plotting with Configurations in pyprocar": [[360, "plotting-with-configurations-in-pyprocar"], [371, "plotting-with-configurations-in-pyprocar"], [382, "plotting-with-configurations-in-pyprocar"], [388, "plotting-with-configurations-in-pyprocar"]], "Plotting band structure": [[361, "plotting-band-structure"]], "parametric_linemode": [[361, "parametric-linemode"]], "Scatter mode": [[361, "scatter-mode"], [366, "scatter-mode"]], "overlay_species mode": [[361, "overlay-species-mode"]], "overlay_orbtials mode": [[361, "overlay-orbtials-mode"]], "overlay mode": [[361, "overlay-mode"], [370, "overlay-mode"]], "overlay mode by orbital names": [[361, "overlay-mode-by-orbital-names"]], "Comparing band structures": [[362, "comparing-band-structures"]], "Plotting Inverse participation ratio": [[363, "plotting-inverse-participation-ratio"]], "Topologically-protected surface states in Bi_2Se_3": [[363, "topologically-protected-surface-states-in-bi-2se-3"]], "NV^- defect in diamond": [[363, "nv-defect-in-diamond"]], "Plotting non colinear band structures in Quantum Espresso": [[364, "plotting-non-colinear-band-structures-in-quantum-espresso"]], "Plotting non colinear band structures in VASP": [[365, "plotting-non-colinear-band-structures-in-vasp"]], "Plotting spin polarized band structures": [[366, "plotting-spin-polarized-band-structures"]], "Unfolding Band Structure": [[367, "unfolding-band-structure"]], "Plotting primitive bands": [[367, "plotting-primitive-bands"]], "Unfolding of the supercell bands": [[367, "unfolding-of-the-supercell-bands"]], "Computation times": [[368, "computation-times"], [375, "computation-times"], [379, "computation-times"], [385, "computation-times"], [395, "computation-times"], [401, "computation-times"], [408, "computation-times"]], "Plotting density of states": [[370, "plotting-density-of-states"]], "parametric_line mode": [[370, "parametric-line-mode"], [374, "parametric-line-mode"]], "stack_species mode": [[370, "stack-species-mode"], [374, "stack-species-mode"]], "stack_orbtials mode": [[370, "stack-orbtials-mode"], [374, "stack-orbtials-mode"]], "Plotting non colinear dos in Quantum Espresso": [[372, "plotting-non-colinear-dos-in-quantum-espresso"]], "Plotting non colinear dos in VASP": [[373, "plotting-non-colinear-dos-in-vasp"]], "Plotting spin-polarized density of states": [[374, "plotting-spin-polarized-density-of-states"]], "stack mode": [[374, "stack-mode"]], "Bands and Dos plot": [[376, "bands-and-dos-plot"], [409, "bands-and-dos-plot"]], "Plotting bandsdosplot": [[377, "plotting-bandsdosplot"], [378, "plotting-bandsdosplot"]], "Fermi 2D": [[380, "fermi-2d"], [409, "fermi-2d"]], "Plotting fermi2d": [[381, "plotting-fermi2d"]], "plain_bands mode": [[381, "plain-bands-mode"]], "parametric mode": [[381, "parametric-mode"]], "Selecting band indices": [[381, "selecting-band-indices"], [383, "selecting-band-indices"]], "Plotting fermi2d noncolinear": [[383, "plotting-fermi2d-noncolinear"]], "Spin Texture Projection": [[383, "spin-texture-projection"]], "Spin Texture single color": [[383, "spin-texture-single-color"]], "Plotting rashba spin splitting": [[384, "plotting-rashba-spin-splitting"]], "energy = 0.60 sx projection no arrows": [[384, "energy-0-60-sx-projection-no-arrows"]], "energy = 0.60 sy projection no arrows": [[384, "energy-0-60-sy-projection-no-arrows"]], "energy = 0.60 sz projection no arrows": [[384, "energy-0-60-sz-projection-no-arrows"]], "energy = -0.90 sx projection no arrows": [[384, "energy-0-90-sx-projection-no-arrows"]], "energy = -0.90 sy projection no arrows": [[384, "energy-0-90-sy-projection-no-arrows"]], "energy = -0.90 sz projection no arrows": [[384, "energy-0-90-sz-projection-no-arrows"]], "energy = 0.60 sx projection with arrows": [[384, "energy-0-60-sx-projection-with-arrows"]], "energy = -0.90 sx projection with arrows": [[384, "energy-0-90-sx-projection-with-arrows"]], "Fermi 3D": [[386, "fermi-3d"], [409, "fermi-3d"]], "Showing how to get van alphen fequencies from the fermi surface": [[387, "showing-how-to-get-van-alphen-fequencies-from-the-fermi-surface"]], "Maximal cross sectional area along the (0,0,1)": [[387, "maximal-cross-sectional-area-along-the-0-0-1"]], "Minimal cross sectional area along the (0,0,1)": [[387, "minimal-cross-sectional-area-along-the-0-0-1"]], "Extremal cross sectional area along the (0,1,1)": [[387, "extremal-cross-sectional-area-along-the-0-1-1"]], "Plotting fermi3d cross_section": [[389, "plotting-fermi3d-cross-section"]], "Cross section": [[389, "cross-section"]], "Cross section. Save slice": [[389, "cross-section-save-slice"]], "Plotting fermi3d isoslider": [[390, "plotting-fermi3d-isoslider"]], "Plotting fermi3d isovalue_gif": [[391, "plotting-fermi3d-isovalue-gif"]], "Plotting fermi3d plain": [[392, "plotting-fermi3d-plain"]], "Plotting fermi3d spin-polarized": [[393, "plotting-fermi3d-spin-polarized"]], "Plotting fermi3d spin_texture": [[394, "plotting-fermi3d-spin-texture"]], "Other": [[396, "other"], [409, "other"]], "Example of kmesh_generator": [[397, "example-of-kmesh-generator"]], "Plotting Kmesh": [[397, "plotting-kmesh"]], "Example of finding the bandgap": [[398, "example-of-finding-the-bandgap"], [399, "example-of-finding-the-bandgap"]], "Other properties": [[399, "other-properties"]], "Bands": [[399, "bands"]], "Projections": [[399, "projections"]], "Gradients": [[399, "gradients"]], "Band/Fermi velocities": [[399, "band-fermi-velocities"]], "Effective mass": [[399, "effective-mass"]], "Example of kpath_generator": [[400, "example-of-kpath-generator"]], "Plotting K Path": [[400, "plotting-k-path"]], "PyPoscar": [[402, "pyposcar"], [409, "pyposcar"]], "Visualizing Clusters in Bi2Se3 Slab": [[403, "visualizing-clusters-in-bi2se3-slab"]], "Utility function for creating GIF visualizations": [[403, "utility-function-for-creating-gif-visualizations"], [404, "utility-function-for-creating-gif-visualizations"], [407, "utility-function-for-creating-gif-visualizations"]], "Parsing the POSCAR and Identifying Clusters": [[403, "parsing-the-poscar-and-identifying-clusters"]], "Visualizing the Clusters": [[403, "visualizing-the-clusters"]], "Finding defects in a POSCAR file": [[404, "finding-defects-in-a-poscar-file"]], "Finding defects": [[404, "finding-defects"]], "Analyzing Radial Distribution Functions (RDF)": [[405, "analyzing-radial-distribution-functions-rdf"]], "Parsing the POSCAR file": [[405, "parsing-the-poscar-file"]], "Computing RDF and KDE Curves": [[405, "computing-rdf-and-kde-curves"]], "Visualizing the Results": [[405, "visualizing-the-results"]], "Substituting Atoms in a POSCAR File": [[406, "substituting-atoms-in-a-poscar-file"]], "Reading and Parsing the POSCAR File": [[406, "reading-and-parsing-the-poscar-file"]], "Atom Substitution": [[406, "atom-substitution"]], "Visualization of Atomic Structures": [[406, "visualization-of-atomic-structures"]], "Creating GIFs for Visualization": [[406, "creating-gifs-for-visualization"]], "Modifying a POSCAR File: Scaling, Supercells, and Defects": [[407, "modifying-a-poscar-file-scaling-supercells-and-defects"]], "Scaling Vacuum Space in the Lattice": [[407, "scaling-vacuum-space-in-the-lattice"]], "Creating a Supercell": [[407, "creating-a-supercell"]], "Introducing Defects": [[407, "introducing-defects"]], "Examples": [[409, "examples"]], "Authors & Citation": [[410, "authors-citation"]], "Citing PyProcar": [[410, "citing-pyprocar"], [411, "citing-pyprocar"]], "Authors": [[410, "authors"]], "Contributors": [[410, "contributors"]], "Developers": [[410, "developers"]], "License": [[410, "license"]], "Getting started": [[411, "getting-started"]], "Installation": [[411, "installation"], [412, "installation"]], "Paper": [[411, "paper"]], "Support": [[411, "support"]], "Installing with pip": [[412, "installing-with-pip"]], "Installing with conda": [[412, "installing-with-conda"]], "Cloning through GitHub": [[412, "cloning-through-github"]], "After Installation": [[412, "after-installation"]], "Why PyProcar?": [[413, "why-pyprocar"]], "PyProcar": [[414, "pyprocar"]], "Indices and tables": [[414, "indices-and-tables"]], "Atomic Projections": [[415, "atomic-projections"]], "1. Spin projection": [[415, "spin-projection"]], "2. Atom projection": [[415, "atom-projection"]], "3. Orbital projection": [[415, "orbital-projection"]], "Band structure": [[416, "band-structure"]], "1. Plain band structure": [[416, "plain-band-structure"]], "2. Spin projection": [[416, "spin-projection"]], "3. Atom projection": [[416, "atom-projection"]], "4. Orbital projection": [[416, "orbital-projection"]], "Export plot as a matplotlib.pyplot object": [[416, "export-plot-as-a-matplotlib-pyplot-object"], [421, "export-plot-as-a-matplotlib-pyplot-object"], [428, "export-plot-as-a-matplotlib-pyplot-object"]], "Converting k-points from reduced to cartesian coordinates": [[416, "converting-k-points-from-reduced-to-cartesian-coordinates"]], "Plotting band structures with a discontinuous k-path": [[416, "plotting-band-structures-with-a-discontinuous-k-path"]], "Concatenating multiple calculations": [[417, "concatenating-multiple-calculations"]], "Compare bands": [[418, "compare-bands"]], "1. mode='plain'": [[419, "mode-plain"]], "2. mode='parametric'": [[419, "mode-parametric"]], "3. mode='parametric_line'": [[419, "mode-parametric-line"]], "4. mode='stack'": [[419, "mode-stack"]], "5. mode='stack_species'": [[419, "mode-stack-species"]], "6. mode='stack_orbitals'": [[419, "mode-stack-orbitals"]], "Accessing Electronic Band Structure": [[420, "accessing-electronic-band-structure"]], "2D spin-texture": [[421, "d-spin-texture"]], "Translate and Rotate the 2D KPOINT mesh": [[421, "translate-and-rotate-the-2d-kpoint-mesh"]], "3D Fermi surface": [[422, "d-fermi-surface"]], "3D surfaces": [[422, "d-surfaces"]], "Keyboard shortcuts": [[422, "keyboard-shortcuts"]], "Filtering data": [[423, "filtering-data"]], "To filter selected orbitals": [[423, "to-filter-selected-orbitals"]], "To filter selected k-points": [[423, "to-filter-selected-k-points"]], "To filter selected spins": [[423, "to-filter-selected-spins"]], "To filter selected atoms": [[423, "to-filter-selected-atoms"]], "User Guide": [[424, "user-guide"]], "Further Details": [[424, "further-details"]], "K Path": [[425, "k-path"]], "Accessing Kpath Information": [[425, "accessing-kpath-information"]], "Repair": [[426, "repair"]], "Accessing Structure Information": [[427, "accessing-structure-information"]], "Band unfolding": [[428, "band-unfolding"]]}, "indexentries": {"brillouinzone (class in pyprocar.core)": [[7, "pyprocar.core.BrillouinZone"]], "__init__() (pyprocar.core.brillouinzone method)": [[8, "pyprocar.core.BrillouinZone.__init__"]], "wigner_seitz() (pyprocar.core.brillouinzone method)": [[9, "pyprocar.core.BrillouinZone.wigner_seitz"]], "densityofstates (class in pyprocar.core)": [[10, "pyprocar.core.DensityOfStates"]], "__init__() (pyprocar.core.densityofstates method)": [[11, "pyprocar.core.DensityOfStates.__init__"]], "coupled_to_uncoupled_basis() (pyprocar.core.densityofstates method)": [[12, "pyprocar.core.DensityOfStates.coupled_to_uncoupled_basis"]], "dos_sum() (pyprocar.core.densityofstates method)": [[13, "pyprocar.core.DensityOfStates.dos_sum"]], "get_current_basis() (pyprocar.core.densityofstates method)": [[14, "pyprocar.core.DensityOfStates.get_current_basis"]], "is_non_collinear (pyprocar.core.densityofstates property)": [[15, "pyprocar.core.DensityOfStates.is_non_collinear"]], "n_dos (pyprocar.core.densityofstates property)": [[16, "pyprocar.core.DensityOfStates.n_dos"]], "n_energies (pyprocar.core.densityofstates property)": [[17, "pyprocar.core.DensityOfStates.n_energies"]], "n_spins (pyprocar.core.densityofstates property)": [[18, "pyprocar.core.DensityOfStates.n_spins"]], "electronicbandstructure (class in pyprocar.core)": [[19, "pyprocar.core.ElectronicBandStructure"]], "__init__() (pyprocar.core.electronicbandstructure method)": [[20, "pyprocar.core.ElectronicBandStructure.__init__"]], "bands_gradient (pyprocar.core.electronicbandstructure property)": [[21, "pyprocar.core.ElectronicBandStructure.bands_gradient"]], "bands_gradient_mesh (pyprocar.core.electronicbandstructure property)": [[22, "pyprocar.core.ElectronicBandStructure.bands_gradient_mesh"]], "bands_hessian (pyprocar.core.electronicbandstructure property)": [[23, "pyprocar.core.ElectronicBandStructure.bands_hessian"]], "bands_hessian_mesh (pyprocar.core.electronicbandstructure property)": [[24, "pyprocar.core.ElectronicBandStructure.bands_hessian_mesh"]], "bands_mesh (pyprocar.core.electronicbandstructure property)": [[25, "pyprocar.core.ElectronicBandStructure.bands_mesh"]], "calculate_scalar_gradient() (pyprocar.core.electronicbandstructure method)": [[26, "pyprocar.core.ElectronicBandStructure.calculate_scalar_gradient"]], "calculate_scalar_integral() (pyprocar.core.electronicbandstructure method)": [[27, "pyprocar.core.ElectronicBandStructure.calculate_scalar_integral"]], "create_nd_mesh() (pyprocar.core.electronicbandstructure method)": [[28, "pyprocar.core.ElectronicBandStructure.create_nd_mesh"]], "create_scaler_mesh() (pyprocar.core.electronicbandstructure method)": [[29, "pyprocar.core.ElectronicBandStructure.create_scaler_mesh"]], "create_vector_mesh() (pyprocar.core.electronicbandstructure method)": [[30, "pyprocar.core.ElectronicBandStructure.create_vector_mesh"]], "ebs_ipr() (pyprocar.core.electronicbandstructure method)": [[31, "pyprocar.core.ElectronicBandStructure.ebs_ipr"]], "ebs_ipr_atom() (pyprocar.core.electronicbandstructure method)": [[32, "pyprocar.core.ElectronicBandStructure.ebs_ipr_atom"]], "ebs_sum() (pyprocar.core.electronicbandstructure method)": [[33, "pyprocar.core.ElectronicBandStructure.ebs_sum"]], "fermi_speed (pyprocar.core.electronicbandstructure property)": [[34, "pyprocar.core.ElectronicBandStructure.fermi_speed"]], "fermi_speed_mesh (pyprocar.core.electronicbandstructure property)": [[35, "pyprocar.core.ElectronicBandStructure.fermi_speed_mesh"]], "fermi_velocity (pyprocar.core.electronicbandstructure property)": [[36, "pyprocar.core.ElectronicBandStructure.fermi_velocity"]], "fermi_velocity_mesh (pyprocar.core.electronicbandstructure property)": [[37, "pyprocar.core.ElectronicBandStructure.fermi_velocity_mesh"]], "fix_collinear_spin() (pyprocar.core.electronicbandstructure method)": [[38, "pyprocar.core.ElectronicBandStructure.fix_collinear_spin"]], "harmonic_average_effective_mass (pyprocar.core.electronicbandstructure property)": [[39, "pyprocar.core.ElectronicBandStructure.harmonic_average_effective_mass"]], "harmonic_average_effective_mass_mesh (pyprocar.core.electronicbandstructure property)": [[40, "pyprocar.core.ElectronicBandStructure.harmonic_average_effective_mass_mesh"]], "ibz2fbz() (pyprocar.core.electronicbandstructure method)": [[41, "pyprocar.core.ElectronicBandStructure.ibz2fbz"]], "index_mesh (pyprocar.core.electronicbandstructure property)": [[42, "pyprocar.core.ElectronicBandStructure.index_mesh"]], "interpolate_mesh_grid() (pyprocar.core.electronicbandstructure method)": [[43, "pyprocar.core.ElectronicBandStructure.interpolate_mesh_grid"]], "is_non_collinear (pyprocar.core.electronicbandstructure property)": [[44, "pyprocar.core.ElectronicBandStructure.is_non_collinear"]], "kpoints_cartesian (pyprocar.core.electronicbandstructure property)": [[45, "pyprocar.core.ElectronicBandStructure.kpoints_cartesian"]], "kpoints_cartesian_mesh (pyprocar.core.electronicbandstructure property)": [[46, "pyprocar.core.ElectronicBandStructure.kpoints_cartesian_mesh"]], "kpoints_mesh (pyprocar.core.electronicbandstructure property)": [[47, "pyprocar.core.ElectronicBandStructure.kpoints_mesh"]], "kpoints_reduced (pyprocar.core.electronicbandstructure property)": [[48, "pyprocar.core.ElectronicBandStructure.kpoints_reduced"]], "mesh_to_array() (pyprocar.core.electronicbandstructure method)": [[49, "pyprocar.core.ElectronicBandStructure.mesh_to_array"]], "n_kx (pyprocar.core.electronicbandstructure property)": [[50, "pyprocar.core.ElectronicBandStructure.n_kx"]], "n_ky (pyprocar.core.electronicbandstructure property)": [[51, "pyprocar.core.ElectronicBandStructure.n_ky"]], "n_kz (pyprocar.core.electronicbandstructure property)": [[52, "pyprocar.core.ElectronicBandStructure.n_kz"]], "natoms (pyprocar.core.electronicbandstructure property)": [[53, "pyprocar.core.ElectronicBandStructure.natoms"]], "nbands (pyprocar.core.electronicbandstructure property)": [[54, "pyprocar.core.ElectronicBandStructure.nbands"]], "nkpoints (pyprocar.core.electronicbandstructure property)": [[55, "pyprocar.core.ElectronicBandStructure.nkpoints"]], "norbitals (pyprocar.core.electronicbandstructure property)": [[56, "pyprocar.core.ElectronicBandStructure.norbitals"]], "nprincipals (pyprocar.core.electronicbandstructure property)": [[57, "pyprocar.core.ElectronicBandStructure.nprincipals"]], "nspins (pyprocar.core.electronicbandstructure property)": [[58, "pyprocar.core.ElectronicBandStructure.nspins"]], "plot_kpoints() (pyprocar.core.electronicbandstructure method)": [[59, "pyprocar.core.ElectronicBandStructure.plot_kpoints"]], "projected_mesh (pyprocar.core.electronicbandstructure property)": [[60, "pyprocar.core.ElectronicBandStructure.projected_mesh"]], "projected_phase_mesh (pyprocar.core.electronicbandstructure property)": [[61, "pyprocar.core.ElectronicBandStructure.projected_phase_mesh"]], "ravel_array() (pyprocar.core.electronicbandstructure method)": [[62, "pyprocar.core.ElectronicBandStructure.ravel_array"]], "unfold() (pyprocar.core.electronicbandstructure method)": [[63, "pyprocar.core.ElectronicBandStructure.unfold"]], "update_weights() (pyprocar.core.electronicbandstructure method)": [[64, "pyprocar.core.ElectronicBandStructure.update_weights"]], "weights_mesh (pyprocar.core.electronicbandstructure property)": [[65, "pyprocar.core.ElectronicBandStructure.weights_mesh"]], "fermisurface (class in pyprocar.core)": [[66, "pyprocar.core.FermiSurface"]], "__init__() (pyprocar.core.fermisurface method)": [[67, "pyprocar.core.FermiSurface.__init__"]], "add_axes_labels() (pyprocar.core.fermisurface method)": [[68, "pyprocar.core.FermiSurface.add_axes_labels"]], "add_legend() (pyprocar.core.fermisurface method)": [[69, "pyprocar.core.FermiSurface.add_legend"]], "find_energy() (pyprocar.core.fermisurface method)": [[70, "pyprocar.core.FermiSurface.find_energy"]], "plot() (pyprocar.core.fermisurface method)": [[71, "pyprocar.core.FermiSurface.plot"]], "savefig() (pyprocar.core.fermisurface method)": [[72, "pyprocar.core.FermiSurface.savefig"]], "show() (pyprocar.core.fermisurface method)": [[73, "pyprocar.core.FermiSurface.show"]], "spin_texture() (pyprocar.core.fermisurface method)": [[74, "pyprocar.core.FermiSurface.spin_texture"]], "fermisurface3d (class in pyprocar.core)": [[75, "pyprocar.core.FermiSurface3D"]], "__init__() (pyprocar.core.fermisurface3d method)": [[76, "pyprocar.core.FermiSurface3D.__init__"]], "extend_surface() (pyprocar.core.fermisurface3d method)": [[77, "pyprocar.core.FermiSurface3D.extend_surface"]], "project_atomic_projections() (pyprocar.core.fermisurface3d method)": [[78, "pyprocar.core.FermiSurface3D.project_atomic_projections"]], "project_fermi_speed() (pyprocar.core.fermisurface3d method)": [[79, "pyprocar.core.FermiSurface3D.project_fermi_speed"]], "project_fermi_velocity() (pyprocar.core.fermisurface3d method)": [[80, "pyprocar.core.FermiSurface3D.project_fermi_velocity"]], "project_harmonic_effective_mass() (pyprocar.core.fermisurface3d method)": [[81, "pyprocar.core.FermiSurface3D.project_harmonic_effective_mass"]], "project_spin_texture_atomic_projections() (pyprocar.core.fermisurface3d method)": [[82, "pyprocar.core.FermiSurface3D.project_spin_texture_atomic_projections"]], "isosurface (class in pyprocar.core)": [[83, "pyprocar.core.Isosurface"]], "__init__() (pyprocar.core.isosurface method)": [[84, "pyprocar.core.Isosurface.__init__"]], "dxyz (pyprocar.core.isosurface property)": [[85, "pyprocar.core.Isosurface.dxyz"]], "nx (pyprocar.core.isosurface property)": [[86, "pyprocar.core.Isosurface.nX"]], "ny (pyprocar.core.isosurface property)": [[87, "pyprocar.core.Isosurface.nY"]], "nz (pyprocar.core.isosurface property)": [[88, "pyprocar.core.Isosurface.nZ"]], "surface_boundaries (pyprocar.core.isosurface property)": [[89, "pyprocar.core.Isosurface.surface_boundaries"]], "kpath (class in pyprocar.core)": [[90, "pyprocar.core.KPath"]], "__init__() (pyprocar.core.kpath method)": [[91, "pyprocar.core.KPath.__init__"]], "get_kpoints_transformed() (pyprocar.core.kpath method)": [[92, "pyprocar.core.KPath.get_kpoints_transformed"]], "get_optimized_kpoints_transformed() (pyprocar.core.kpath method)": [[93, "pyprocar.core.KPath.get_optimized_kpoints_transformed"]], "kdistances (pyprocar.core.kpath property)": [[94, "pyprocar.core.KPath.kdistances"]], "nsegments (pyprocar.core.kpath property)": [[95, "pyprocar.core.KPath.nsegments"]], "tick_names (pyprocar.core.kpath property)": [[96, "pyprocar.core.KPath.tick_names"]], "tick_positions (pyprocar.core.kpath property)": [[97, "pyprocar.core.KPath.tick_positions"]], "write_to_file() (pyprocar.core.kpath method)": [[98, "pyprocar.core.KPath.write_to_file"]], "structure (class in pyprocar.core)": [[99, "pyprocar.core.Structure"]], "__init__() (pyprocar.core.structure method)": [[100, "pyprocar.core.Structure.__init__"]], "a (pyprocar.core.structure property)": [[101, "pyprocar.core.Structure.a"]], "alpha (pyprocar.core.structure property)": [[102, "pyprocar.core.Structure.alpha"]], "atomic_numbers (pyprocar.core.structure property)": [[103, "pyprocar.core.Structure.atomic_numbers"]], "b (pyprocar.core.structure property)": [[104, "pyprocar.core.Structure.b"]], "beta (pyprocar.core.structure property)": [[105, "pyprocar.core.Structure.beta"]], "c (pyprocar.core.structure property)": [[106, "pyprocar.core.Structure.c"]], "cell_convex_hull (pyprocar.core.structure property)": [[107, "pyprocar.core.Structure.cell_convex_hull"]], "density (pyprocar.core.structure property)": [[108, "pyprocar.core.Structure.density"]], "gamma (pyprocar.core.structure property)": [[109, "pyprocar.core.Structure.gamma"]], "get_space_group_international() (pyprocar.core.structure method)": [[110, "pyprocar.core.Structure.get_space_group_international"]], "get_space_group_number() (pyprocar.core.structure method)": [[111, "pyprocar.core.Structure.get_space_group_number"]], "get_spglib_symmetry_dataset() (pyprocar.core.structure method)": [[112, "pyprocar.core.Structure.get_spglib_symmetry_dataset"]], "get_wyckoff_positions() (pyprocar.core.structure method)": [[113, "pyprocar.core.Structure.get_wyckoff_positions"]], "is_point_inside() (pyprocar.core.structure method)": [[114, "pyprocar.core.Structure.is_point_inside"]], "lattice_corners (pyprocar.core.structure property)": [[115, "pyprocar.core.Structure.lattice_corners"]], "masses (pyprocar.core.structure property)": [[116, "pyprocar.core.Structure.masses"]], "natoms (pyprocar.core.structure property)": [[117, "pyprocar.core.Structure.natoms"]], "nspecies (pyprocar.core.structure property)": [[118, "pyprocar.core.Structure.nspecies"]], "plot_cell_convex_hull() (pyprocar.core.structure method)": [[119, "pyprocar.core.Structure.plot_cell_convex_hull"]], "reciprocal_lattice (pyprocar.core.structure property)": [[120, "pyprocar.core.Structure.reciprocal_lattice"]], "species (pyprocar.core.structure property)": [[121, "pyprocar.core.Structure.species"]], "supercell() (pyprocar.core.structure method)": [[122, "pyprocar.core.Structure.supercell"]], "transform() (pyprocar.core.structure method)": [[123, "pyprocar.core.Structure.transform"]], "volume (pyprocar.core.structure property)": [[124, "pyprocar.core.Structure.volume"]], "surface (class in pyprocar.core)": [[125, "pyprocar.core.Surface"]], "__init__() (pyprocar.core.surface method)": [[126, "pyprocar.core.Surface.__init__"]], "centers (pyprocar.core.surface property)": [[127, "pyprocar.core.Surface.centers"]], "export() (pyprocar.core.surface method)": [[128, "pyprocar.core.Surface.export"]], "faces_array (pyprocar.core.surface property)": [[129, "pyprocar.core.Surface.faces_array"]], "set_color_with_cmap() (pyprocar.core.surface method)": [[130, "pyprocar.core.Surface.set_color_with_cmap"]], "set_scalars() (pyprocar.core.surface method)": [[131, "pyprocar.core.Surface.set_scalars"]], "set_vectors() (pyprocar.core.surface method)": [[132, "pyprocar.core.Surface.set_vectors"]], "abinitkpoints (class in pyprocar.io.abinit)": [[144, "pyprocar.io.abinit.AbinitKpoints"]], "__init__() (pyprocar.io.abinit.abinitkpoints method)": [[145, "pyprocar.io.abinit.AbinitKpoints.__init__"]], "abinitprocar (class in pyprocar.io.abinit)": [[146, "pyprocar.io.abinit.AbinitProcar"]], "__init__() (pyprocar.io.abinit.abinitprocar method)": [[147, "pyprocar.io.abinit.AbinitProcar.__init__"]], "output (class in pyprocar.io.abinit)": [[148, "pyprocar.io.abinit.Output"]], "__init__() (pyprocar.io.abinit.output method)": [[149, "pyprocar.io.abinit.Output.__init__"]], "bxsfparser (class in pyprocar.io.bxsf)": [[150, "pyprocar.io.bxsf.BxsfParser"]], "__init__() (pyprocar.io.bxsf.bxsfparser method)": [[151, "pyprocar.io.bxsf.BxsfParser.__init__"]], "parse_bxsf() (pyprocar.io.bxsf.bxsfparser method)": [[152, "pyprocar.io.bxsf.BxsfParser.parse_bxsf"]], "lobsterparser (class in pyprocar.io.lobster)": [[153, "pyprocar.io.lobster.LobsterParser"]], "__init__() (pyprocar.io.lobster.lobsterparser method)": [[154, "pyprocar.io.lobster.LobsterParser.__init__"]], "dos (pyprocar.io.lobster.lobsterparser property)": [[155, "pyprocar.io.lobster.LobsterParser.dos"]], "dos_parametric() (pyprocar.io.lobster.lobsterparser method)": [[156, "pyprocar.io.lobster.LobsterParser.dos_parametric"]], "dos_projected (pyprocar.io.lobster.lobsterparser property)": [[157, "pyprocar.io.lobster.LobsterParser.dos_projected"]], "dos_to_dict (pyprocar.io.lobster.lobsterparser property)": [[158, "pyprocar.io.lobster.LobsterParser.dos_to_dict"]], "dos_total (pyprocar.io.lobster.lobsterparser property)": [[159, "pyprocar.io.lobster.LobsterParser.dos_total"]], "final_structure (pyprocar.io.lobster.lobsterparser property)": [[160, "pyprocar.io.lobster.LobsterParser.final_structure"]], "initial_structure (pyprocar.io.lobster.lobsterparser property)": [[161, "pyprocar.io.lobster.LobsterParser.initial_structure"]], "parse_structure() (pyprocar.io.lobster.lobsterparser method)": [[162, "pyprocar.io.lobster.LobsterParser.parse_structure"]], "species (pyprocar.io.lobster.lobsterparser property)": [[163, "pyprocar.io.lobster.LobsterParser.species"]], "structure (pyprocar.io.lobster.lobsterparser property)": [[164, "pyprocar.io.lobster.LobsterParser.structure"]], "structures (pyprocar.io.lobster.lobsterparser property)": [[165, "pyprocar.io.lobster.LobsterParser.structures"]], "qeparser (class in pyprocar.io.qe)": [[166, "pyprocar.io.qe.QEParser"]], "__init__() (pyprocar.io.qe.qeparser method)": [[167, "pyprocar.io.qe.QEParser.__init__"]], "final_structure (pyprocar.io.qe.qeparser property)": [[168, "pyprocar.io.qe.QEParser.final_structure"]], "getkpointlabels() (pyprocar.io.qe.qeparser method)": [[169, "pyprocar.io.qe.QEParser.getKpointLabels"]], "initial_structure (pyprocar.io.qe.qeparser property)": [[170, "pyprocar.io.qe.QEParser.initial_structure"]], "kpoints_cart() (pyprocar.io.qe.qeparser method)": [[171, "pyprocar.io.qe.QEParser.kpoints_cart"]], "species (pyprocar.io.qe.qeparser property)": [[172, "pyprocar.io.qe.QEParser.species"]], "structure (pyprocar.io.qe.qeparser property)": [[173, "pyprocar.io.qe.QEParser.structure"]], "structures (pyprocar.io.qe.qeparser property)": [[174, "pyprocar.io.qe.QEParser.structures"]], "siestaparser (class in pyprocar.io.siesta)": [[175, "pyprocar.io.siesta.SiestaParser"]], "__init__() (pyprocar.io.siesta.siestaparser method)": [[176, "pyprocar.io.siesta.SiestaParser.__init__"]], "kpoints (class in pyprocar.io.vasp)": [[177, "pyprocar.io.vasp.Kpoints"]], "__init__() (pyprocar.io.vasp.kpoints method)": [[178, "pyprocar.io.vasp.Kpoints.__init__"]], "outcar (class in pyprocar.io.vasp)": [[179, "pyprocar.io.vasp.Outcar"]], "file_str (pyprocar.io.vasp.outcar attribute)": [[179, "pyprocar.io.vasp.Outcar.file_str"]], "filename (pyprocar.io.vasp.outcar attribute)": [[179, "pyprocar.io.vasp.Outcar.filename"]], "variables (pyprocar.io.vasp.outcar attribute)": [[179, "pyprocar.io.vasp.Outcar.variables"]], "__init__() (pyprocar.io.vasp.outcar method)": [[180, "pyprocar.io.vasp.Outcar.__init__"]], "efermi (pyprocar.io.vasp.outcar property)": [[181, "pyprocar.io.vasp.Outcar.efermi"]], "get_symmetry_operations() (pyprocar.io.vasp.outcar method)": [[182, "pyprocar.io.vasp.Outcar.get_symmetry_operations"]], "reciprocal_lattice (pyprocar.io.vasp.outcar property)": [[183, "pyprocar.io.vasp.Outcar.reciprocal_lattice"]], "rotations (pyprocar.io.vasp.outcar property)": [[184, "pyprocar.io.vasp.Outcar.rotations"]], "poscar (class in pyprocar.io.vasp)": [[185, "pyprocar.io.vasp.Poscar"]], "__init__() (pyprocar.io.vasp.poscar method)": [[186, "pyprocar.io.vasp.Poscar.__init__"]], "procar (class in pyprocar.io.vasp)": [[187, "pyprocar.io.vasp.Procar"]], "__init__() (pyprocar.io.vasp.procar method)": [[188, "pyprocar.io.vasp.Procar.__init__"]], "kpoints_cartesian (pyprocar.io.vasp.procar property)": [[189, "pyprocar.io.vasp.Procar.kpoints_cartesian"]], "kpoints_reduced (pyprocar.io.vasp.procar property)": [[190, "pyprocar.io.vasp.Procar.kpoints_reduced"]], "repair() (pyprocar.io.vasp.procar method)": [[191, "pyprocar.io.vasp.Procar.repair"]], "symmetrize() (pyprocar.io.vasp.procar method)": [[192, "pyprocar.io.vasp.Procar.symmetrize"]], "vaspxml (class in pyprocar.io.vasp)": [[193, "pyprocar.io.vasp.VaspXML"]], "__init__() (pyprocar.io.vasp.vaspxml method)": [[194, "pyprocar.io.vasp.VaspXML.__init__"]], "bands (pyprocar.io.vasp.vaspxml property)": [[195, "pyprocar.io.vasp.VaspXML.bands"]], "bands_projected (pyprocar.io.vasp.vaspxml property)": [[196, "pyprocar.io.vasp.VaspXML.bands_projected"]], "conv() (pyprocar.io.vasp.vaspxml method)": [[197, "pyprocar.io.vasp.VaspXML.conv"]], "convergence (pyprocar.io.vasp.vaspxml property)": [[198, "pyprocar.io.vasp.VaspXML.convergence"]], "convergence_electronic (pyprocar.io.vasp.vaspxml property)": [[199, "pyprocar.io.vasp.VaspXML.convergence_electronic"]], "convergence_ionic (pyprocar.io.vasp.vaspxml property)": [[200, "pyprocar.io.vasp.VaspXML.convergence_ionic"]], "dos (pyprocar.io.vasp.vaspxml property)": [[201, "pyprocar.io.vasp.VaspXML.dos"]], "dos_projected (pyprocar.io.vasp.vaspxml property)": [[202, "pyprocar.io.vasp.VaspXML.dos_projected"]], "dos_to_dict (pyprocar.io.vasp.vaspxml property)": [[203, "pyprocar.io.vasp.VaspXML.dos_to_dict"]], "dos_total (pyprocar.io.vasp.vaspxml property)": [[204, "pyprocar.io.vasp.VaspXML.dos_total"]], "energies (pyprocar.io.vasp.vaspxml property)": [[205, "pyprocar.io.vasp.VaspXML.energies"]], "energy (pyprocar.io.vasp.vaspxml property)": [[206, "pyprocar.io.vasp.VaspXML.energy"]], "fermi (pyprocar.io.vasp.vaspxml property)": [[207, "pyprocar.io.vasp.VaspXML.fermi"]], "final_structure (pyprocar.io.vasp.vaspxml property)": [[208, "pyprocar.io.vasp.VaspXML.final_structure"]], "forces (pyprocar.io.vasp.vaspxml property)": [[209, "pyprocar.io.vasp.VaspXML.forces"]], "get_general() (pyprocar.io.vasp.vaspxml method)": [[210, "pyprocar.io.vasp.VaspXML.get_general"]], "get_params() (pyprocar.io.vasp.vaspxml method)": [[211, "pyprocar.io.vasp.VaspXML.get_params"]], "get_scstep() (pyprocar.io.vasp.vaspxml method)": [[212, "pyprocar.io.vasp.VaspXML.get_scstep"]], "get_set() (pyprocar.io.vasp.vaspxml method)": [[213, "pyprocar.io.vasp.VaspXML.get_set"]], "get_structure() (pyprocar.io.vasp.vaspxml method)": [[214, "pyprocar.io.vasp.VaspXML.get_structure"]], "get_varray() (pyprocar.io.vasp.vaspxml method)": [[215, "pyprocar.io.vasp.VaspXML.get_varray"]], "incar (pyprocar.io.vasp.vaspxml property)": [[216, "pyprocar.io.vasp.VaspXML.incar"]], "initial_structure (pyprocar.io.vasp.vaspxml property)": [[217, "pyprocar.io.vasp.VaspXML.initial_structure"]], "is_finished (pyprocar.io.vasp.vaspxml property)": [[218, "pyprocar.io.vasp.VaspXML.is_finished"]], "iteration_data (pyprocar.io.vasp.vaspxml property)": [[219, "pyprocar.io.vasp.VaspXML.iteration_data"]], "kpoints (pyprocar.io.vasp.vaspxml property)": [[220, "pyprocar.io.vasp.VaspXML.kpoints"]], "kpoints_list (pyprocar.io.vasp.vaspxml property)": [[221, "pyprocar.io.vasp.VaspXML.kpoints_list"]], "last_energy (pyprocar.io.vasp.vaspxml property)": [[222, "pyprocar.io.vasp.VaspXML.last_energy"]], "parse_vasprun() (pyprocar.io.vasp.vaspxml method)": [[223, "pyprocar.io.vasp.VaspXML.parse_vasprun"]], "potcar_info (pyprocar.io.vasp.vaspxml property)": [[224, "pyprocar.io.vasp.VaspXML.potcar_info"]], "read() (pyprocar.io.vasp.vaspxml method)": [[225, "pyprocar.io.vasp.VaspXML.read"]], "species (pyprocar.io.vasp.vaspxml property)": [[226, "pyprocar.io.vasp.VaspXML.species"]], "structure (pyprocar.io.vasp.vaspxml property)": [[227, "pyprocar.io.vasp.VaspXML.structure"]], "structures (pyprocar.io.vasp.vaspxml property)": [[228, "pyprocar.io.vasp.VaspXML.structures"]], "text_to_bool() (pyprocar.io.vasp.vaspxml method)": [[229, "pyprocar.io.vasp.VaspXML.text_to_bool"]], "vasp_parameters (pyprocar.io.vasp.vaspxml property)": [[230, "pyprocar.io.vasp.VaspXML.vasp_parameters"]], "dosplot (class in pyprocar.plotter)": [[238, "pyprocar.plotter.DOSPlot"]], "__init__() (pyprocar.plotter.dosplot method)": [[239, "pyprocar.plotter.DOSPlot.__init__"]], "draw_fermi() (pyprocar.plotter.dosplot method)": [[240, "pyprocar.plotter.DOSPlot.draw_fermi"]], "grid() (pyprocar.plotter.dosplot method)": [[241, "pyprocar.plotter.DOSPlot.grid"]], "legend() (pyprocar.plotter.dosplot method)": [[242, "pyprocar.plotter.DOSPlot.legend"]], "plot_dos() (pyprocar.plotter.dosplot method)": [[243, "pyprocar.plotter.DOSPlot.plot_dos"]], "plot_parametric() (pyprocar.plotter.dosplot method)": [[244, "pyprocar.plotter.DOSPlot.plot_parametric"]], "plot_parametric_line() (pyprocar.plotter.dosplot method)": [[245, "pyprocar.plotter.DOSPlot.plot_parametric_line"]], "plot_stack() (pyprocar.plotter.dosplot method)": [[246, "pyprocar.plotter.DOSPlot.plot_stack"]], "plot_stack_orbitals() (pyprocar.plotter.dosplot method)": [[247, "pyprocar.plotter.DOSPlot.plot_stack_orbitals"]], "plot_stack_species() (pyprocar.plotter.dosplot method)": [[248, "pyprocar.plotter.DOSPlot.plot_stack_species"]], "save() (pyprocar.plotter.dosplot method)": [[249, "pyprocar.plotter.DOSPlot.save"]], "set_xlabel() (pyprocar.plotter.dosplot method)": [[250, "pyprocar.plotter.DOSPlot.set_xlabel"]], "set_xlim() (pyprocar.plotter.dosplot method)": [[251, "pyprocar.plotter.DOSPlot.set_xlim"]], "set_xticks() (pyprocar.plotter.dosplot method)": [[252, "pyprocar.plotter.DOSPlot.set_xticks"]], "set_ylabel() (pyprocar.plotter.dosplot method)": [[253, "pyprocar.plotter.DOSPlot.set_ylabel"]], "set_ylim() (pyprocar.plotter.dosplot method)": [[254, "pyprocar.plotter.DOSPlot.set_ylim"]], "set_yticks() (pyprocar.plotter.dosplot method)": [[255, "pyprocar.plotter.DOSPlot.set_yticks"]], "show() (pyprocar.plotter.dosplot method)": [[256, "pyprocar.plotter.DOSPlot.show"]], "update_config() (pyprocar.plotter.dosplot method)": [[257, "pyprocar.plotter.DOSPlot.update_config"]], "ebsplot (class in pyprocar.plotter)": [[258, "pyprocar.plotter.EBSPlot"]], "__init__() (pyprocar.plotter.ebsplot method)": [[259, "pyprocar.plotter.EBSPlot.__init__"]], "draw_fermi() (pyprocar.plotter.ebsplot method)": [[260, "pyprocar.plotter.EBSPlot.draw_fermi"]], "grid() (pyprocar.plotter.ebsplot method)": [[261, "pyprocar.plotter.EBSPlot.grid"]], "legend() (pyprocar.plotter.ebsplot method)": [[262, "pyprocar.plotter.EBSPlot.legend"]], "plot_atomic_levels() (pyprocar.plotter.ebsplot method)": [[263, "pyprocar.plotter.EBSPlot.plot_atomic_levels"]], "plot_bands() (pyprocar.plotter.ebsplot method)": [[264, "pyprocar.plotter.EBSPlot.plot_bands"]], "plot_parameteric() (pyprocar.plotter.ebsplot method)": [[265, "pyprocar.plotter.EBSPlot.plot_parameteric"]], "plot_parameteric_overlay() (pyprocar.plotter.ebsplot method)": [[266, "pyprocar.plotter.EBSPlot.plot_parameteric_overlay"]], "plot_scatter() (pyprocar.plotter.ebsplot method)": [[267, "pyprocar.plotter.EBSPlot.plot_scatter"]], "save() (pyprocar.plotter.ebsplot method)": [[268, "pyprocar.plotter.EBSPlot.save"]], "set_colorbar_title() (pyprocar.plotter.ebsplot method)": [[269, "pyprocar.plotter.EBSPlot.set_colorbar_title"]], "set_title() (pyprocar.plotter.ebsplot method)": [[270, "pyprocar.plotter.EBSPlot.set_title"]], "set_xlabel() (pyprocar.plotter.ebsplot method)": [[271, "pyprocar.plotter.EBSPlot.set_xlabel"]], "set_xlim() (pyprocar.plotter.ebsplot method)": [[272, "pyprocar.plotter.EBSPlot.set_xlim"]], "set_xticks() (pyprocar.plotter.ebsplot method)": [[273, "pyprocar.plotter.EBSPlot.set_xticks"]], "set_ylabel() (pyprocar.plotter.ebsplot method)": [[274, "pyprocar.plotter.EBSPlot.set_ylabel"]], "set_ylim() (pyprocar.plotter.ebsplot method)": [[275, "pyprocar.plotter.EBSPlot.set_ylim"]], "set_yticks() (pyprocar.plotter.ebsplot method)": [[276, "pyprocar.plotter.EBSPlot.set_yticks"]], "show() (pyprocar.plotter.ebsplot method)": [[277, "pyprocar.plotter.EBSPlot.show"]], "update_config() (pyprocar.plotter.ebsplot method)": [[278, "pyprocar.plotter.EBSPlot.update_config"]], "procarplot (class in pyprocar.plotter)": [[279, "pyprocar.plotter.ProcarPlot"]], "__init__() (pyprocar.plotter.procarplot method)": [[280, "pyprocar.plotter.ProcarPlot.__init__"]], "atomicplot() (pyprocar.plotter.procarplot method)": [[281, "pyprocar.plotter.ProcarPlot.atomicPlot"]], "parametricplot() (pyprocar.plotter.procarplot method)": [[282, "pyprocar.plotter.ProcarPlot.parametricPlot"]], "plotbands() (pyprocar.plotter.procarplot method)": [[283, "pyprocar.plotter.ProcarPlot.plotBands"]], "scatterplot() (pyprocar.plotter.procarplot method)": [[284, "pyprocar.plotter.ProcarPlot.scatterPlot"]], "poscar (class in pyprocar.pyposcar)": [[289, "pyprocar.pyposcar.Poscar"]], "ntotal (pyprocar.pyposcar.self attribute)": [[290, "pyprocar.pyposcar.self.Ntotal"]], "__init__() (pyprocar.pyposcar.poscar method)": [[290, "pyprocar.pyposcar.Poscar.__init__"]], "cpos (pyprocar.pyposcar.self attribute)": [[290, "pyprocar.pyposcar.self.cpos"]], "dpos (pyprocar.pyposcar.self attribute)": [[290, "pyprocar.pyposcar.self.dpos"]], "elm (pyprocar.pyposcar.self attribute)": [[290, "pyprocar.pyposcar.self.elm"]], "filename (pyprocar.pyposcar.self attribute)": [[290, "pyprocar.pyposcar.self.filename"]], "flags (pyprocar.pyposcar.self attribute)": [[290, "pyprocar.pyposcar.self.flags"]], "lat (pyprocar.pyposcar.self attribute)": [[290, "pyprocar.pyposcar.self.lat"]], "numbersp (pyprocar.pyposcar.self attribute)": [[290, "pyprocar.pyposcar.self.numberSp"]], "poscar (pyprocar.pyposcar.self attribute)": [[290, "pyprocar.pyposcar.self.poscar"]], "selectflags (pyprocar.pyposcar.self attribute)": [[290, "pyprocar.pyposcar.self.selectFlags"]], "selective (pyprocar.pyposcar.self attribute)": [[290, "pyprocar.pyposcar.self.selective"]], "typesp (pyprocar.pyposcar.self attribute)": [[290, "pyprocar.pyposcar.self.typeSp"]], "verbose (pyprocar.pyposcar.poscar.self attribute)": [[290, "pyprocar.pyposcar.Poscar.self.verbose"]], "volume (pyprocar.pyposcar.self attribute)": [[290, "pyprocar.pyposcar.self.volume"]], "add() (pyprocar.pyposcar.poscar method)": [[291, "pyprocar.pyposcar.Poscar.add"]], "load_from_data() (pyprocar.pyposcar.poscar method)": [[292, "pyprocar.pyposcar.Poscar.load_from_data"]], "parse() (pyprocar.pyposcar.poscar method)": [[293, "pyprocar.pyposcar.Poscar.parse"]], "remove() (pyprocar.pyposcar.poscar method)": [[294, "pyprocar.pyposcar.Poscar.remove"]], "sort() (pyprocar.pyposcar.poscar method)": [[295, "pyprocar.pyposcar.Poscar.sort"]], "write() (pyprocar.pyposcar.poscar method)": [[296, "pyprocar.pyposcar.Poscar.write"]], "xyz() (pyprocar.pyposcar.poscar method)": [[297, "pyprocar.pyposcar.Poscar.xyz"]], "poscardiff() (in module pyprocar.pyposcar)": [[298, "pyprocar.pyposcar.poscarDiff"]], "poscar_modify (class in pyprocar.pyposcar)": [[299, "pyprocar.pyposcar.poscar_modify"]], "__init__() (pyprocar.pyposcar.poscar_modify method)": [[300, "pyprocar.pyposcar.poscar_modify.__init__"]], "add() (pyprocar.pyposcar.poscar_modify method)": [[301, "pyprocar.pyposcar.poscar_modify.add"]], "change_elements() (pyprocar.pyposcar.poscar_modify method)": [[302, "pyprocar.pyposcar.poscar_modify.change_elements"]], "pos_multiply() (pyprocar.pyposcar.poscar_modify method)": [[303, "pyprocar.pyposcar.poscar_modify.pos_multiply"]], "pos_sum() (pyprocar.pyposcar.poscar_modify method)": [[304, "pyprocar.pyposcar.poscar_modify.pos_sum"]], "remove() (pyprocar.pyposcar.poscar_modify method)": [[305, "pyprocar.pyposcar.poscar_modify.remove"]], "scale_lattice() (pyprocar.pyposcar.poscar_modify method)": [[306, "pyprocar.pyposcar.poscar_modify.scale_lattice"]], "shift() (pyprocar.pyposcar.poscar_modify method)": [[307, "pyprocar.pyposcar.poscar_modify.shift"]], "write() (pyprocar.pyposcar.poscar_modify method)": [[308, "pyprocar.pyposcar.poscar_modify.write"]], "poscar_supercell (class in pyprocar.pyposcar)": [[309, "pyprocar.pyposcar.poscar_supercell"]], "__init__() (pyprocar.pyposcar.poscar_supercell method)": [[310, "pyprocar.pyposcar.poscar_supercell.__init__"]], "supercell() (pyprocar.pyposcar.poscar_supercell method)": [[311, "pyprocar.pyposcar.poscar_supercell.supercell"]], "write() (pyprocar.pyposcar.poscar_supercell method)": [[312, "pyprocar.pyposcar.poscar_supercell.write"]], "fermihandler (class in pyprocar.scripts)": [[316, "pyprocar.scripts.FermiHandler"]], "__init__() (pyprocar.scripts.fermihandler method)": [[317, "pyprocar.scripts.FermiHandler.__init__"]], "create_isovalue_gif() (pyprocar.scripts.fermihandler method)": [[318, "pyprocar.scripts.FermiHandler.create_isovalue_gif"]], "plot_fermi_cross_section() (pyprocar.scripts.fermihandler method)": [[319, "pyprocar.scripts.FermiHandler.plot_fermi_cross_section"]], "plot_fermi_cross_section_box_widget() (pyprocar.scripts.fermihandler method)": [[320, "pyprocar.scripts.FermiHandler.plot_fermi_cross_section_box_widget"]], "plot_fermi_isoslider() (pyprocar.scripts.fermihandler method)": [[321, "pyprocar.scripts.FermiHandler.plot_fermi_isoslider"]], "plot_fermi_surface() (pyprocar.scripts.fermihandler method)": [[322, "pyprocar.scripts.FermiHandler.plot_fermi_surface"]], "print_default_settings() (pyprocar.scripts.fermihandler method)": [[323, "pyprocar.scripts.FermiHandler.print_default_settings"]], "bandgap() (in module pyprocar.scripts)": [[324, "pyprocar.scripts.bandgap"]], "bandsdosplot() (in module pyprocar.scripts)": [[325, "pyprocar.scripts.bandsdosplot"]], "bandsplot() (in module pyprocar.scripts)": [[326, "pyprocar.scripts.bandsplot"]], "bandsplot_2d() (in module pyprocar.scripts)": [[327, "pyprocar.scripts.bandsplot_2d"]], "cat() (in module pyprocar.scripts)": [[328, "pyprocar.scripts.cat"]], "dosplot() (in module pyprocar.scripts)": [[329, "pyprocar.scripts.dosplot"]], "fermi2d() (in module pyprocar.scripts)": [[330, "pyprocar.scripts.fermi2D"]], "fermi3d() (in module pyprocar.scripts)": [[331, "pyprocar.scripts.fermi3D"]], "generate2dkmesh() (in module pyprocar.scripts)": [[332, "pyprocar.scripts.generate2dkmesh"]], "kpath() (in module pyprocar.scripts)": [[333, "pyprocar.scripts.kpath"]], "repair() (in module pyprocar.scripts)": [[334, "pyprocar.scripts.repair"]], "bandsplot() (in module pyprocar.scripts.scriptbandsplot)": [[416, "pyprocar.scripts.scriptBandsplot.bandsplot"]], "module": [[416, "module-pyprocar.scripts.scriptBandsplot"], [417, "module-pyprocar.scripts.scriptCat"], [419, "module-pyprocar.scriptDosplot"], [421, "module-pyprocar.scripts.scriptFermi2D"], [422, "module-pyprocar.scripts.scriptFermi3D"], [423, "module-pyprocar.scripts.scriptFilter"], [426, "module-pyprocar.scripts.scriptRepair"], [428, "module-pyprocar.scripts.scriptUnfold"]], "pyprocar.scripts.scriptbandsplot": [[416, "module-pyprocar.scripts.scriptBandsplot"]], "cat() (in module pyprocar.scripts.scriptcat)": [[417, "pyprocar.scripts.scriptCat.cat"]], "pyprocar.scripts.scriptcat": [[417, "module-pyprocar.scripts.scriptCat"]], "pyprocar.scriptdosplot": [[419, "module-pyprocar.scriptDosplot"]], "fermi2d() (in module pyprocar.scripts.scriptfermi2d)": [[421, "pyprocar.scripts.scriptFermi2D.fermi2D"]], "pyprocar.scripts.scriptfermi2d": [[421, "module-pyprocar.scripts.scriptFermi2D"]], "fermi3d() (in module pyprocar.scripts.scriptfermi3d)": [[422, "pyprocar.scripts.scriptFermi3D.fermi3D"]], "pyprocar.scripts.scriptfermi3d": [[422, "module-pyprocar.scripts.scriptFermi3D"]], "filter() (in module pyprocar.scripts.scriptfilter)": [[423, "pyprocar.scripts.scriptFilter.filter"]], "pyprocar.scripts.scriptfilter": [[423, "module-pyprocar.scripts.scriptFilter"]], "pyprocar.scripts.scriptrepair": [[426, "module-pyprocar.scripts.scriptRepair"]], "repair() (in module pyprocar.scripts.scriptrepair)": [[426, "pyprocar.scripts.scriptRepair.repair"]], "pyprocar.scripts.scriptunfold": [[428, "module-pyprocar.scripts.scriptUnfold"]], "unfold() (in module pyprocar.scripts.scriptunfold)": [[428, "pyprocar.scripts.scriptUnfold.unfold"]]}}) \ No newline at end of file diff --git a/docs/user-guide/atomic_projections.html b/docs/user-guide/atomic_projections.html index 8776c7f6..a8e28d53 100644 --- a/docs/user-guide/atomic_projections.html +++ b/docs/user-guide/atomic_projections.html @@ -8,7 +8,7 @@ - Atomic Projections — PyProcar 6.1.5 documentation + Atomic Projections — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -113,7 +113,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    diff --git a/docs/user-guide/bands.html b/docs/user-guide/bands.html index 6b3d0e6f..80028d68 100644 --- a/docs/user-guide/bands.html +++ b/docs/user-guide/bands.html @@ -8,7 +8,7 @@ - Band structure — PyProcar 6.1.5 documentation + Band structure — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -113,7 +113,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    @@ -546,7 +546,7 @@

    Plotting band structures with a discontinuous
    -pyprocar.scripts.scriptBandsplot.bandsplot(code: str, dirname: str, mode: str = 'plain', spins: List[int] | None = None, atoms: List[int] | None = None, orbitals: List[int] | None = None, items: dict = {}, fermi: float | None = None, interpolation_factor: int = 1, interpolation_type: str = 'cubic', projection_mask: ndarray | None = None, kticks=None, knames=None, elimit: List[float] | None = None, ax: Axes | None = None, show: bool = True, savefig: str | None = None, print_plot_opts: bool = False, **kwargs)[source]#
    +pyprocar.scripts.scriptBandsplot.bandsplot(code: str, dirname: str, mode: str = 'plain', spins: List[int] | None = None, atoms: List[int] | None = None, orbitals: List[int] | None = None, items: dict = {}, fermi: float | None = None, interpolation_factor: int = 1, interpolation_type: str = 'cubic', projection_mask: ndarray | None = None, kticks=None, knames=None, kdirect: bool = True, elimit: List[float] | None = None, ax: Axes | None = None, show: bool = True, savefig: str | None = None, print_plot_opts: bool = False, **kwargs)[source]#

    A function to plot the band structutre

    Parameters:
    diff --git a/docs/user-guide/cat.html b/docs/user-guide/cat.html index aa0800ee..634bbac6 100644 --- a/docs/user-guide/cat.html +++ b/docs/user-guide/cat.html @@ -8,7 +8,7 @@ - Concatenating multiple calculations — PyProcar 6.1.5 documentation + Concatenating multiple calculations — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -113,7 +113,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    diff --git a/docs/user-guide/comparebands.html b/docs/user-guide/comparebands.html index 984c24bc..cd2dc5ed 100644 --- a/docs/user-guide/comparebands.html +++ b/docs/user-guide/comparebands.html @@ -8,7 +8,7 @@ - Compare bands — PyProcar 6.1.5 documentation + Compare bands — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -113,7 +113,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    diff --git a/docs/user-guide/dos.html b/docs/user-guide/dos.html index 083a18cb..78aef054 100644 --- a/docs/user-guide/dos.html +++ b/docs/user-guide/dos.html @@ -8,7 +8,7 @@ - Density of States — PyProcar 6.1.5 documentation + Density of States — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    diff --git a/docs/user-guide/ebs.html b/docs/user-guide/ebs.html index fd58438e..bb162100 100644 --- a/docs/user-guide/ebs.html +++ b/docs/user-guide/ebs.html @@ -8,7 +8,7 @@ - ElectronicBandStructure — PyProcar 6.1.5 documentation + ElectronicBandStructure — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    diff --git a/docs/user-guide/fermi2d.html b/docs/user-guide/fermi2d.html index f6508b95..e62a2c8a 100644 --- a/docs/user-guide/fermi2d.html +++ b/docs/user-guide/fermi2d.html @@ -8,7 +8,7 @@ - 2D spin-texture — PyProcar 6.1.5 documentation + 2D spin-texture — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -113,7 +113,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    diff --git a/docs/user-guide/fermi3d.html b/docs/user-guide/fermi3d.html index e6d83800..c2cdb5e8 100644 --- a/docs/user-guide/fermi3d.html +++ b/docs/user-guide/fermi3d.html @@ -8,7 +8,7 @@ - 3D Fermi surface — PyProcar 6.1.5 documentation + 3D Fermi surface — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -113,7 +113,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    diff --git a/docs/user-guide/filter.html b/docs/user-guide/filter.html index 149bbd4e..3effca8f 100644 --- a/docs/user-guide/filter.html +++ b/docs/user-guide/filter.html @@ -8,7 +8,7 @@ - Filtering data — PyProcar 6.1.5 documentation + Filtering data — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -113,7 +113,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    diff --git a/docs/user-guide/index.html b/docs/user-guide/index.html index 91f63031..8e3f1262 100644 --- a/docs/user-guide/index.html +++ b/docs/user-guide/index.html @@ -8,7 +8,7 @@ - User Guide — PyProcar 6.1.5 documentation + User Guide — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -113,7 +113,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    diff --git a/docs/user-guide/kpath.html b/docs/user-guide/kpath.html index 8e63edef..fb7787db 100644 --- a/docs/user-guide/kpath.html +++ b/docs/user-guide/kpath.html @@ -8,7 +8,7 @@ - K Path — PyProcar 6.1.5 documentation + K Path — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    diff --git a/docs/user-guide/repair.html b/docs/user-guide/repair.html index 07aa39fe..43131787 100644 --- a/docs/user-guide/repair.html +++ b/docs/user-guide/repair.html @@ -8,7 +8,7 @@ - Repair — PyProcar 6.1.5 documentation + Repair — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    diff --git a/docs/user-guide/structure.html b/docs/user-guide/structure.html index 83f88c90..c952406d 100644 --- a/docs/user-guide/structure.html +++ b/docs/user-guide/structure.html @@ -8,7 +8,7 @@ - Structure — PyProcar 6.1.5 documentation + Structure — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation

    diff --git a/docs/user-guide/unfold.html b/docs/user-guide/unfold.html index 723a8fe3..7241a156 100644 --- a/docs/user-guide/unfold.html +++ b/docs/user-guide/unfold.html @@ -8,7 +8,7 @@ - Band unfolding — PyProcar 6.1.5 documentation + Band unfolding — PyProcar 6.1.7 documentation @@ -40,7 +40,7 @@ - + @@ -112,7 +112,7 @@ -

    PyProcar 6.1.5 documentation

    +

    PyProcar 6.1.7 documentation