Skip to content

Commit

Permalink
fix tabs/spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshwani committed Feb 19, 2024
1 parent 966a3c0 commit c17f2dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lppls/lppls.py
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ def _is_D_in_range(self, m, w, b, c, D_min):
return False if m <= 0 or w <= 0 else abs((m * b) / (w * c)) > D_min

def get_oscillations(self, w, tc, t1, t2):
dt = np.abs(tc - t2)
dt = np.abs(tc - t2)
return (w / (2.0 * np.pi)) * np.log((tc - t1) / dt)

def get_damping(self, m, w, b, c):
Expand Down

0 comments on commit c17f2dd

Please sign in to comment.