-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from Kinetica-jl/ase_extension
Move KineticaASE.jl into main package
- Loading branch information
Showing
35 changed files
with
4,001 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,7 @@ deps/build.log | |
Manifest.toml | ||
.vscode | ||
.CondaPkg | ||
docs/build | ||
docs/build | ||
|
||
.envrc | ||
shell.nix |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name = "Kinetica" | ||
uuid = "3847ce11-53ec-444b-aa85-3b6606472139" | ||
authors = ["joegilkes <[email protected]>"] | ||
version = "0.5.12" | ||
version = "0.6.0" | ||
|
||
[deps] | ||
BSON = "fbb218c0-5317-5bc6-957e-2ee96dd4b1f0" | ||
|
@@ -13,6 +13,7 @@ Dates = "ade2ca70-3891-5945-98fb-dc099432e06a" | |
DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab" | ||
DiffEqCallbacks = "459566f4-90b8-5000-8ac3-15dfb0a30def" | ||
ExtXYZ = "352459e4-ddd7-4360-8937-99dcb397b478" | ||
Glob = "c27321d9-0574-5035-807b-f59d2c89b15c" | ||
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" | ||
Logging = "56ddb016-857b-54e1-b83d-db4d58db5568" | ||
LoggingExtras = "e6f89c97-d47a-5376-807f-9c37f3926c36" | ||
|
@@ -54,6 +55,7 @@ julia = "1.10" | |
[extras] | ||
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f" | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" | ||
|
||
[targets] | ||
test = ["Test", "SafeTestsets"] | ||
test = ["Test", "SafeTestsets", "Random"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Kinetica.jl API - ASE Interface | ||
|
||
## ASE Calculator Builders | ||
|
||
```@docs | ||
EMTBuilder | ||
NWChemDFTBuilder | ||
FHIAimsBuilder | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# [Kinetica.jl API - ASE Interface](@id api_ase_calculator) | ||
|
||
## Kinetic Calculator | ||
|
||
```@docs | ||
ASENEBCalculator | ||
``` | ||
|
||
### Rate Constant Calculation | ||
|
||
```@docs | ||
Kinetica.get_entropy | ||
Kinetica.get_enthalpy | ||
calculate_entropy_enthalpy | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Kinetica.jl API - ASE Interface | ||
|
||
## Optimisation and Property Calculation | ||
|
||
### Basic Species Properties | ||
|
||
```@docs | ||
Kinetica.get_mult | ||
Kinetica.get_mult! | ||
Kinetica.get_charge | ||
Kinetica.get_charge! | ||
Kinetica.get_formal_charges | ||
Kinetica.get_formal_charges! | ||
Kinetica.get_initial_magmoms | ||
Kinetica.get_initial_magmoms! | ||
Kinetica.correct_magmoms_for_mult! | ||
Kinetica.get_hydrogen_idxs | ||
``` | ||
|
||
### Geometry Optimisation | ||
|
||
```@docs | ||
Kinetica.geomopt! | ||
Kinetica.kabsch_fit! | ||
Kinetica.permute_hydrogens! | ||
``` | ||
|
||
### NEB | ||
|
||
```@docs | ||
Kinetica.get_initial_sys_mult | ||
Kinetica.get_rxn_mult | ||
Kinetica.neb | ||
Kinetica.highest_energy_frame | ||
``` | ||
|
||
### Vibrational Analysis | ||
|
||
```@docs | ||
Kinetica.calc_species_vibrations! | ||
Kinetica.calc_ts_vibrations! | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Kinetica.jl API - ASE Interface | ||
|
||
## Utilities | ||
|
||
### Conversion | ||
|
||
```@docs | ||
frame_to_atoms | ||
atoms_to_frame | ||
Kinetica.imaginary_ve_tol | ||
``` | ||
|
||
### I/O | ||
|
||
```@docs | ||
Kinetica.save_asecalc | ||
Kinetica.load_asecalc | ||
Kinetica.verify_sd | ||
Kinetica.verify_rd | ||
Kinetica.save_optgeom | ||
Kinetica.load_optgeom | ||
Kinetica.save_endpoints | ||
Kinetica.load_endpoints | ||
Kinetica.save_tsdata | ||
Kinetica.load_tsdata | ||
Kinetica.save_vibdata | ||
Kinetica.load_vibdata | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Kinetica.jl API | ||
|
||
## autodE Interface | ||
|
||
### Conformer Searching | ||
|
||
```@docs | ||
Kinetica.autode_conformer_search! | ||
Kinetica.autode_NCI_conformer_search | ||
``` | ||
|
||
### Species Conversion | ||
|
||
```@docs | ||
Kinetica.autode_to_frame | ||
Kinetica.frame_to_autode | ||
``` | ||
|
||
### Utilities | ||
|
||
```@docs | ||
Kinetica.autode_get_graph | ||
Kinetica.autode_is_isomorphic | ||
Kinetica.autode_frame_symmetry | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Oops, something went wrong.