-
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 all commits
c7e9c0a
c727294
e265cdd
432e594
5d1612d
8891252
146a145
abd9201
87f3c51
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