pyALF 2.5.post34__tar.gz → 2.5.post35__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.
Files changed (37) hide show
  1. {pyalf-2.5.post34/pyALF.egg-info → pyalf-2.5.post35}/PKG-INFO +1 -1
  2. {pyalf-2.5.post34 → pyalf-2.5.post35/pyALF.egg-info}/PKG-INFO +1 -1
  3. {pyalf-2.5.post34 → pyalf-2.5.post35}/py_alf/lattice.py +31 -3
  4. {pyalf-2.5.post34 → pyalf-2.5.post35}/LICENSE +0 -0
  5. {pyalf-2.5.post34 → pyalf-2.5.post35}/MANIFEST.in +0 -0
  6. {pyalf-2.5.post34 → pyalf-2.5.post35}/README.md +0 -0
  7. {pyalf-2.5.post34 → pyalf-2.5.post35}/pyALF.egg-info/SOURCES.txt +0 -0
  8. {pyalf-2.5.post34 → pyalf-2.5.post35}/pyALF.egg-info/dependency_links.txt +0 -0
  9. {pyalf-2.5.post34 → pyalf-2.5.post35}/pyALF.egg-info/entry_points.txt +0 -0
  10. {pyalf-2.5.post34 → pyalf-2.5.post35}/pyALF.egg-info/requires.txt +0 -0
  11. {pyalf-2.5.post34 → pyalf-2.5.post35}/pyALF.egg-info/top_level.txt +0 -0
  12. {pyalf-2.5.post34 → pyalf-2.5.post35}/py_alf/__init__.py +0 -0
  13. {pyalf-2.5.post34 → pyalf-2.5.post35}/py_alf/alf_source.py +0 -0
  14. {pyalf-2.5.post34 → pyalf-2.5.post35}/py_alf/ana.py +0 -0
  15. {pyalf-2.5.post34 → pyalf-2.5.post35}/py_alf/analysis.py +0 -0
  16. {pyalf-2.5.post34 → pyalf-2.5.post35}/py_alf/check_common.py +0 -0
  17. {pyalf-2.5.post34 → pyalf-2.5.post35}/py_alf/check_rebin_ipy.py +0 -0
  18. {pyalf-2.5.post34 → pyalf-2.5.post35}/py_alf/check_rebin_tk.py +0 -0
  19. {pyalf-2.5.post34 → pyalf-2.5.post35}/py_alf/check_warmup_ipy.py +0 -0
  20. {pyalf-2.5.post34 → pyalf-2.5.post35}/py_alf/check_warmup_tk.py +0 -0
  21. {pyalf-2.5.post34 → pyalf-2.5.post35}/py_alf/cli/__init__.py +0 -0
  22. {pyalf-2.5.post34 → pyalf-2.5.post35}/py_alf/cli/alf_bin_count.py +0 -0
  23. {pyalf-2.5.post34 → pyalf-2.5.post35}/py_alf/cli/alf_del_bins.py +0 -0
  24. {pyalf-2.5.post34 → pyalf-2.5.post35}/py_alf/cli/alf_postprocess.py +0 -0
  25. {pyalf-2.5.post34 → pyalf-2.5.post35}/py_alf/cli/alf_run.py +0 -0
  26. {pyalf-2.5.post34 → pyalf-2.5.post35}/py_alf/cli/alf_show_obs.py +0 -0
  27. {pyalf-2.5.post34 → pyalf-2.5.post35}/py_alf/cli/alf_test_branch.py +0 -0
  28. {pyalf-2.5.post34 → pyalf-2.5.post35}/py_alf/cli/minimal_ALF_run.py +0 -0
  29. {pyalf-2.5.post34 → pyalf-2.5.post35}/py_alf/exceptions.py +0 -0
  30. {pyalf-2.5.post34 → pyalf-2.5.post35}/py_alf/init_layout.py +0 -0
  31. {pyalf-2.5.post34 → pyalf-2.5.post35}/py_alf/lattices_armv8.4-a.so +0 -0
  32. {pyalf-2.5.post34 → pyalf-2.5.post35}/py_alf/lattices_x86-64.so +0 -0
  33. {pyalf-2.5.post34 → pyalf-2.5.post35}/py_alf/simulation.py +0 -0
  34. {pyalf-2.5.post34 → pyalf-2.5.post35}/py_alf/utils.py +0 -0
  35. {pyalf-2.5.post34 → pyalf-2.5.post35}/pyproject.toml +0 -0
  36. {pyalf-2.5.post34 → pyalf-2.5.post35}/setup.cfg +0 -0
  37. {pyalf-2.5.post34 → pyalf-2.5.post35}/tests/test_lattice_init.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyALF
