Skip to content

Commit 3737356

Browse files
committed
added orca_neb to settings
1 parent 15b91d2 commit 3737356

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

arc/settings/settings.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,14 @@
8282
'xtb_gsm': 'local',
8383
'torchani': 'local',
8484
'openbabel': 'local',
85+
'orca_neb': 'local',
8586
}
8687

8788
# Electronic structure software ARC may access (use lowercase):
8889
supported_ess = ['cfour', 'gaussian', 'mockter', 'molpro', 'orca', 'qchem', 'terachem', 'onedmin', 'xtb', 'torchani', 'openbabel']
8990

9091
# TS methods to try when appropriate for a reaction (other than user guesses which are always allowed):
91-
ts_adapters = ['heuristics', 'AutoTST', 'GCN', 'xtb_gsm']
92+
ts_adapters = ['heuristics', 'AutoTST', 'GCN', 'xtb_gsm', 'orca_neb']
9293

9394
# List here job types to execute by default
9495
default_job_types = {'conf_opt': True, # defaults to True if not specified
@@ -162,6 +163,7 @@
162163
'molpro': 'input.in',
163164
'onedmin': 'input.in',
164165
'orca': 'input.in',
166+
'orca_neb': 'input.in',
165167
'qchem': 'input.in',
166168
'terachem': 'input.in',
167169
'xtb': 'input.sh',
@@ -174,6 +176,7 @@
174176
'molpro': 'input.out',
175177
'onedmin': 'output.out',
176178
'orca': 'input.log',
179+
'orca_neb': 'input.log',
177180
'qchem': 'output.out',
178181
'terachem': 'output.out',
179182
'torchani': 'output.yml',
@@ -247,6 +250,14 @@
247250
'nnodes': 15,
248251
}
249252

253+
orca_neb_settings = {'keyword': {
254+
'interpolation': 'IDPP',
255+
'nnodes': 15,
256+
'preopt': 'true',
257+
},
258+
'level': 'wb97xd/def2tzvp',
259+
}
260+
250261
valid_chars = "-_[]=.,%s%s" % (string.ascii_letters, string.digits)
251262

252263
# A scan with better resolution (lower number here) takes more time to compute,

0 commit comments

Comments
 (0)