#9 - The Chen–Lee Attractor
Published on
The chaotic Chen–Lee system was developed with a formalism based on the Euler equations for the motion of a rigid body. It was proved that this system is the governing set of equations for gyro motion with feedback control. Recently, studies were conducted to explore the dynamic behavior of this system, including fractional order behavior, the generation of hyperchaos and perturbation analysis, control and anti-control of chaos, synchronization, etc.#1
The algorithm
chen-lee.js
const alpha = 5;
const beta = -10;
const delta = -0.38;
const next = (x,y,z) => {
const dx = alpha * x - y * z;
const dy = beta * y + x * z;
const dz = delta * z + (x * y) / 3;
return {dx,dy,dz};
};
References
- Alternative implementation of the chaotic Chen–Lee system
- Parametric study of the fractional-order Chen–Lee system
- Controlling chaos and chaotification in the Chen–Lee system by multiple time delays
- Chaos Control and Projective Synchronization of a Chaotic Chen-Lee System