surface-construct 0.5.11__tar.gz → 0.5.12__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.
- {surface_construct-0.5.11/surface_construct.egg-info → surface_construct-0.5.12}/PKG-INFO +1 -1
- {surface_construct-0.5.11 → surface_construct-0.5.12}/setup.py +1 -1
- {surface_construct-0.5.11 → surface_construct-0.5.12}/surface_construct/surface_grid.py +5 -0
- {surface_construct-0.5.11 → surface_construct-0.5.12/surface_construct.egg-info}/PKG-INFO +1 -1
- {surface_construct-0.5.11 → surface_construct-0.5.12}/LICENSE +0 -0
- {surface_construct-0.5.11 → surface_construct-0.5.12}/README.md +0 -0
- {surface_construct-0.5.11 → surface_construct-0.5.12}/setup.cfg +0 -0
- {surface_construct-0.5.11 → surface_construct-0.5.12}/surface_construct/__init__.py +0 -0
- {surface_construct-0.5.11 → surface_construct-0.5.12}/surface_construct/atoms.py +0 -0
- {surface_construct-0.5.11 → surface_construct-0.5.12}/surface_construct/db.py +0 -0
- {surface_construct-0.5.11 → surface_construct-0.5.12}/surface_construct/default_parameter.py +0 -0
- {surface_construct-0.5.11 → surface_construct-0.5.12}/surface_construct/sampling.py +0 -0
- {surface_construct-0.5.11 → surface_construct-0.5.12}/surface_construct/structure.py +0 -0
- {surface_construct-0.5.11 → surface_construct-0.5.12}/surface_construct/surface.py +0 -0
- {surface_construct-0.5.11 → surface_construct-0.5.12}/surface_construct/utils.py +0 -0
- {surface_construct-0.5.11 → surface_construct-0.5.12}/surface_construct.egg-info/SOURCES.txt +0 -0
- {surface_construct-0.5.11 → surface_construct-0.5.12}/surface_construct.egg-info/dependency_links.txt +0 -0
- {surface_construct-0.5.11 → surface_construct-0.5.12}/surface_construct.egg-info/requires.txt +0 -0
- {surface_construct-0.5.11 → surface_construct-0.5.12}/surface_construct.egg-info/top_level.txt +0 -0
- {surface_construct-0.5.11 → surface_construct-0.5.12}/tests/test_surface_grid.py +0 -0
- {surface_construct-0.5.11 → surface_construct-0.5.12}/tests/test_systematic_opt.py +0 -0
|
@@ -212,6 +212,11 @@ class SurfaceGrid:
|
|
|
212
212
|
grid_dist = grid_dist[z_index]
|
|
213
213
|
break
|
|
214
214
|
self.points = xyz
|
|
215
|
+
|
|
216
|
+
if surface_index is not None: # grid_dist should contain all atoms
|
|
217
|
+
grid_dist_array, grid_dist = get_distances(
|
|
218
|
+
xyz[nonbond_index], atoms_pos, cell=self.atoms.cell, pbc=self.atoms.pbc)
|
|
219
|
+
|
|
215
220
|
self._Dga = grid_dist
|
|
216
221
|
self._DAga = grid_dist_array
|
|
217
222
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{surface_construct-0.5.11 → surface_construct-0.5.12}/surface_construct/default_parameter.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{surface_construct-0.5.11 → surface_construct-0.5.12}/surface_construct.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{surface_construct-0.5.11 → surface_construct-0.5.12}/surface_construct.egg-info/requires.txt
RENAMED
|
File without changes
|
{surface_construct-0.5.11 → surface_construct-0.5.12}/surface_construct.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|