Skip to content
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

Don't run a fine opt in molpro #122

Merged
merged 2 commits into from
Apr 29, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion arc/mainTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def test_from_dict(self):
self.assertEqual(arc1.project, 'testing_from_dict')
self.assertTrue('arc_project_for_testing_delete_after_usage' in arc1.project_directory)
self.assertTrue(arc1.job_types['fine'])
self.assertFalse(arc1.job_types['1d_rotors'])
self.assertTrue(arc1.job_types['1d_rotors'])
self.assertEqual(arc1.sp_level, 'ccsdt-f12/cc-pvqz-f12')
self.assertEqual(arc1.arc_species_list[0].label, 'testing_spc1')
self.assertFalse(arc1.arc_species_list[0].is_ts)
Expand Down
2 changes: 1 addition & 1 deletion arc/scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -984,7 +984,7 @@ def parse_opt_geo(self, label, job):
log = determine_qm_software(fullpath=job.local_path_to_output_file)
coord, number, _ = log.loadGeometry()
self.species_dict[label].final_xyz = get_xyz_string(coord=coord, number=number)
if not job.fine and self.job_types['fine']:
if not job.fine and self.job_types['fine'] and not job.software == 'molpro':
# Run opt again using a finer grid.
xyz = self.species_dict[label].final_xyz
self.species_dict[label].initial_xyz = xyz # save for troubleshooting, since trsh goes by initial
Expand Down