#9 - The Chen–Lee Attractor

img of #9 - The Chen–Lee Attractor

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

Fork