Skip to content

ZhouChen

Systems · Continuous · Coupled systems

Dimension: 3

Equations

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

Parameters

parameter default
a 2.97
b 0.15
c -3.0
d 1
e -8.78

ZhouChen attractor

Usage

import tsdynamics as ts

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

Back to Coupled systems