Skip to content

Commit

Permalink
Fix calcPath to calc_path in arkane and toluene example.
Browse files Browse the repository at this point in the history
  • Loading branch information
rwest committed Aug 3, 2023
1 parent daf9bc1 commit 4956f72
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions arkane/statmech.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,9 +252,9 @@ def hinderedRotor2D(scandir, pivots1, top1, symmetry1, pivots2, top2, symmetry2,
return [scandir, pivots1, top1, symmetry1, pivots2, top2, symmetry2, symmetry]


def hinderedRotorClassicalND(calcPath, pivots, tops, sigmas, semiclassical):
def hinderedRotorClassicalND(calc_path, pivots, tops, sigmas, semiclassical):
"""Read an N dimensional hindered rotor directive, and return the attributes in a list"""
return [calcPath, pivots, tops, sigmas, semiclassical]
return [calc_path, pivots, tops, sigmas, semiclassical]


class StatMechJob(object):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@

frequencies = Log('TolueneFreq.log')

rotors = [HinderedRotorClassicalND(calcPath='TolueneRot1.log', pivots=[[3,12]], tops=[[12,13,14,15]], sigmas=[6], semiclassical=True)]
rotors = [HinderedRotorClassicalND(calc_path="TolueneRot1.log", pivots=[[3, 12]], tops=[[12, 13, 14, 15]], sigmas=[6], semiclassical=True)]

0 comments on commit 4956f72

Please sign in to comment.