Skip to content

Commit

Permalink
Always print NATURAL ORBITALS in Molpro
Browse files Browse the repository at this point in the history
  • Loading branch information
alongd committed Oct 3, 2024
1 parent 410e912 commit 62da0bb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions arc/job/adapters/molpro.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,6 @@ def write_input_file(self) -> None:
'keywords',
'memory',
'method',
'orbitals',
'restricted',
]:
input_dict[key] = ''
Expand All @@ -226,6 +225,7 @@ def write_input_file(self) -> None:
input_dict['shift'] = self.args['trsh']['shift'] if 'shift' in self.args['trsh'].keys() else ''
input_dict['spin'] = self.multiplicity - 1
input_dict['xyz'] = xyz_to_str(self.xyz)
input_dict['orbitals'] = '\ngprint,orbitals;\n'

if not is_restricted(self):
input_dict['restricted'] = 'u'
Expand All @@ -250,7 +250,6 @@ def write_input_file(self) -> None:
keywords.append('ORBITAL,IGNORE_ERROR')

if 'mrci' in self.level.method or 'rs2' in self.level.method:
input_dict['orbitals'] = '\ngprint,orbitals;\n'
input_dict['restricted'] = ''
if '_' in self.level.method:
methods = self.level.method.split('_')
Expand Down

0 comments on commit 62da0bb

Please sign in to comment.