surface-construct 0.7__tar.gz → 0.8.1__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.7/surface_construct.egg-info → surface_construct-0.8.1}/PKG-INFO +9 -12
- {surface_construct-0.7 → surface_construct-0.8.1}/README.md +8 -11
- {surface_construct-0.7 → surface_construct-0.8.1}/setup.py +1 -1
- {surface_construct-0.7 → surface_construct-0.8.1}/surface_construct/atoms.py +564 -564
- {surface_construct-0.7 → surface_construct-0.8.1}/surface_construct/sampling.py +295 -284
- {surface_construct-0.7 → surface_construct-0.8.1}/surface_construct/structure.py +536 -536
- {surface_construct-0.7 → surface_construct-0.8.1}/surface_construct/surface_grid.py +9 -66
- {surface_construct-0.7 → surface_construct-0.8.1}/surface_construct/utils.py +62 -29
- {surface_construct-0.7 → surface_construct-0.8.1/surface_construct.egg-info}/PKG-INFO +9 -12
- {surface_construct-0.7 → surface_construct-0.8.1}/LICENSE +0 -0
- {surface_construct-0.7 → surface_construct-0.8.1}/setup.cfg +0 -0
- {surface_construct-0.7 → surface_construct-0.8.1}/surface_construct/__init__.py +0 -0
- {surface_construct-0.7 → surface_construct-0.8.1}/surface_construct/db.py +0 -0
- {surface_construct-0.7 → surface_construct-0.8.1}/surface_construct/default_parameter.py +0 -0
- {surface_construct-0.7 → surface_construct-0.8.1}/surface_construct/surface.py +0 -0
- {surface_construct-0.7 → surface_construct-0.8.1}/surface_construct.egg-info/SOURCES.txt +0 -0
- {surface_construct-0.7 → surface_construct-0.8.1}/surface_construct.egg-info/dependency_links.txt +0 -0
- {surface_construct-0.7 → surface_construct-0.8.1}/surface_construct.egg-info/requires.txt +0 -0
- {surface_construct-0.7 → surface_construct-0.8.1}/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.1
|
|
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
|
|
@@ -257,22 +257,19 @@ $$
|
|
|
257
257
|
* 其他数值使用默认值。
|
|
258
258
|
|
|
259
259
|
|
|
260
|
-
|
|
261
|
-
|
|
262
260
|
## 路线图 Roadmap
|
|
263
261
|
|
|
264
262
|
* v 0.4.1: 单原子和双原子分子表面吸附
|
|
265
263
|
* v 0.4.2: 双原子过渡态计算,扫描 phi 角度
|
|
266
264
|
* v 0.5: 多种表面采样方法
|
|
267
|
-
* v 0.6:
|
|
268
|
-
* v 0.7:
|
|
269
|
-
* v 0.8:
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
*
|
|
273
|
-
*
|
|
274
|
-
*
|
|
275
|
-
|
|
265
|
+
* v 0.6: 新的高效表面格点构造,支持表面和团簇
|
|
266
|
+
* v 0.7: 新的 grid_sample 方法,包含 Hull.vertices VIP 位点。
|
|
267
|
+
* v 0.8: 孔材料体系格点构造
|
|
268
|
+
|
|
269
|
+
**TODO**
|
|
270
|
+
* 表面位点数据库
|
|
271
|
+
* 多原子体系(内坐标受限体系)
|
|
272
|
+
* 完善用户界面、例子、教程
|
|
276
273
|
|
|
277
274
|
|
|
278
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
|