YuWang2¶
Systems / ODEs / Coupled systems
A variant of the Yu–Wang flow with the exponential replaced by a cosh(x*y) term, again producing a compound chaotic attractor.
Definition¶
\[
\begin{aligned}
\dot{y_{0}} &= a \left(- y_{0} + y_{1}\right) \\
\dot{y_{1}} &= b y_{0} - c y_{0} y_{2} \\
\dot{y_{2}} &= - d y_{2} + \cosh{\left(y_{0} y_{1} \right)}
\end{aligned}
\]
Parameters¶
| Symbol | Default | Role |
|---|---|---|
a |
10 |
x–y channel coupling gain |
b |
30 |
forcing gain of x into y |
c |
2 |
x*z cross-product strength in the y equation |
d |
2.5 |
linear decay rate of the z channel |
Properties¶
Lyapunov spectrum
$+0.5155,\; +0.01133,\; -13.03$
computed at build
computed at build
Kaplan–Yorke dimension
$D_{KY} = 2.04$
Divergence ∇·f
$\nabla\!\cdot f = - a - d$
constant
constant
Equilibria
3 equilibria
0 stable · 3 unstable
0 stable · 3 unstable
Define it in TSDynamics¶
import tsdynamics as ts
sys = ts.systems.YuWang2()
traj = sys.integrate(final_time=100.0, dt=0.01)
exps = sys.lyapunov_spectrum()
ts.kaplan_yorke_dimension(exps)
Reference¶
Yu & Wang (2012), Eng. Technol. Appl. Sci. Res. 2, 209-215