Skip to content

Rossler

Systems · Continuous · Chaotic attractors

Dimension: 3 · Reference: Rössler (1976), Phys. Lett. A 57, 397-398

Equations

\[ \begin{aligned} \dot{x} &= - y - z \\ \dot{y} &= a y + x \\ \dot{z} &= b - c z + x z \end{aligned} \]

Parameters

parameter default
a 0.2
b 0.2
c 5.7

Variables: x, y, z

Rossler attractor

Usage

import tsdynamics as ts

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

Back to Chaotic attractors