Skip to content

NewtonLiepnik

Systems · Continuous · Exotic systems

Dimension: 3

Equations

\[ \begin{aligned} \dot{y_{0}} &= - a y_{0} + 10 y_{1} y_{2} + y_{1} \\ \dot{y_{1}} &= 5 y_{0} y_{2} - y_{0} - 0.4 y_{1} \\ \dot{y_{2}} &= b y_{2} - 5 y_{0} y_{1} \end{aligned} \]

Parameters

parameter default
a 0.4
b 0.175

NewtonLiepnik attractor

Usage

import tsdynamics as ts

sys = ts.NewtonLiepnik()
traj = sys.integrate(final_time=100.0, dt=0.01)

Back to Exotic systems