Skip to content

Commit

Permalink
Merge branch 'master' into dysts_pysindy
Browse files Browse the repository at this point in the history
  • Loading branch information
Alan Kaptanoglu authored and Alan Kaptanoglu committed Nov 26, 2022
2 parents 7641bfd + 7a914d0 commit e7a087d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dysts/flows.py
Original file line number Diff line number Diff line change
Expand Up @@ -1313,10 +1313,10 @@ def _postprocessing(x, y, z):
class HindmarshRose(DynSys):
@staticjit
def _rhs(x, y, z, t, a, b, c, d, s, tx, tz):
xdot = -tx * x + y - a * x ** 3 + b * x ** 2 + z
xdot = -x + 1 / tx * y - a / tx * x ** 3 + b / tx * x ** 2 + 1 / tx * z
ydot = -a * x ** 3 - (d - b) * x ** 2 + z
zdot = -s * x - z + c
return xdot / tx, ydot, zdot / tz
zdot = -s / tz * x - 1 / tz * z + c / tz
return xdot, ydot, zdot


class Colpitts(DynSys):
Expand Down

0 comments on commit e7a087d

Please sign in to comment.