Skip to content

Commit

Permalink
sp
Browse files Browse the repository at this point in the history
  • Loading branch information
JintaoWu98 committed Oct 12, 2024
1 parent 7d634e1 commit 9babee7
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion arc/job/adapters/cfour.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def write_input_file(self) -> None:
elif self.job_type in ['freq', 'optfreq', 'scan']:
raise NotImplementedError(f'CFour cannot execute frequency computations or scans, '
f'got job type {self.job_type}')
elif self.job_type == 'sp':
elif self.job_type in ['sp', 'conf_sp']:
pass

input_dict['keywords'] = ','.join(key for key in keywords)
Expand Down
2 changes: 1 addition & 1 deletion arc/job/adapters/gaussian.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ def write_input_file(self) -> None:
elif self.job_type == 'optfreq':
input_dict['job_type_2'] = 'freq IOp(7/33=1)'

elif self.job_type == 'sp':
elif self.job_type in ['sp', 'conf_sp']:
input_dict['job_type_1'] = f'integral=(grid=ultrafine, {integral_algorithm})'
if input_dict['trsh']:
input_dict['trsh'] += ' '
Expand Down
2 changes: 1 addition & 1 deletion arc/job/adapters/molpro.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def write_input_file(self) -> None:
elif self.job_type in ['freq', 'optfreq']:
input_dict['job_type_2'] = '{frequencies;\nthermo;\nprint,HESSIAN,thermo;}'

elif self.job_type == 'sp':
elif self.job_type in ['sp', 'conf_sp']:
pass

elif self.job_type == 'scan':
Expand Down
2 changes: 1 addition & 1 deletion arc/job/adapters/orca.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ def write_input_file(self) -> None:
logger.info('Using numerical frequencies calculation in Orca. Note: This job might therefore be '
'time-consuming.')

elif self.job_type == 'sp':
elif self.job_type in ['sp', 'conf_sp']:
input_dict['job_type_1'] = 'sp'

elif self.job_type == 'scan':
Expand Down
2 changes: 1 addition & 1 deletion arc/job/adapters/qchem.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def write_input_file(self) -> None:
elif self.job_type == 'freq':
input_dict['job_type_1'] = 'freq'

elif self.job_type == 'sp':
elif self.job_type in ['sp', 'conf_sp']:
input_dict['job_type_1'] = 'sp'

elif self.job_type == 'orbitals':
Expand Down
2 changes: 1 addition & 1 deletion arc/job/adapters/terachem.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ def write_input_file(self) -> None:
elif self.job_type == 'freq':
input_dict['job_type_1'] = 'frequencies'

elif self.job_type == 'sp':
elif self.job_type in ['sp', 'conf_sp']:
input_dict['job_type_1'] = 'energy'

if self.job_type == 'scan' \
Expand Down
2 changes: 1 addition & 1 deletion arc/job/adapters/xtb_adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def write_input_file(self) -> None:
elif self.job_type in ['fukui']:
directives += ' --vfukui'

elif self.job_type == 'sp':
elif self.job_type in ['sp', 'conf_sp']:
pass

directives += f' --{self.level.method}' if self.level is not None and self.level.method != 'xtb' else ' --gfn2'
Expand Down

0 comments on commit 9babee7

Please sign in to comment.