Skip to content

Commit

Permalink
Added the symmetry method to ADFJob
Browse files Browse the repository at this point in the history
  • Loading branch information
YHordijk committed Feb 8, 2024
1 parent 72b47fe commit 377a385
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/tcutility/job/adf.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,15 @@ def solvent(self, name: str = None, eps: float = None, rad: float = None, use_kl
}
self.settings.input.adf.solvation.radii = radii

def symmetry(self, group: str):
'''
Specify the symmetry group to be used by ADF.
Args:
group: the symmetry group to be used.
'''
self.settings.input.adf.Symmetry = group


class ADFFragmentJob(ADFJob):
def __init__(self, *args, **kwargs):
Expand Down

0 comments on commit 377a385

Please sign in to comment.