We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 534c9b9 commit 6d7fe8dCopy full SHA for 6d7fe8d
1 file changed
arc/job/adapters/xtb_adapter.py
@@ -218,7 +218,9 @@ def write_input_file(self) -> None:
218
directives, block = '', ''
219
uhf = self.species[0].number_of_radicals or self.multiplicity - 1
220
221
- if self.job_type in ['opt', 'conf_opt', 'scan']:
+ if self.job_type in ['opt', 'conf_opt', 'scan'] \
222
+ or (self.job_type == 'directed_scan' and self.directed_scan_type is not None
223
+ and 'opt' in self.directed_scan_type):
224
directives += ' --opt'
225
directives += self.add_accuracy()
226
if self.constraints and self.job_type != 'scan':
0 commit comments