ion-CSP 2.1.4__tar.gz → 2.1.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.
- {ion_csp-2.1.4 → ion_csp-2.1.8}/.github/workflows/conda-env-build.yml +3 -1
- {ion_csp-2.1.4 → ion_csp-2.1.8}/.gitignore +1 -1
- ion_csp-2.1.8/CHANGELOG.md +93 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/CODE_OF_CONDUCT.md +8 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/LICENSE +1 -1
- {ion_csp-2.1.4 → ion_csp-2.1.8}/PKG-INFO +45 -16
- {ion_csp-2.1.4 → ion_csp-2.1.8}/README.md +43 -15
- {ion_csp-2.1.4 → ion_csp-2.1.8}/environment.yml +1 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/examples/example_1/config.yaml +2 -2
- ion_csp-2.1.8/examples/example_2/combo_1/ACEGUL.gjf +52 -0
- ion_csp-2.1.8/examples/example_2/combo_1/AGIDOM.gjf +27 -0
- ion_csp-2.1.8/examples/example_2/combo_1/config.yaml +43 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/model/options/README.md +1 -1
- {ion_csp-2.1.4 → ion_csp-2.1.8}/pyproject.toml +1 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/requirements.txt +2 -1
- ion_csp-2.1.8/scripts/update_changelog.py +68 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/src/ion_CSP/__init__.py +2 -2
- {ion_csp-2.1.4 → ion_csp-2.1.8}/src/ion_CSP/convert_SMILES.py +32 -10
- {ion_csp-2.1.4 → ion_csp-2.1.8}/src/ion_CSP/empirical_estimate.py +136 -18
- {ion_csp-2.1.4 → ion_csp-2.1.8}/src/ion_CSP/gen_opt.py +83 -33
- {ion_csp-2.1.4 → ion_csp-2.1.8}/src/ion_CSP/identify_molecules.py +15 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/src/ion_CSP/log_and_time.py +55 -8
- {ion_csp-2.1.4 → ion_csp-2.1.8}/src/ion_CSP/mlp_opt.py +52 -6
- ion_csp-2.1.8/src/ion_CSP/model/model.pt +0 -0
- ion_csp-2.1.8/src/ion_CSP/model/options/README.md +5 -0
- ion_csp-2.1.8/src/ion_CSP/model/options/model.ckpt-4000000.pt +0 -0
- ion_csp-2.1.8/src/ion_CSP/param/INCAR_0 +16 -0
- ion_csp-2.1.8/src/ion_CSP/param/INCAR_1 +19 -0
- ion_csp-2.1.8/src/ion_CSP/param/INCAR_2 +19 -0
- ion_csp-2.1.8/src/ion_CSP/param/INCAR_3 +19 -0
- ion_csp-2.1.8/src/ion_CSP/param/POTCAR_C +2319 -0
- ion_csp-2.1.8/src/ion_CSP/param/POTCAR_H +1563 -0
- ion_csp-2.1.8/src/ion_CSP/param/POTCAR_N +2351 -0
- ion_csp-2.1.8/src/ion_CSP/param/POTCAR_O +2487 -0
- ion_csp-2.1.8/src/ion_CSP/param/g16_sub.sh +21 -0
- ion_csp-2.1.8/src/ion_CSP/param/sub_final.sh +91 -0
- ion_csp-2.1.8/src/ion_CSP/param/sub_ori.sh +74 -0
- ion_csp-2.1.8/src/ion_CSP/param/sub_supple.sh +56 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/src/ion_CSP/read_mlp_density.py +15 -1
- {ion_csp-2.1.4 → ion_csp-2.1.8}/src/ion_CSP/task_manager.py +2 -2
- {ion_csp-2.1.4 → ion_csp-2.1.8}/src/ion_CSP/upload_download.py +0 -1
- {ion_csp-2.1.4 → ion_csp-2.1.8}/src/ion_CSP/vasp_processing.py +48 -20
- {ion_csp-2.1.4 → ion_csp-2.1.8}/src/ion_CSP.egg-info/PKG-INFO +45 -16
- {ion_csp-2.1.4 → ion_csp-2.1.8}/src/ion_CSP.egg-info/SOURCES.txt +28 -9
- {ion_csp-2.1.4 → ion_csp-2.1.8}/src/ion_CSP.egg-info/requires.txt +1 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/src/ion_CSP.egg-info/top_level.txt +0 -1
- ion_csp-2.1.4/CHANGELOG.md +0 -18
- {ion_csp-2.1.4 → ion_csp-2.1.8}/.dockerignore +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/.github/workflows/pypi-publish.yml +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/.vscode/settings.json +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/CONTRIBUTING.md +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/Dockerfile +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/MANIFEST.in +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/SECURITY.md +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/config/complete_config.yaml +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/config/simple_config.yaml +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/config/usage.md +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/docs/example_usage_CSP.py +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/docs/example_usage_EE.py +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/docs/index.md +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/docs/usage.md +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/examples/example_1/ions.csv +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/examples/example_usage.py +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/examples/server/example_local_machine.yaml +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/examples/server/example_local_resources.yaml +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/examples/server/example_remote_machine.yaml +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/examples/server/example_remote_resources.yaml +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/makefile +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/model/model.pt +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/model/options/model.ckpt-4000000.pt +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/param/INCAR_0 +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/param/INCAR_1 +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/param/INCAR_2 +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/param/INCAR_3 +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/param/POTCAR_C +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/param/POTCAR_H +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/param/POTCAR_N +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/param/POTCAR_O +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/param/g16_sub.sh +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/param/sub_final.sh +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/param/sub_ori.sh +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/param/sub_supple.sh +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/scripts/CLI.py +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/scripts/CLI.sh +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/scripts/main_CSP.sh +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/scripts/main_EE.sh +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/setup.cfg +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/setup.py +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/src/__init__.py +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/src/ion_CSP/__main__.py +0 -0
- {ion_csp-2.1.4/src → ion_csp-2.1.8/src/ion_CSP}/run/__init__.py +0 -0
- {ion_csp-2.1.4/src → ion_csp-2.1.8/src/ion_CSP}/run/main_CSP.py +0 -0
- {ion_csp-2.1.4/src → ion_csp-2.1.8/src/ion_CSP}/run/main_EE.py +0 -0
- {ion_csp-2.1.4/src → ion_csp-2.1.8/src/ion_CSP}/run/run_convert_SMILES.py +0 -0
- {ion_csp-2.1.4/src → ion_csp-2.1.8/src/ion_CSP}/run/run_empirical_estimate.py +0 -0
- {ion_csp-2.1.4/src → ion_csp-2.1.8/src/ion_CSP}/run/run_gen_opt.py +0 -0
- {ion_csp-2.1.4/src → ion_csp-2.1.8/src/ion_CSP}/run/run_read_mlp_density.py +0 -0
- {ion_csp-2.1.4/src → ion_csp-2.1.8/src/ion_CSP}/run/run_upload_download.py +0 -0
- {ion_csp-2.1.4/src → ion_csp-2.1.8/src/ion_CSP}/run/run_vasp_processing.py +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/src/ion_CSP/steps_opt_monitor.sh +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/src/ion_CSP.egg-info/dependency_links.txt +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/src/ion_CSP.egg-info/entry_points.txt +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/tests/__init__.py +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/tests/test1_task_manager1.py +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/tests/test_log_and_time.py +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/tests/test_task_manager.py +0 -0
- {ion_csp-2.1.4 → ion_csp-2.1.8}/uv.lock +0 -0
@@ -0,0 +1,93 @@
|
|
1
|
+
## (2025-06-19)
|
2
|
+
|
3
|
+
* Introduce importlib.resourses in multiple modules to improve file path management; ([2ea0ac4](https://github.com/Bagabaga007/ion_CSP/commit/2ea0ac4))
|
4
|
+
* Update dependencies, improve documentation, and enhance error handling ([b68c9ac](https://github.com/Bagabaga007/ion_CSP/commit/b68c9ac))
|
5
|
+
* Update GitHub Actions workflow to trigger builds upon release, modify the steps for updating CHANGEL ([bf651e6](https://github.com/Bagabaga007/ion_CSP/commit/bf651e6))
|
6
|
+
* Update update_changelog.yml ([5c3c950](https://github.com/Bagabaga007/ion_CSP/commit/5c3c950))
|
7
|
+
* Update update_changelog.yml ([346d034](https://github.com/Bagabaga007/ion_CSP/commit/346d034))
|
8
|
+
* Use git hooks to automatcally update CHANGELOG.md ([162ddc4](https://github.com/Bagabaga007/ion_CSP/commit/162ddc4))
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
## <small>2.1.5 (2025-06-16)</small>
|
13
|
+
|
14
|
+
* Add dependency descriptions for the Scipy version; ([934f0fa](https://github.com/Bagabaga007/ion_CSP/commit/934f0fa))
|
15
|
+
* Added the function of automatically updating CHANGELOG; ([3edd170](https://github.com/Bagabaga007/ion_CSP/commit/3edd170))
|
16
|
+
* Update version to 2.1.5. ([31087de](https://github.com/Bagabaga007/ion_CSP/commit/31087de))
|
17
|
+
|
18
|
+
|
19
|
+
|
20
|
+
## <small>2.1.4 (2025-06-13)</small>
|
21
|
+
|
22
|
+
* Optimize the packaging behavior when building pypi distribution packages to make them easier to use ([ad5c1d7](https://github.com/Bagabaga007/ion_CSP/commit/ad5c1d7))
|
23
|
+
|
24
|
+
|
25
|
+
|
26
|
+
## <small>2.1.3 (2025-06-11)</small>
|
27
|
+
|
28
|
+
* Updata version to 2.1.3 ([d503641](https://github.com/Bagabaga007/ion_CSP/commit/d503641))
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
## <small>2.1.2 (2025-06-09)</small>
|
33
|
+
|
34
|
+
* Implement centralized management of version numbers and automatic synchronization of multiple config ([1befcf7](https://github.com/Bagabaga007/ion_CSP/commit/1befcf7))
|
35
|
+
|
36
|
+
|
37
|
+
|
38
|
+
## <small>2.1.1 (2025-06-09)</small>
|
39
|
+
|
40
|
+
* 1. Improve the dockerfile to ensure smooth operation inside the container; ([f034fbe](https://github.com/Bagabaga007/ion_CSP/commit/f034fbe))
|
41
|
+
* Add conda environment configuration ([0675303](https://github.com/Bagabaga007/ion_CSP/commit/0675303))
|
42
|
+
* Add template configuration files and corresponding usage document in the config folder under the roo ([80a3e3d](https://github.com/Bagabaga007/ion_CSP/commit/80a3e3d))
|
43
|
+
* Add unit testing module for task_manager. ([070c86f](https://github.com/Bagabaga007/ion_CSP/commit/070c86f))
|
44
|
+
* Added Python version of interactive main function entry and corresponding app files. ([98f7382](https://github.com/Bagabaga007/ion_CSP/commit/98f7382))
|
45
|
+
* Added usage and configuration examples in the project root directory. ([bb0d853](https://github.com/Bagabaga007/ion_CSP/commit/bb0d853))
|
46
|
+
* Adjust the depencies installation order ([3866521](https://github.com/Bagabaga007/ion_CSP/commit/3866521))
|
47
|
+
* Adjust the installation method of the code, use git clone and pip install - e. commands to install t ([7f383b0](https://github.com/Bagabaga007/ion_CSP/commit/7f383b0))
|
48
|
+
* After machine learning potential optimization and structure filtering, CSV files were added to summa ([6f29d21](https://github.com/Bagabaga007/ion_CSP/commit/6f29d21))
|
49
|
+
* After successfully completing the task using the dpdispatcher module, delete the corresponding folde ([d079b70](https://github.com/Bagabaga007/ion_CSP/commit/d079b70))
|
50
|
+
* Change some certain packages installation way to pip installation. ([ff92e05](https://github.com/Bagabaga007/ion_CSP/commit/ff92e05))
|
51
|
+
* Change the version number to 2.0.0. ([9ddb0c4](https://github.com/Bagabaga007/ion_CSP/commit/9ddb0c4))
|
52
|
+
* committed ([2bef3e2](https://github.com/Bagabaga007/ion_CSP/commit/2bef3e2))
|
53
|
+
* Create python-package-conda.yml ([7b1752b](https://github.com/Bagabaga007/ion_CSP/commit/7b1752b))
|
54
|
+
* Create python-publish.yml ([1cbba7e](https://github.com/Bagabaga007/ion_CSP/commit/1cbba7e))
|
55
|
+
* Create SECURITY.md ([30c455b](https://github.com/Bagabaga007/ion_CSP/commit/30c455b))
|
56
|
+
* Delete 1_preparation directory ([05931e7](https://github.com/Bagabaga007/ion_CSP/commit/05931e7))
|
57
|
+
* Delete 2_generation directory ([380eedb](https://github.com/Bagabaga007/ion_CSP/commit/380eedb))
|
58
|
+
* Delete 3_postprocessing directory ([c4400f0](https://github.com/Bagabaga007/ion_CSP/commit/c4400f0))
|
59
|
+
* Fix the bug in environment.yml file ([049d915](https://github.com/Bagabaga007/ion_CSP/commit/049d915))
|
60
|
+
* Fully automated EE workflow ([c367bc3](https://github.com/Bagabaga007/ion_CSP/commit/c367bc3))
|
61
|
+
* Fully automated ion CSP workflow. ([f8e6c73](https://github.com/Bagabaga007/ion_CSP/commit/f8e6c73))
|
62
|
+
* Ignore the big-size dist files ([cb7dcb0](https://github.com/Bagabaga007/ion_CSP/commit/cb7dcb0))
|
63
|
+
* Modification of conda package build yml file. ([1d0d5fc](https://github.com/Bagabaga007/ion_CSP/commit/1d0d5fc))
|
64
|
+
* Modification of conda package build yml file. ([83f25cb](https://github.com/Bagabaga007/ion_CSP/commit/83f25cb))
|
65
|
+
* Modified the yml file for github actions ([f2a8abc](https://github.com/Bagabaga007/ion_CSP/commit/f2a8abc))
|
66
|
+
* Modified yml file for github actions ([01f2095](https://github.com/Bagabaga007/ion_CSP/commit/01f2095))
|
67
|
+
* Modified yml file for Github actions. ([90bfd07](https://github.com/Bagabaga007/ion_CSP/commit/90bfd07))
|
68
|
+
* ok ([a22b9e8](https://github.com/Bagabaga007/ion_CSP/commit/a22b9e8))
|
69
|
+
* ok ([7f6d3b1](https://github.com/Bagabaga007/ion_CSP/commit/7f6d3b1))
|
70
|
+
* ok ([c13cd0c](https://github.com/Bagabaga007/ion_CSP/commit/c13cd0c))
|
71
|
+
* ok ([1a2b2d5](https://github.com/Bagabaga007/ion_CSP/commit/1a2b2d5))
|
72
|
+
* ok ([2d8aafd](https://github.com/Bagabaga007/ion_CSP/commit/2d8aafd))
|
73
|
+
* ok ([7fbfd27](https://github.com/Bagabaga007/ion_CSP/commit/7fbfd27))
|
74
|
+
* ok ([a0b84fc](https://github.com/Bagabaga007/ion_CSP/commit/a0b84fc))
|
75
|
+
* ok ([9878e9d](https://github.com/Bagabaga007/ion_CSP/commit/9878e9d))
|
76
|
+
* ok ([b07065c](https://github.com/Bagabaga007/ion_CSP/commit/b07065c))
|
77
|
+
* ok ([68b6b0a](https://github.com/Bagabaga007/ion_CSP/commit/68b6b0a))
|
78
|
+
* ok ([f6a30b0](https://github.com/Bagabaga007/ion_CSP/commit/f6a30b0))
|
79
|
+
* ok ([0e434f6](https://github.com/Bagabaga007/ion_CSP/commit/0e434f6))
|
80
|
+
* OK ([fd404eb](https://github.com/Bagabaga007/ion_CSP/commit/fd404eb))
|
81
|
+
* Refactoring the project structure, configuring packaging parameters, and modifying sub process call ([bde5189](https://github.com/Bagabaga007/ion_CSP/commit/bde5189))
|
82
|
+
* Remove invalid channel and adapt the mixed installation method. ([24832ea](https://github.com/Bagabaga007/ion_CSP/commit/24832ea))
|
83
|
+
* Remove the flake8 installation in conda package construction. ([5540449](https://github.com/Bagabaga007/ion_CSP/commit/5540449))
|
84
|
+
* Remove torchvision package dependencies to allow pip to attempt to solve the dependency conflict. ([72ccfad](https://github.com/Bagabaga007/ion_CSP/commit/72ccfad))
|
85
|
+
* Significantly optimized the logging system and task management of the interactive program entrance. ([15c4628](https://github.com/Bagabaga007/ion_CSP/commit/15c4628))
|
86
|
+
* Significantly optimized the program logic of the interactive entrance and fixed a large number of po ([bfec475](https://github.com/Bagabaga007/ion_CSP/commit/bfec475))
|
87
|
+
* Unified the interactive interface between shell and Python versions, and uploaded distribution files ([ebf54e3](https://github.com/Bagabaga007/ion_CSP/commit/ebf54e3))
|
88
|
+
* Update information in README.md ([01af54c](https://github.com/Bagabaga007/ion_CSP/commit/01af54c))
|
89
|
+
* Update README.md and modified the yml file for github action of conda package build ([1ff9020](https://github.com/Bagabaga007/ion_CSP/commit/1ff9020))
|
90
|
+
* Update the corresponding information yml to resolve the conda environment configuration actions in G ([c2a01ee](https://github.com/Bagabaga007/ion_CSP/commit/c2a01ee))
|
91
|
+
|
92
|
+
|
93
|
+
|
@@ -1,12 +1,15 @@
|
|
1
1
|
# Code of Conduct
|
2
2
|
|
3
3
|
## 1. Purpose
|
4
|
+
|
4
5
|
We are committed to creating an open, welcoming, and inclusive community. This Code of Conduct aims to provide a safe environment for all participants, fostering positive interactions and collaboration.
|
5
6
|
|
6
7
|
## 2. Scope
|
8
|
+
|
7
9
|
This Code of Conduct applies to all participants, including but not limited to: contributors, maintainers, users, and anyone involved with the project.
|
8
10
|
|
9
11
|
## 3. Expected Behavior
|
12
|
+
|
10
13
|
We encourage all participants to:
|
11
14
|
|
12
15
|
- **Respect Others**: Honor each person’s viewpoints, experiences, and backgrounds.
|
@@ -15,6 +18,7 @@ We encourage all participants to:
|
|
15
18
|
- **Accept Constructive Feedback**: Be open to feedback from others and engage in discussions with an open mind.
|
16
19
|
|
17
20
|
## 4. Unacceptable Behavior
|
21
|
+
|
18
22
|
The following behaviors are considered unacceptable:
|
19
23
|
|
20
24
|
- **Harassment**: This includes threats, malicious attacks, sexism, racism, hate speech, etc.
|
@@ -22,9 +26,11 @@ The following behaviors are considered unacceptable:
|
|
22
26
|
- **Disruptive Behavior**: Intentionally disrupting others' work or the community environment.
|
23
27
|
|
24
28
|
## 5. Reporting Mechanism
|
29
|
+
|
25
30
|
If you witness or experience unacceptable behavior, please report it to the community maintainers promptly. We take every report seriously and will take appropriate action.
|
26
31
|
|
27
32
|
## 6. Consequences
|
33
|
+
|
28
34
|
For participants who violate the Code of Conduct, we may take the following actions:
|
29
35
|
|
30
36
|
- Warning
|
@@ -32,7 +38,9 @@ For participants who violate the Code of Conduct, we may take the following acti
|
|
32
38
|
- Permanent ban from participation
|
33
39
|
|
34
40
|
## 7. Applicability
|
41
|
+
|
35
42
|
This Code of Conduct applies to all activities related to the project, including online and offline interactions.
|
36
43
|
|
37
44
|
## 8. License
|
45
|
+
|
38
46
|
This Code of Conduct follows the [Contributor Covenant](https://opensource.org/osd) and welcomes suggestions and improvements from anyone.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: ion_CSP
|
3
|
-
Version: 2.1.
|
3
|
+
Version: 2.1.8
|
4
4
|
Summary: Crystal Structure Design Software Based on Molecular/Ionic Configuration.
|
5
5
|
Home-page: https://github.com/bagabaga007/ion_CSP
|
6
6
|
Author: Ze Yang
|
@@ -13,6 +13,7 @@ Requires-Python: >=3.11
|
|
13
13
|
Description-Content-Type: text/markdown
|
14
14
|
License-File: LICENSE
|
15
15
|
Requires-Dist: ase==3.23.0
|
16
|
+
Requires-Dist: scipy==1.15.2
|
16
17
|
Requires-Dist: deepmd-kit==3.0.1
|
17
18
|
Requires-Dist: torch==2.5.0
|
18
19
|
Requires-Dist: dpdispatcher==0.6.7
|
@@ -27,13 +28,16 @@ Dynamic: home-page
|
|
27
28
|
Dynamic: license-file
|
28
29
|
Dynamic: requires-python
|
29
30
|
|
30
|
-
#
|
31
|
+
# 基于分子/离子构型的晶体结构设计软件 V2.1
|
31
32
|
|
32
33
|
## 项目概述
|
34
|
+
|
33
35
|
基于分子/离子构型的晶体结构设计软件通过结合经验公式、机器学习势函数微调、第一性原理分步优化和分子/离子识别技术,实现了从分子/离子构型出发的高效晶体结构设计。该软件采用模块化设计,支持全流程自动化材料筛选,在保证预测精度的同时显著提升计算效率。
|
34
36
|
|
35
37
|
## 功能特性
|
38
|
+
|
36
39
|
### 核心功能
|
40
|
+
|
37
41
|
- **双模块工作流**
|
38
42
|
- **EE模块**:基于经验评估的离子组合生成
|
39
43
|
- **CSP模块**:基于离子晶体结构预测的优化筛选
|
@@ -47,13 +51,16 @@ Dynamic: requires-python
|
|
47
51
|
- 软链接解析显示实际路径
|
48
52
|
|
49
53
|
### 技术特性
|
54
|
+
|
50
55
|
- 跨平台支持(Linux/Docker)
|
51
56
|
- 基于Python 3.11+的面向对象架构
|
52
57
|
- 集成psutil进程管理
|
53
58
|
- 结构化日志记录系统
|
54
59
|
|
55
60
|
## 安装指南
|
61
|
+
|
56
62
|
### 环境要求
|
63
|
+
|
57
64
|
| 组件 | 最低版本 |
|
58
65
|
|-------------|----------|
|
59
66
|
| Python | 3.11 |
|
@@ -70,10 +77,13 @@ Dynamic: requires-python
|
|
70
77
|
| rdkit | 2024.03.3|
|
71
78
|
|
72
79
|
### 安装步骤
|
80
|
+
|
73
81
|
```bash
|
74
82
|
pip install ion-csp
|
75
83
|
```
|
84
|
+
|
76
85
|
或
|
86
|
+
|
77
87
|
```bash
|
78
88
|
# 创建虚拟环境
|
79
89
|
python -m venv venv
|
@@ -86,29 +96,39 @@ pip install -e .
|
|
86
96
|
```
|
87
97
|
|
88
98
|
## 快速入门
|
99
|
+
|
89
100
|
### 交互模式
|
101
|
+
|
90
102
|
```bash
|
91
103
|
ion-csp
|
92
104
|
```
|
105
|
+
|
93
106
|
启动交互式命令行界面,支持以下操作:
|
107
|
+
|
94
108
|
- 模块选择
|
95
109
|
- 日志查看
|
96
110
|
- 进程管理
|
97
111
|
|
98
112
|
### 脚本调用
|
113
|
+
|
99
114
|
#### EE模块示例
|
115
|
+
|
100
116
|
```bash
|
101
117
|
./scripts/main_EE.sh examples/example_1
|
102
118
|
```
|
119
|
+
|
103
120
|
从SMILES表格生成离子组合
|
104
121
|
|
105
122
|
#### CSP模块示例
|
123
|
+
|
106
124
|
```bash
|
107
125
|
./scripts/main_CSP.sh examples/example_2
|
108
126
|
```
|
127
|
+
|
109
128
|
从离子组合生成并优化晶体结构
|
110
129
|
|
111
130
|
## 技术架构
|
131
|
+
|
112
132
|
```mermaid
|
113
133
|
graph TD
|
114
134
|
A[用户界面] --> B[任务管理器]
|
@@ -117,34 +137,32 @@ graph TD
|
|
117
137
|
B --> E[日志系统]
|
118
138
|
B --> F[任务调度]
|
119
139
|
C --> G[经验评估引擎]
|
120
|
-
D --> H[
|
140
|
+
D --> H[离子晶体结构预测引擎]
|
121
141
|
E --> I[结构化日志]
|
122
142
|
F --> J[进程终止]
|
123
143
|
```
|
124
144
|
|
125
145
|
## 贡献指南
|
146
|
+
|
126
147
|
1. Fork仓库并创建特性分支
|
127
148
|
2. 编写单元测试覆盖新功能
|
128
149
|
3. 提交Pull Request时注明关联Issue
|
129
150
|
4. 遵循PEP8代码规范
|
130
151
|
|
131
152
|
## 许可证
|
132
|
-
本项目采用MIT许可证,详见LICENSE文件。
|
133
153
|
|
134
|
-
|
135
|
-
- **文档更新**:2025年6月
|
136
|
-
- **最新版本**:v2.1.4
|
137
|
-
- **问题追踪**:https://github.com/bagabaga007/ion_CSP/issues
|
154
|
+
本项目采用MIT许可证,详见LICENSE文件。
|
138
155
|
|
139
156
|
---
|
140
157
|
|
141
|
-
# Crystal Structure Design Software V2.1
|
142
|
-
|
143
158
|
## Project Overview
|
159
|
+
|
144
160
|
This software enables efficient crystal structure design from molecular/ion configurations by integrating empirical formulas, tuned machine learning potentials, stepwise first-principles optimization, and molecular/ion recognition techniques. The modular architecture ensures extensibility and maintainability while maintaining prediction accuracy.
|
145
161
|
|
146
162
|
## Key Features
|
163
|
+
|
147
164
|
### Core Functionalities
|
165
|
+
|
148
166
|
- **Dual-Module Workflow**
|
149
167
|
- **EE Module**: Empirical evaluation-based ion combination generation
|
150
168
|
- **CSP Module**: Ion crystal structure prediction and optimization
|
@@ -158,13 +176,16 @@ This software enables efficient crystal structure design from molecular/ion conf
|
|
158
176
|
- Symlink resolution for actual log paths
|
159
177
|
|
160
178
|
### Technical Specifications
|
179
|
+
|
161
180
|
- Cross-platform support (Linux/Docker)
|
162
181
|
- Object-oriented architecture with Python 3.11+
|
163
182
|
- Integrated process management via psutil
|
164
183
|
- Structured logging system
|
165
184
|
|
166
185
|
## Installation
|
186
|
+
|
167
187
|
### Prerequisites
|
188
|
+
|
168
189
|
| Component | Min Version |
|
169
190
|
|-------------|-------------|
|
170
191
|
| Python | 3.11 |
|
@@ -181,6 +202,7 @@ This software enables efficient crystal structure design from molecular/ion conf
|
|
181
202
|
| rdkit | 2024.03.3|
|
182
203
|
|
183
204
|
### Installation Steps
|
205
|
+
|
184
206
|
```bash
|
185
207
|
# Create virtual environment
|
186
208
|
python -m venv venv
|
@@ -193,29 +215,39 @@ pip install -e .
|
|
193
215
|
```
|
194
216
|
|
195
217
|
## Quick Start
|
218
|
+
|
196
219
|
### Interactive Mode
|
220
|
+
|
197
221
|
```bash
|
198
222
|
ion-csp
|
199
223
|
```
|
224
|
+
|
200
225
|
Launches CLI interface with:
|
226
|
+
|
201
227
|
- Module selection
|
202
228
|
- Log management
|
203
229
|
- Process control
|
204
230
|
|
205
231
|
### Script Execution
|
232
|
+
|
206
233
|
#### EE Module Example
|
234
|
+
|
207
235
|
```bash
|
208
236
|
./scripts/main_EE.sh examples/example_1
|
209
237
|
```
|
238
|
+
|
210
239
|
Generates ion combinations from SMILES tables
|
211
240
|
|
212
241
|
#### CSP Module Example
|
242
|
+
|
213
243
|
```bash
|
214
244
|
./scripts/main_CSP.sh examples/example_2
|
215
245
|
```
|
246
|
+
|
216
247
|
Optimizes crystal structures from ion combinations
|
217
248
|
|
218
249
|
## Technical Architecture
|
250
|
+
|
219
251
|
```mermaid
|
220
252
|
graph TD
|
221
253
|
A[User Interface] --> B[Task Manager]
|
@@ -224,21 +256,18 @@ graph TD
|
|
224
256
|
B --> E[Log System]
|
225
257
|
B --> F[Task Scheduler]
|
226
258
|
C --> G[Empirical Evaluation Engine]
|
227
|
-
D --> H[Crystal Prediction Engine]
|
259
|
+
D --> H[Ionic Crystal Structure Prediction Engine]
|
228
260
|
E --> I[Structured Logs]
|
229
261
|
F --> J[Process Termination]
|
230
262
|
```
|
231
263
|
|
232
264
|
## Contribution Guide
|
265
|
+
|
233
266
|
1. Fork repository and create feature branch
|
234
267
|
2. Write unit tests for new features
|
235
268
|
3. Submit PR with issue reference
|
236
269
|
4. Follow PEP8 coding standards
|
237
270
|
|
238
271
|
## License
|
239
|
-
MIT License, see LICENSE file.
|
240
272
|
|
241
|
-
|
242
|
-
- Documentation last updated: June 2025
|
243
|
-
- Latest version: v2.1.4
|
244
|
-
- Issue tracker: https://github.com/bagabaga007/ion_CSP/issues
|
273
|
+
MIT License, see LICENSE file.
|
@@ -1,10 +1,13 @@
|
|
1
|
-
#
|
1
|
+
# 基于分子/离子构型的晶体结构设计软件 V2.1
|
2
2
|
|
3
3
|
## 项目概述
|
4
|
+
|
4
5
|
基于分子/离子构型的晶体结构设计软件通过结合经验公式、机器学习势函数微调、第一性原理分步优化和分子/离子识别技术,实现了从分子/离子构型出发的高效晶体结构设计。该软件采用模块化设计,支持全流程自动化材料筛选,在保证预测精度的同时显著提升计算效率。
|
5
6
|
|
6
7
|
## 功能特性
|
8
|
+
|
7
9
|
### 核心功能
|
10
|
+
|
8
11
|
- **双模块工作流**
|
9
12
|
- **EE模块**:基于经验评估的离子组合生成
|
10
13
|
- **CSP模块**:基于离子晶体结构预测的优化筛选
|
@@ -18,13 +21,16 @@
|
|
18
21
|
- 软链接解析显示实际路径
|
19
22
|
|
20
23
|
### 技术特性
|
24
|
+
|
21
25
|
- 跨平台支持(Linux/Docker)
|
22
26
|
- 基于Python 3.11+的面向对象架构
|
23
27
|
- 集成psutil进程管理
|
24
28
|
- 结构化日志记录系统
|
25
29
|
|
26
30
|
## 安装指南
|
31
|
+
|
27
32
|
### 环境要求
|
33
|
+
|
28
34
|
| 组件 | 最低版本 |
|
29
35
|
|-------------|----------|
|
30
36
|
| Python | 3.11 |
|
@@ -41,10 +47,13 @@
|
|
41
47
|
| rdkit | 2024.03.3|
|
42
48
|
|
43
49
|
### 安装步骤
|
50
|
+
|
44
51
|
```bash
|
45
52
|
pip install ion-csp
|
46
53
|
```
|
54
|
+
|
47
55
|
或
|
56
|
+
|
48
57
|
```bash
|
49
58
|
# 创建虚拟环境
|
50
59
|
python -m venv venv
|
@@ -57,29 +66,39 @@ pip install -e .
|
|
57
66
|
```
|
58
67
|
|
59
68
|
## 快速入门
|
69
|
+
|
60
70
|
### 交互模式
|
71
|
+
|
61
72
|
```bash
|
62
73
|
ion-csp
|
63
74
|
```
|
75
|
+
|
64
76
|
启动交互式命令行界面,支持以下操作:
|
77
|
+
|
65
78
|
- 模块选择
|
66
79
|
- 日志查看
|
67
80
|
- 进程管理
|
68
81
|
|
69
82
|
### 脚本调用
|
83
|
+
|
70
84
|
#### EE模块示例
|
85
|
+
|
71
86
|
```bash
|
72
87
|
./scripts/main_EE.sh examples/example_1
|
73
88
|
```
|
89
|
+
|
74
90
|
从SMILES表格生成离子组合
|
75
91
|
|
76
92
|
#### CSP模块示例
|
93
|
+
|
77
94
|
```bash
|
78
95
|
./scripts/main_CSP.sh examples/example_2
|
79
96
|
```
|
97
|
+
|
80
98
|
从离子组合生成并优化晶体结构
|
81
99
|
|
82
100
|
## 技术架构
|
101
|
+
|
83
102
|
```mermaid
|
84
103
|
graph TD
|
85
104
|
A[用户界面] --> B[任务管理器]
|
@@ -88,34 +107,32 @@ graph TD
|
|
88
107
|
B --> E[日志系统]
|
89
108
|
B --> F[任务调度]
|
90
109
|
C --> G[经验评估引擎]
|
91
|
-
D --> H[
|
110
|
+
D --> H[离子晶体结构预测引擎]
|
92
111
|
E --> I[结构化日志]
|
93
112
|
F --> J[进程终止]
|
94
113
|
```
|
95
114
|
|
96
115
|
## 贡献指南
|
116
|
+
|
97
117
|
1. Fork仓库并创建特性分支
|
98
118
|
2. 编写单元测试覆盖新功能
|
99
119
|
3. 提交Pull Request时注明关联Issue
|
100
120
|
4. 遵循PEP8代码规范
|
101
121
|
|
102
122
|
## 许可证
|
103
|
-
本项目采用MIT许可证,详见LICENSE文件。
|
104
123
|
|
105
|
-
|
106
|
-
- **文档更新**:2025年6月
|
107
|
-
- **最新版本**:v2.1.4
|
108
|
-
- **问题追踪**:https://github.com/bagabaga007/ion_CSP/issues
|
124
|
+
本项目采用MIT许可证,详见LICENSE文件。
|
109
125
|
|
110
126
|
---
|
111
127
|
|
112
|
-
# Crystal Structure Design Software V2.1
|
113
|
-
|
114
128
|
## Project Overview
|
129
|
+
|
115
130
|
This software enables efficient crystal structure design from molecular/ion configurations by integrating empirical formulas, tuned machine learning potentials, stepwise first-principles optimization, and molecular/ion recognition techniques. The modular architecture ensures extensibility and maintainability while maintaining prediction accuracy.
|
116
131
|
|
117
132
|
## Key Features
|
133
|
+
|
118
134
|
### Core Functionalities
|
135
|
+
|
119
136
|
- **Dual-Module Workflow**
|
120
137
|
- **EE Module**: Empirical evaluation-based ion combination generation
|
121
138
|
- **CSP Module**: Ion crystal structure prediction and optimization
|
@@ -129,13 +146,16 @@ This software enables efficient crystal structure design from molecular/ion conf
|
|
129
146
|
- Symlink resolution for actual log paths
|
130
147
|
|
131
148
|
### Technical Specifications
|
149
|
+
|
132
150
|
- Cross-platform support (Linux/Docker)
|
133
151
|
- Object-oriented architecture with Python 3.11+
|
134
152
|
- Integrated process management via psutil
|
135
153
|
- Structured logging system
|
136
154
|
|
137
155
|
## Installation
|
156
|
+
|
138
157
|
### Prerequisites
|
158
|
+
|
139
159
|
| Component | Min Version |
|
140
160
|
|-------------|-------------|
|
141
161
|
| Python | 3.11 |
|
@@ -152,6 +172,7 @@ This software enables efficient crystal structure design from molecular/ion conf
|
|
152
172
|
| rdkit | 2024.03.3|
|
153
173
|
|
154
174
|
### Installation Steps
|
175
|
+
|
155
176
|
```bash
|
156
177
|
# Create virtual environment
|
157
178
|
python -m venv venv
|
@@ -164,29 +185,39 @@ pip install -e .
|
|
164
185
|
```
|
165
186
|
|
166
187
|
## Quick Start
|
188
|
+
|
167
189
|
### Interactive Mode
|
190
|
+
|
168
191
|
```bash
|
169
192
|
ion-csp
|
170
193
|
```
|
194
|
+
|
171
195
|
Launches CLI interface with:
|
196
|
+
|
172
197
|
- Module selection
|
173
198
|
- Log management
|
174
199
|
- Process control
|
175
200
|
|
176
201
|
### Script Execution
|
202
|
+
|
177
203
|
#### EE Module Example
|
204
|
+
|
178
205
|
```bash
|
179
206
|
./scripts/main_EE.sh examples/example_1
|
180
207
|
```
|
208
|
+
|
181
209
|
Generates ion combinations from SMILES tables
|
182
210
|
|
183
211
|
#### CSP Module Example
|
212
|
+
|
184
213
|
```bash
|
185
214
|
./scripts/main_CSP.sh examples/example_2
|
186
215
|
```
|
216
|
+
|
187
217
|
Optimizes crystal structures from ion combinations
|
188
218
|
|
189
219
|
## Technical Architecture
|
220
|
+
|
190
221
|
```mermaid
|
191
222
|
graph TD
|
192
223
|
A[User Interface] --> B[Task Manager]
|
@@ -195,21 +226,18 @@ graph TD
|
|
195
226
|
B --> E[Log System]
|
196
227
|
B --> F[Task Scheduler]
|
197
228
|
C --> G[Empirical Evaluation Engine]
|
198
|
-
D --> H[Crystal Prediction Engine]
|
229
|
+
D --> H[Ionic Crystal Structure Prediction Engine]
|
199
230
|
E --> I[Structured Logs]
|
200
231
|
F --> J[Process Termination]
|
201
232
|
```
|
202
233
|
|
203
234
|
## Contribution Guide
|
235
|
+
|
204
236
|
1. Fork repository and create feature branch
|
205
237
|
2. Write unit tests for new features
|
206
238
|
3. Submit PR with issue reference
|
207
239
|
4. Follow PEP8 coding standards
|
208
240
|
|
209
241
|
## License
|
210
|
-
MIT License, see LICENSE file.
|
211
242
|
|
212
|
-
|
213
|
-
- Documentation last updated: June 2025
|
214
|
-
- Latest version: v2.1.4
|
215
|
-
- Issue tracker: https://github.com/bagabaga007/ion_CSP/issues
|
243
|
+
MIT License, see LICENSE file.
|
@@ -5,8 +5,8 @@ convert_SMILES:
|
|
5
5
|
group_screen: '[N+](=O)[O-]' # 对于官能团SMILES码的筛选
|
6
6
|
group_screen_invert: False # 对官能团的反选与否,默认为否
|
7
7
|
group_name: 'nitro' # 自定义官能团的名字
|
8
|
-
machine: '/workplace/yz/
|
9
|
-
resources: '/workplace/yz/
|
8
|
+
machine: '/workplace/yz/server_config/JLU_184/JLU_184_machine.yaml' # 进行Gaussian优化计算的机器参数
|
9
|
+
resources: '/workplace/yz/server_config/JLU_184/JLU_184_resources.yaml' # 进行Gaussian优化计算的资源参数
|
10
10
|
nodes: 2 # 占用CPU节点数
|
11
11
|
|
12
12
|
empirical_estimate:
|
@@ -0,0 +1,52 @@
|
|
1
|
+
%chk=ACEGUL.chk
|
2
|
+
#P B3LYP/6-31G*
|
3
|
+
|
4
|
+
Generated by Multiwfn
|
5
|
+
|
6
|
+
2 1
|
7
|
+
N -8.85445800 1.16769800 -0.82613100
|
8
|
+
C -7.51188600 0.79604300 -1.39674800
|
9
|
+
C -6.64062000 0.51301100 -0.14343300
|
10
|
+
O -7.17789900 0.66140600 0.96160300
|
11
|
+
N -5.38721700 0.13316700 -0.35345900
|
12
|
+
C -4.46205400 -0.20831200 0.71651500
|
13
|
+
C -3.20392200 -0.77263500 0.02766800
|
14
|
+
O -3.12529600 -0.75732700 -1.19870700
|
15
|
+
N -2.24661000 -1.24796200 0.85659800
|
16
|
+
C -1.06313000 -1.97387400 0.37835200
|
17
|
+
C 0.26454300 -1.39546100 0.88306300
|
18
|
+
C 0.60957700 -0.02832200 0.27563600
|
19
|
+
N 1.91503200 0.47502200 0.71356300
|
20
|
+
C 3.06604500 0.08505400 0.12656900
|
21
|
+
O 3.12763100 -0.70786400 -0.81177900
|
22
|
+
C 4.35771500 0.70661500 0.69082000
|
23
|
+
N 5.44682100 0.15431500 -0.10026000
|
24
|
+
C 6.72205500 0.46195500 0.09443400
|
25
|
+
O 7.15763400 1.23824800 0.95444000
|
26
|
+
C 7.76176800 -0.21253700 -0.84052000
|
27
|
+
N 9.08126400 0.33625100 -0.36731300
|
28
|
+
H -8.66790300 1.10940100 0.22378300
|
29
|
+
H -9.60162300 0.51452400 -1.08076500
|
30
|
+
H -9.15892900 2.11356800 -1.07514700
|
31
|
+
H -7.61516300 -0.08204000 -2.03682300
|
32
|
+
H -7.12388500 1.62710300 -1.98863200
|
33
|
+
H -4.98249600 -0.00586500 -1.28265500
|
34
|
+
H -4.91435800 -0.94591800 1.38898000
|
35
|
+
H -4.21571600 0.67815000 1.31357400
|
36
|
+
H -2.45176400 -1.29254900 1.84769600
|
37
|
+
H -1.14662200 -3.02050700 0.69318000
|
38
|
+
H -1.10966200 -1.95378900 -0.71279900
|
39
|
+
H 0.25647500 -1.32898800 1.97961800
|
40
|
+
H 1.05598800 -2.10413800 0.61469800
|
41
|
+
H 0.63528600 -0.10183900 -0.81527000
|
42
|
+
H -0.13821400 0.72385000 0.54321900
|
43
|
+
H 1.95400500 1.10655900 1.50281100
|
44
|
+
H 4.48671000 0.45591700 1.75038000
|
45
|
+
H 4.33784700 1.79954800 0.60795100
|
46
|
+
H 5.11993800 -0.49151000 -0.82334900
|
47
|
+
H 7.60892000 0.05326200 -1.88810800
|
48
|
+
H 7.76108500 -1.29970500 -0.74300200
|
49
|
+
H 8.77579500 0.97687800 0.43098100
|
50
|
+
H 9.57746300 0.88065500 -1.07929300
|
51
|
+
H 9.71982600 -0.38170200 -0.01193900
|
52
|
+
|