lasp-ase 0.0.1__tar.gz → 0.0.2__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.
- lasp_ase-0.0.2/PKG-INFO +39 -0
- lasp_ase-0.0.2/README.md +20 -0
- {lasp_ase-0.0.1 → lasp_ase-0.0.2}/lasp_ase/lasp.py +1 -1
- lasp_ase-0.0.2/lasp_ase.egg-info/PKG-INFO +39 -0
- {lasp_ase-0.0.1 → lasp_ase-0.0.2}/setup.py +2 -3
- lasp_ase-0.0.1/PKG-INFO +0 -28
- lasp_ase-0.0.1/README.md +0 -9
- lasp_ase-0.0.1/lasp_ase.egg-info/PKG-INFO +0 -28
- {lasp_ase-0.0.1 → lasp_ase-0.0.2}/LICENSE +0 -0
- {lasp_ase-0.0.1 → lasp_ase-0.0.2}/lasp_ase/__init__.py +0 -0
- {lasp_ase-0.0.1 → lasp_ase-0.0.2}/lasp_ase.egg-info/SOURCES.txt +0 -0
- {lasp_ase-0.0.1 → lasp_ase-0.0.2}/lasp_ase.egg-info/dependency_links.txt +0 -0
- {lasp_ase-0.0.1 → lasp_ase-0.0.2}/lasp_ase.egg-info/requires.txt +0 -0
- {lasp_ase-0.0.1 → lasp_ase-0.0.2}/lasp_ase.egg-info/top_level.txt +0 -0
- {lasp_ase-0.0.1 → lasp_ase-0.0.2}/setup.cfg +0 -0
lasp_ase-0.0.2/PKG-INFO
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: lasp_ase
|
|
3
|
+
Version: 0.0.2
|
|
4
|
+
Summary: ASE calculator for LASP
|
|
5
|
+
Home-page: https://github.com/renpj/lasp_ase
|
|
6
|
+
Author:
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
Requires-Dist: ase
|
|
12
|
+
Dynamic: classifier
|
|
13
|
+
Dynamic: description
|
|
14
|
+
Dynamic: description-content-type
|
|
15
|
+
Dynamic: home-page
|
|
16
|
+
Dynamic: license-file
|
|
17
|
+
Dynamic: requires-dist
|
|
18
|
+
Dynamic: summary
|
|
19
|
+
|
|
20
|
+
# lasp_ase
|
|
21
|
+
ASE calculator for LASP (http://www.lasphub.com)
|
|
22
|
+
|
|
23
|
+
## Installation
|
|
24
|
+
|
|
25
|
+
### 环境配置
|
|
26
|
+
* Linux 环境。没有测试过 windows 环境,只要 lasp 二进制支持就可以。
|
|
27
|
+
* 安装 intel mpi 编译器 (lasp 运行需要),参考 intel oneapi 官网。
|
|
28
|
+
* 从 LASP 官网下载 lasp 可执行文件和相关的势函数 (需要许可)。
|
|
29
|
+
* 在 .bashrc 中配置 `ASE_LASP_COMMAND = mpirun -np 4 lasp` (根据自己的情况修改)。若是使用 pbs 脚本则可以在脚本中加入相应配置。
|
|
30
|
+
|
|
31
|
+
### 安装
|
|
32
|
+
|
|
33
|
+
使用 `pip install -U lasp_ase`
|
|
34
|
+
|
|
35
|
+
## run example
|
|
36
|
+
```bash
|
|
37
|
+
cd example
|
|
38
|
+
bash run_ase.sh
|
|
39
|
+
```
|
lasp_ase-0.0.2/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# lasp_ase
|
|
2
|
+
ASE calculator for LASP (http://www.lasphub.com)
|
|
3
|
+
|
|
4
|
+
## Installation
|
|
5
|
+
|
|
6
|
+
### 环境配置
|
|
7
|
+
* Linux 环境。没有测试过 windows 环境,只要 lasp 二进制支持就可以。
|
|
8
|
+
* 安装 intel mpi 编译器 (lasp 运行需要),参考 intel oneapi 官网。
|
|
9
|
+
* 从 LASP 官网下载 lasp 可执行文件和相关的势函数 (需要许可)。
|
|
10
|
+
* 在 .bashrc 中配置 `ASE_LASP_COMMAND = mpirun -np 4 lasp` (根据自己的情况修改)。若是使用 pbs 脚本则可以在脚本中加入相应配置。
|
|
11
|
+
|
|
12
|
+
### 安装
|
|
13
|
+
|
|
14
|
+
使用 `pip install -U lasp_ase`
|
|
15
|
+
|
|
16
|
+
## run example
|
|
17
|
+
```bash
|
|
18
|
+
cd example
|
|
19
|
+
bash run_ase.sh
|
|
20
|
+
```
|
|
@@ -38,7 +38,7 @@ class Lasp(FileIOCalculator):
|
|
|
38
38
|
self.do_forces = True
|
|
39
39
|
FileIOCalculator.write_input(
|
|
40
40
|
self, atoms, properties, system_changes)
|
|
41
|
-
write(os.path.join(self.directory, 'input.arc'), atoms,
|
|
41
|
+
write(os.path.join(self.directory, 'input.arc'), atoms, format="dmol-arc",
|
|
42
42
|
parallel=False)
|
|
43
43
|
# self.atoms is none until results are read out,
|
|
44
44
|
# then it is set to the ones at writing input
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: lasp_ase
|
|
3
|
+
Version: 0.0.2
|
|
4
|
+
Summary: ASE calculator for LASP
|
|
5
|
+
Home-page: https://github.com/renpj/lasp_ase
|
|
6
|
+
Author:
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
Requires-Dist: ase
|
|
12
|
+
Dynamic: classifier
|
|
13
|
+
Dynamic: description
|
|
14
|
+
Dynamic: description-content-type
|
|
15
|
+
Dynamic: home-page
|
|
16
|
+
Dynamic: license-file
|
|
17
|
+
Dynamic: requires-dist
|
|
18
|
+
Dynamic: summary
|
|
19
|
+
|
|
20
|
+
# lasp_ase
|
|
21
|
+
ASE calculator for LASP (http://www.lasphub.com)
|
|
22
|
+
|
|
23
|
+
## Installation
|
|
24
|
+
|
|
25
|
+
### 环境配置
|
|
26
|
+
* Linux 环境。没有测试过 windows 环境,只要 lasp 二进制支持就可以。
|
|
27
|
+
* 安装 intel mpi 编译器 (lasp 运行需要),参考 intel oneapi 官网。
|
|
28
|
+
* 从 LASP 官网下载 lasp 可执行文件和相关的势函数 (需要许可)。
|
|
29
|
+
* 在 .bashrc 中配置 `ASE_LASP_COMMAND = mpirun -np 4 lasp` (根据自己的情况修改)。若是使用 pbs 脚本则可以在脚本中加入相应配置。
|
|
30
|
+
|
|
31
|
+
### 安装
|
|
32
|
+
|
|
33
|
+
使用 `pip install -U lasp_ase`
|
|
34
|
+
|
|
35
|
+
## run example
|
|
36
|
+
```bash
|
|
37
|
+
cd example
|
|
38
|
+
bash run_ase.sh
|
|
39
|
+
```
|
|
@@ -8,7 +8,7 @@ install_requires = [
|
|
|
8
8
|
]
|
|
9
9
|
setuptools.setup(
|
|
10
10
|
name="lasp_ase",
|
|
11
|
-
version="0.0.
|
|
11
|
+
version="0.0.2",
|
|
12
12
|
author="",
|
|
13
13
|
description="ASE calculator for LASP",
|
|
14
14
|
long_description=long_description,
|
|
@@ -17,8 +17,7 @@ setuptools.setup(
|
|
|
17
17
|
packages=setuptools.find_packages(),
|
|
18
18
|
install_requires=install_requires,
|
|
19
19
|
classifiers=[
|
|
20
|
-
"Programming Language :: Python :: 3",
|
|
21
|
-
"License :: OSI Approved :: MIT License",
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
22
21
|
"Operating System :: OS Independent"
|
|
23
22
|
],
|
|
24
23
|
)
|
lasp_ase-0.0.1/PKG-INFO
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.2
|
|
2
|
-
Name: lasp_ase
|
|
3
|
-
Version: 0.0.1
|
|
4
|
-
Summary: ASE calculator for LASP
|
|
5
|
-
Home-page: https://github.com/renpj/lasp_ase
|
|
6
|
-
Author:
|
|
7
|
-
Classifier: Programming Language :: Python :: 3
|
|
8
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
-
Classifier: Operating System :: OS Independent
|
|
10
|
-
Description-Content-Type: text/markdown
|
|
11
|
-
License-File: LICENSE
|
|
12
|
-
Requires-Dist: ase
|
|
13
|
-
Dynamic: classifier
|
|
14
|
-
Dynamic: description
|
|
15
|
-
Dynamic: description-content-type
|
|
16
|
-
Dynamic: home-page
|
|
17
|
-
Dynamic: requires-dist
|
|
18
|
-
Dynamic: summary
|
|
19
|
-
|
|
20
|
-
# lasp_ase
|
|
21
|
-
ASE calculator for LASP (http://www.lasphub.com)
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
## run example
|
|
25
|
-
```bash
|
|
26
|
-
cd example
|
|
27
|
-
bash run_ase.sh
|
|
28
|
-
```
|
lasp_ase-0.0.1/README.md
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.2
|
|
2
|
-
Name: lasp_ase
|
|
3
|
-
Version: 0.0.1
|
|
4
|
-
Summary: ASE calculator for LASP
|
|
5
|
-
Home-page: https://github.com/renpj/lasp_ase
|
|
6
|
-
Author:
|
|
7
|
-
Classifier: Programming Language :: Python :: 3
|
|
8
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
-
Classifier: Operating System :: OS Independent
|
|
10
|
-
Description-Content-Type: text/markdown
|
|
11
|
-
License-File: LICENSE
|
|
12
|
-
Requires-Dist: ase
|
|
13
|
-
Dynamic: classifier
|
|
14
|
-
Dynamic: description
|
|
15
|
-
Dynamic: description-content-type
|
|
16
|
-
Dynamic: home-page
|
|
17
|
-
Dynamic: requires-dist
|
|
18
|
-
Dynamic: summary
|
|
19
|
-
|
|
20
|
-
# lasp_ase
|
|
21
|
-
ASE calculator for LASP (http://www.lasphub.com)
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
## run example
|
|
25
|
-
```bash
|
|
26
|
-
cd example
|
|
27
|
-
bash run_ase.sh
|
|
28
|
-
```
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|