3
- Version: 2.5.post34
3
+ Version: 2.5.post35
4
4
  Summary: Python interface for ALF, plus scripts and Jupyter notebooks.
5
5
  Author-email: ALF Collaboration <alf@physik.uni-wuerzburg.de>, Jonas Schwab <jonas.schwab@uni-wuerzburg.de>
6
6
  License: GNU GENERAL PUBLIC LICENSE
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyALF
3
- Version: 2.5.post34
3
+ Version: 2.5.post35
4
4
  Summary: Python interface for ALF, plus scripts and Jupyter notebooks.
5
5
  Author-email: ALF Collaboration <alf@physik.uni-wuerzburg.de>, Jonas Schwab <jonas.schwab@uni-wuerzburg.de>
6
6
  License: GNU GENERAL PUBLIC LICENSE
@@ -50,7 +50,7 @@ class UnitCell:
50
50
 
51
51
 
52
52
  class Lattice:
53
- """Finite size Bravais lattice object.
53
+ """Finite size Bravais lattice object, mirroring ALF's Lattice type.
54
54
 
55
55
  Parameters
56
56
  ----------
@@ -60,15 +60,43 @@ class Lattice:
60
60
 
61
61
  if tuple or list: [L1, L2, a1, a2].
62
62
 
63
- L1, L2: 2d vector defining periodic boundary conditions.
63
+ L1, L2: 2d vectors defining periodic boundary conditions.
64
64
 
65
65
  a1, a2: 2d primitive vectors.
66
66
 
67
67
  force_python_init : bool, default=False
68
68
  Force the usage of Python version of the initialization.
69
- Default behaviour is to first try compiled Fortran and fall back to
69
+ Default behavior is to first try compiled Fortran and fall back to
70
70
  Python if that fails.
71
71
 
72
+ Attributes
73
+ ----------
74
+ L1, L2 : arrays of floats
75
+ 2d vectors defining periodic boundary conditions in real space.
76
+ a1, a2 : arrays of floats
77
+ 2d primitive vectors in real space.
78
+ BZ1, BZ2 : arrays of floats
79
+ 2d vectors defining periodic boundary conditions in k space.
80
+ b1, b2 : arrays of floats
81
+ 2d primitive vectors in k space.
82
+ N : int
83
+ Number of unit cells
84
+ r : array of floats, shape=(N, 2)
85
+ Real-space coordinates.
86
+ k : array of floats, shape=(N, 2)
87
+ K-space coordinates.
88
+ b1_perp : array, shape=(2,)
89
+ b2_perp : array, shape=(2,)
90
+ L : int
91
+ listr : array of ints, shape=(N, 2)
92
+ `r[i] = listr[i, 0]*a1 + listr[i, 1]*a2`
93
+ listk : array of ints, shape=(N, 2)
94
+ `k[i] = listk[i, 0]*a1 + listk[i, 1]*b2`
95
+ invlistr : array of ints, shape=(2*L+1, 2*L+1)
96
+ invlistk : array of ints, shape=(2*L+1, 2*L+1)
97
+ nnlistr : array of ints, shape=(N, 3, 3)
98
+ nnlistk : array of ints, shape=(N, 3, 3)
99
+ imj : array of ints, shape=(N, N)
72
100
  """
73
101
 
74
102
  # pylint: disable=too-many-instance-attributes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes