Chua¶
Systems / ODEs / Chaotic attractors
The double-scroll attractor of Chua's circuit — the canonical electronic chaos generator.
Definition¶
\[
\begin{aligned}
\dot{y_{0}} &= \alpha \left(- m_{1} y_{0} - y_{0} + y_{1} - 0.5 \left(m_{0} - m_{1}\right) \left(- \left|{y_{0} - 1}\right| + \left|{y_{0} + 1}\right|\right)\right) \\
\dot{y_{1}} &= y_{0} - y_{1} + y_{2} \\
\dot{y_{2}} &= - \beta y_{1}
\end{aligned}
\]
Parameters¶
| Symbol | Default | Role |
|---|---|---|
alpha |
15.6 |
dimensionless circuit parameter (capacitor/inductor ratio) |
beta |
28 |
dimensionless circuit parameter (capacitor/inductor ratio) |
m0 |
-1.14286 |
inner slope of the piecewise-linear Chua diode |
m1 |
-0.71429 |
outer slope of the piecewise-linear Chua diode |
Properties¶
Lyapunov spectrum
≥ 1 positive exponent (literature — Matsumoto, Chua & Komuro (1985), IEEE Trans. Circuits Syst. 32, 798-818)
Kaplan–Yorke dimension
TODO — requires a numeric Lyapunov spectrum
Divergence ∇·f
n/a — non-smooth right-hand side — divergence is piecewise (defined almost everywhere)
Equilibria
3 equilibria
0 stable · 3 unstable
0 stable · 3 unstable
Define it in TSDynamics¶
import tsdynamics as ts
sys = ts.systems.Chua()
traj = sys.integrate(final_time=100.0, dt=0.01)
exps = sys.lyapunov_spectrum()
ts.kaplan_yorke_dimension(exps)
Reference¶
Matsumoto (1984), IEEE Trans. Circuits Syst. 31, 1055-1058