Skip to content

Commit

Permalink
delete some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
litman90 committed Nov 12, 2024
1 parent cb04698 commit 1880d0a
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions ipi/pes/doublewell_with_friction.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
""" Harmonic potential """

import sys

try:
from .doublewell import DoubleWell_driver
except:
Expand Down Expand Up @@ -55,7 +53,7 @@ def __init__(
**kwargs
):

# try:
try:
w_b = w_b * invcm2au
v0 = v0 * invcm2au
self.delta = delta * A2au
Expand All @@ -67,10 +65,10 @@ def __init__(
self.A = -0.5 * m * (w_b) ** 2
self.B = ((m**2) * (w_b) ** 4) / (16 * v0)

# except:
# sys.exit(self.__doc__)
except:
sys.exit(self.__doc__)

# super().__init__(*args, **kwargs)
super().__init__(*args, **kwargs)

def check_dimensions(self, pos):
"""Functions that checks dimensions of the received position"""
Expand Down

0 comments on commit 1880d0a

Please sign in to comment.