-
Notifications
You must be signed in to change notification settings - Fork 24
CREST Adapter #807
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
CREST Adapter #807
Changes from 9 commits
c7e9c0a
c727294
e265cdd
432e594
5d1612d
8891252
146a145
abd9201
87f3c51
0baa098
cab5b28
f8d102b
24ac9db
9e7cab6
96c70ce
1b2a9cb
1b20560
a18828f
42b0798
63207c4
5c7dc77
c46792c
9840d33
15503d9
de8e67b
6ae8b8c
00b5e2f
a9ac64f
c26d5b2
7986864
b995e05
5e67ea4
3be97bf
c5b659f
a985a3c
b3b54ec
1267ea5
52c558d
9d86a9a
86d8f12
456bca8
41f0454
b948f75
7a4c61a
02cddd7
21f1880
3f21891
591b492
7425633
254a29f
78fc445
7261198
938c49b
801498b
1e71353
94aa7d5
f3bc145
dd796ed
abeabd2
a4cf6fb
994d6c4
701f986
58b8fd5
86b8044
d7258d3
a7e9f63
5646c5b
2dbae7a
eb83cc8
b8c6644
9e1b3fa
ef121b6
885fa2f
1a59773
8c68b90
b40f76e
c6b87c4
87ce966
9182a1a
0149310
3e8a7e0
d7a2916
38a7e0f
4febdd8
2ac4488
3ef6716
2ef5e15
d2d75cb
47e2b1b
2615bb6
dc2d4c0
5514eed
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| cdef double pi, Na, kB, R, h, hbar, c, e, m_e, m_p, m_n, amu, a0, E_h, F, E_h_kJmol, bohr_to_angstrom | ||
| cdef double pi, Na, kB, R, h, hbar, c, e, m_e, m_p, m_n, amu, a0, E_h, F, E_h_kJmol, bohr_to_angstrom, angstrom_to_bohr |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -41,7 +41,7 @@ | |
| 'Cyclic_Ether_Formation': ['kinbot'], | ||
| 'Cyclopentadiene_scission': ['gcn', 'xtb_gsm'], | ||
| 'Diels_alder_addition': ['kinbot'], | ||
| 'H_Abstraction': ['heuristics', 'autotst'], | ||
| 'H_Abstraction': ['heuristics', 'autotst', 'crest'], | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd like to see the implementation a bit differently: |
||
| 'carbonyl_based_hydrolysis': ['heuristics'], | ||
| 'ether_hydrolysis': ['heuristics'], | ||
| 'nitrile_hydrolysis': ['heuristics'], | ||
|
|
@@ -77,7 +77,8 @@ | |
| adapters_that_do_not_require_a_level_arg = ['xtb', 'torchani'] | ||
|
|
||
| # Default is "queue", "pipe" will be called whenever needed. So just list 'incore'. | ||
| default_incore_adapters = ['autotst', 'gcn', 'heuristics', 'kinbot', 'psi4', 'xtb', 'xtb_gsm', 'torchani', 'openbabel'] | ||
| default_incore_adapters = ['autotst', 'crest', 'gcn', 'heuristics', 'kinbot', 'psi4', 'xtb', 'xtb_gsm', 'torchani', | ||
| 'openbabel'] | ||
|
|
||
|
|
||
| def _initialize_adapter(obj: 'JobAdapter', | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,7 @@ | ||
| import arc.job.adapters.ts.autotst_ts | ||
| import arc.job.adapters.ts.crest | ||
| import arc.job.adapters.ts.gcn_ts | ||
| import arc.job.adapters.ts.heuristics | ||
| import arc.job.adapters.ts.kinbot_ts | ||
| import arc.job.adapters.ts.seed_hub | ||
| import arc.job.adapters.ts.xtb_gsm |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
did we add install-crest into install-all as well?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see comment above