Skip to content

Robinson

Systems · Continuous · Exotic systems

Dimension: 3

Equations

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

Parameters

parameter default
a -0.42
b -1.1
c 0.5
d 0.3
v -1.0

Robinson attractor

Usage

import tsdynamics as ts

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

Back to Exotic systems