Skip to content

LorenzStenflo

Systems · Continuous · Exotic systems

Dimension: 4

Equations

\[ \begin{aligned} \dot{y_{0}} &= - a y_{0} + a y_{1} + d y_{3} \\ \dot{y_{1}} &= c y_{0} - y_{0} y_{2} - y_{1} \\ \dot{y_{2}} &= - b y_{2} + y_{0} y_{1} \\ \dot{y_{3}} &= - a y_{3} - y_{0} \end{aligned} \]

Parameters

parameter default
a 2
b 0.7
c 26
d 1.5

LorenzStenflo attractor

Usage

import tsdynamics as ts

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

Back to Exotic systems