surface-construct 0.6__tar.gz → 0.8__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.6/surface_construct.egg-info → surface_construct-0.8}/PKG-INFO +10 -12
- {surface_construct-0.6 → surface_construct-0.8}/README.md +8 -11
- {surface_construct-0.6 → surface_construct-0.8}/setup.py +2 -1
- {surface_construct-0.6 → surface_construct-0.8}/surface_construct/atoms.py +564 -564
- {surface_construct-0.6 → surface_construct-0.8}/surface_construct/structure.py +536 -536
- {surface_construct-0.6 → surface_construct-0.8}/surface_construct/surface_grid.py +113 -145
- {surface_construct-0.6 → surface_construct-0.8}/surface_construct/utils.py +119 -45
- {surface_construct-0.6 → surface_construct-0.8/surface_construct.egg-info}/PKG-INFO +10 -12
- {surface_construct-0.6 → surface_construct-0.8}/surface_construct.egg-info/requires.txt +1 -0
- {surface_construct-0.6 → surface_construct-0.8}/LICENSE +0 -0
- {surface_construct-0.6 → surface_construct-0.8}/setup.cfg +0 -0
- {surface_construct-0.6 → surface_construct-0.8}/surface_construct/__init__.py +0 -0
- {surface_construct-0.6 → surface_construct-0.8}/surface_construct/db.py +0 -0
- {surface_construct-0.6 → surface_construct-0.8}/surface_construct/default_parameter.py +0 -0
- {surface_construct-0.6 → surface_construct-0.8}/surface_construct/sampling.py +0 -0
- {surface_construct-0.6 → surface_construct-0.8}/surface_construct/surface.py +0 -0
- {surface_construct-0.6 → surface_construct-0.8}/surface_construct.egg-info/SOURCES.txt +0 -0
- {surface_construct-0.6 → surface_construct-0.8}/surface_construct.egg-info/dependency_links.txt +0 -0
- {surface_construct-0.6 → surface_construct-0.8}/surface_construct.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: surface_construct
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.8
|
|
4
4
|
Summary: Surface termination construction especially for complex model, such as oxides or carbides.
|
|
5
5
|
Home-page: https://gitee.com/pjren/surface_construct/
|
|
6
6
|
Author: ren
|
|
@@ -20,6 +20,7 @@ Requires-Dist: tqdm
|
|
|
20
20
|
Requires-Dist: matplotlib
|
|
21
21
|
Requires-Dist: scipy
|
|
22
22
|
Requires-Dist: scikit-learn
|
|
23
|
+
Requires-Dist: scikit-image
|
|
23
24
|
|
|
24
25
|
# 基于分层采样策略的催化剂表面位点全局分析
|
|
25
26
|
|
|
@@ -256,22 +257,19 @@ $$
|
|
|
256
257
|
* 其他数值使用默认值。
|
|
257
258
|
|
|
258
259
|
|
|
259
|
-
|
|
260
|
-
|
|
261
260
|
## 路线图 Roadmap
|
|
262
261
|
|
|
263
262
|
* v 0.4.1: 单原子和双原子分子表面吸附
|
|
264
263
|
* v 0.4.2: 双原子过渡态计算,扫描 phi 角度
|
|
265
264
|
* v 0.5: 多种表面采样方法
|
|
266
|
-
* v 0.6:
|
|
267
|
-
* v 0.7:
|
|
268
|
-
* v 0.8:
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
*
|
|
272
|
-
*
|
|
273
|
-
*
|
|
274
|
-
|
|
265
|
+
* v 0.6: 新的高效表面格点构造,支持表面和团簇
|
|
266
|
+
* v 0.7: 新的 grid_sample 方法,包含 Hull.vertices VIP 位点。
|
|
267
|
+
* v 0.8: 孔材料体系格点构造
|
|
268
|
+
|
|
269
|
+
**TODO**
|
|
270
|
+
* 表面位点数据库
|
|
271
|
+
* 多原子体系(内坐标受限体系)
|
|
272
|
+
* 完善用户界面、例子、教程
|
|
275
273
|
|
|
276
274
|
|
|
277
275
|
## Reference
|
|
@@ -233,22 +233,19 @@ $$
|
|
|
233
233
|
* 其他数值使用默认值。
|
|
234
234
|
|
|
235
235
|
|
|
236
|
-
|
|
237
|
-
|
|
238
236
|
## 路线图 Roadmap
|
|
239
237
|
|
|
240
238
|
* v 0.4.1: 单原子和双原子分子表面吸附
|
|
241
239
|
* v 0.4.2: 双原子过渡态计算,扫描 phi 角度
|
|
242
240
|
* v 0.5: 多种表面采样方法
|
|
243
|
-
* v 0.6:
|
|
244
|
-
* v 0.7:
|
|
245
|
-
* v 0.8:
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
*
|
|
249
|
-
*
|
|
250
|
-
*
|
|
251
|
-
|
|
241
|
+
* v 0.6: 新的高效表面格点构造,支持表面和团簇
|
|
242
|
+
* v 0.7: 新的 grid_sample 方法,包含 Hull.vertices VIP 位点。
|
|
243
|
+
* v 0.8: 孔材料体系格点构造
|
|
244
|
+
|
|
245
|
+
**TODO**
|
|
246
|
+
* 表面位点数据库
|
|
247
|
+
* 多原子体系(内坐标受限体系)
|
|
248
|
+
* 完善用户界面、例子、教程
|
|
252
249
|
|
|
253
250
|
|
|
254
251
|
## Reference
|
|
@@ -13,11 +13,12 @@ install_requires = [
|
|
|
13
13
|
'matplotlib',
|
|
14
14
|
'scipy',
|
|
15
15
|
'scikit-learn',
|
|
16
|
+
'scikit-image'
|
|
16
17
|
]
|
|
17
18
|
|
|
18
19
|
setup(
|
|
19
20
|
name='surface_construct',
|
|
20
|
-
version='0.
|
|
21
|
+
version='0.8',
|
|
21
22
|
packages=['surface_construct'],
|
|
22
23
|
url='https://gitee.com/pjren/surface_construct/',
|
|
23
24
|
license='GPL',
|