Skip to content

HyperWang

Systems · Continuous · Exotic systems

Dimension: 4

Equations

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

Parameters

parameter default
a 10
b 40
c 2.5
d 10.6
e 4

HyperWang attractor

Usage

import tsdynamics as ts

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

Back to Exotic systems