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
@@ -430,6 +430,7 @@
ebs_ipr
ebs_ipr_atom
ebs_sum
+
fix_collinear_spin
ibz2fbz
interpolate_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
description:
-Control to show a grid
+Control clip the brillouin zone
@@ -1651,6 +1664,7 @@
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
@@ -430,6 +430,7 @@
ebs_ipr
ebs_ipr_atom
ebs_sum
+
fix_collinear_spin
ibz2fbz
interpolate_mesh_grid
mesh_to_array
@@ -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
@@ -430,6 +430,7 @@
ebs_ipr
ebs_ipr_atom
ebs_sum
+
fix_collinear_spin
ibz2fbz
interpolate_mesh_grid
mesh_to_array
@@ -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
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
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Skip to main content
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+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.ElectronicBandStructure, 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 6.1.5 documentation
+ PyProcar 6.1.7 documentation
@@ -430,6 +430,7 @@
ebs_ipr
ebs_ipr_atom
ebs_sum
+fix_collinear_spin
ibz2fbz
interpolate_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
@@ -430,6 +430,7 @@
ebs_ipr
ebs_ipr_atom
ebs_sum
+fix_collinear_spin
ibz2fbz
interpolate_mesh_grid
mesh_to_array
@@ -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.EBSPlot
-EBSPlot.__init__
(ebs[, kpath, ax, spins])
+EBSPlot.__init__
(ebs[, kpath, ax, spins, ...])
EBSPlot.draw_fermi
([fermi_level])
@@ -983,31 +985,34 @@ pyprocar.plotter.EBSPlotEBSPlot.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/_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
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Skip to main content
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+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_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 @@ EBSPlot is used to plot the Electronic Band Structutue
-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/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 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
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Skip to main content
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+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 )
+
+
+ --------------------------------------------------------
+ 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 )
+
+
+ --------------------------------------------------------
+ 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 ,)
+
+
+ --------------------------------------------------------
+ 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 ])
+
+
+ --------------------------------------------------------
+ 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 Mode