Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshwani committed Feb 19, 2024
1 parent 9168a25 commit b338b30
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 @@ -553,7 +553,7 @@ def _is_D_in_range(self, m, w, b, c, D_min):

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

def get_damping(self, m, w, b, c):
return (m * np.abs(b)) / (w * np.abs(c))
Expand Down

0 comments on commit b338b30

Please sign in to comment.