surface-construct 0.7__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.
Files changed (19) hide show
  1. {surface_construct-0.7/surface_construct.egg-info → surface_construct-0.8}/PKG-INFO +9 -12
  2. {surface_construct-0.7 → surface_construct-0.8}/README.md +8 -11
  3. {surface_construct-0.7 → surface_construct-0.8}/setup.py +1 -1
  4. {surface_construct-0.7 → surface_construct-0.8}/surface_construct/atoms.py +564 -564
  5. {surface_construct-0.7 → surface_construct-0.8}/surface_construct/structure.py +536 -536
  6. {surface_construct-0.7 → surface_construct-0.8}/surface_construct/utils.py +60 -27
  7. {surface_construct-0.7 → surface_construct-0.8/surface_construct.egg-info}/PKG-INFO +9 -12
  8. {surface_construct-0.7 → surface_construct-0.8}/LICENSE +0 -0
  9. {surface_construct-0.7 → surface_construct-0.8}/setup.cfg +0 -0
  10. {surface_construct-0.7 → surface_construct-0.8}/surface_construct/__init__.py +0 -0
  11. {surface_construct-0.7 → surface_construct-0.8}/surface_construct/db.py +0 -0
  12. {surface_construct-0.7 → surface_construct-0.8}/surface_construct/default_parameter.py +0 -0
  13. {surface_construct-0.7 → surface_construct-0.8}/surface_construct/sampling.py +0 -0
  14. {surface_construct-0.7 → surface_construct-0.8}/surface_construct/surface.py +0 -0
  15. {surface_construct-0.7 → surface_construct-0.8}/surface_construct/surface_grid.py +0 -0
  16. {surface_construct-0.7 → surface_construct-0.8}/surface_construct.egg-info/SOURCES.txt +0 -0
  17. {surface_construct-0.7 → surface_construct-0.8}/surface_construct.egg-info/dependency_links.txt +0 -0
  18. {surface_construct-0.7 → surface_construct-0.8}/surface_construct.egg-info/requires.txt +0 -0
  19. {surface_construct-0.7 → 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.7
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
@@ -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
- * v 0.9: 完善用户界面、例子、教程
271
- * v 1.0: 发布第一个正式版
272
- * v 1.1: 孔材料体系格点构造
273
- * v 1.2: 多原子体系(复杂内坐标体系)
274
- * v 1.3: 团簇体系
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
- * v 0.9: 完善用户界面、例子、教程
247
- * v 1.0: 发布第一个正式版
248
- * v 1.1: 孔材料体系格点构造
249
- * v 1.2: 多原子体系(复杂内坐标体系)
250
- * v 1.3: 团簇体系
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
@@ -18,7 +18,7 @@ install_requires = [
18
18
 
19
19
  setup(
20
20
  name='surface_construct',
21
- version='0.7',
21
+ version='0.8',
22
22
  packages=['surface_construct'],
23
23
  url='https://gitee.com/pjren/surface_construct/',
24
24
  license='GPL',