bandu 1.3.1__tar.gz → 1.3.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {bandu-1.3.1/src/bandu.egg-info → bandu-1.3.2}/PKG-INFO +1 -1
- {bandu-1.3.1 → bandu-1.3.2}/pyproject.toml +1 -1
- {bandu-1.3.1 → bandu-1.3.2}/src/bandu/abinit_reader.py +1 -5
- {bandu-1.3.1 → bandu-1.3.2/src/bandu.egg-info}/PKG-INFO +1 -1
- {bandu-1.3.1 → bandu-1.3.2}/LICENSE +0 -0
- {bandu-1.3.1 → bandu-1.3.2}/README.md +0 -0
- {bandu-1.3.1 → bandu-1.3.2}/setup.cfg +0 -0
- {bandu-1.3.1 → bandu-1.3.2}/src/bandu/bandu.py +0 -0
- {bandu-1.3.1 → bandu-1.3.2}/src/bandu/brillouin_zone.py +0 -0
- {bandu-1.3.1 → bandu-1.3.2}/src/bandu/colors.py +0 -0
- {bandu-1.3.1 → bandu-1.3.2}/src/bandu/isosurface_class.py +0 -0
- {bandu-1.3.1 → bandu-1.3.2}/src/bandu/plotter.py +0 -0
- {bandu-1.3.1 → bandu-1.3.2}/src/bandu/translate.py +0 -0
- {bandu-1.3.1 → bandu-1.3.2}/src/bandu/wfk_class.py +0 -0
- {bandu-1.3.1 → bandu-1.3.2}/src/bandu/xsf_reader.py +0 -0
- {bandu-1.3.1 → bandu-1.3.2}/src/bandu.egg-info/SOURCES.txt +0 -0
- {bandu-1.3.1 → bandu-1.3.2}/src/bandu.egg-info/dependency_links.txt +0 -0
- {bandu-1.3.1 → bandu-1.3.2}/src/bandu.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: bandu
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.2
|
|
4
4
|
Summary: The BandU program constructs a rank ordered series of crystal orbitals using principal component analysis. These principal orbital components can then be projected on the Fermi surface and visualized
|
|
5
5
|
Author-email: Patrick Cross <pcross@wisc.edu>
|
|
6
6
|
Project-URL: Homepage, https://github.com/pcross0405/BandU
|
|
@@ -963,11 +963,7 @@ class AbinitNetCDF():
|
|
|
963
963
|
self.nband:int = int(self.dataset.dimensions['bantot'].size / self.nkpt)
|
|
964
964
|
self.typat:list = self.dataset.variables['atom_species'][:].tolist()
|
|
965
965
|
self.zion:np.ndarray = self.dataset.variables['atomic_numbers'][:]
|
|
966
|
-
|
|
967
|
-
self.znucltypat:list = []
|
|
968
|
-
for i in _all_ions:
|
|
969
|
-
if i not in self.znucltypat:
|
|
970
|
-
self.znucltypat.append(i)
|
|
966
|
+
self.znucltypat:list = [int(nuc) for nuc in self.zion]
|
|
971
967
|
self.bands = [self.nband]
|
|
972
968
|
#---------------------------------------------------------------------------------------------------------------------#
|
|
973
969
|
#------------------------------------------------------ METHODS ------------------------------------------------------#
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: bandu
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.2
|
|
4
4
|
Summary: The BandU program constructs a rank ordered series of crystal orbitals using principal component analysis. These principal orbital components can then be projected on the Fermi surface and visualized
|
|
5
5
|
Author-email: Patrick Cross <pcross@wisc.edu>
|
|
6
6
|
Project-URL: Homepage, https://github.com/pcross0405/BandU
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|