Hindmarsh–Rose Attractor

Attractor Builder (Blender add-on)
Equations:
ẋ = y - a*x**3 + b*x**2 + I - z  
ẏ = c - d*x**2 - y  
ż = r*(s*(x - x1) - z)
Parameters:
| a = 1.0 | b = 3.0 | c = 1.0 | d = 5.0 | s = 4.0 | r = 0.006 | x1 = -1.6 | I = 3.25 |
Simulation settings:
Initial state: x₀ = 0.0, y₀ = 0.0, z₀ = 0.0  
Method: RK4  
Time step (dt): 0.005  
Number of steps: 50000  
Burn-in phase: 1000  
Scale: 0.5

The Hindmarsh–Rose attractor originates from neurobiology and was developed by J. L. Hindmarsh and R. M. Rose in 1984 as a model describing the electrical activity of a single neuron. The system reproduces transitions between resting states, regular spiking, and rapid series of bursts (bursting) characteristic of cortical neurons. Its trajectories show chaotic switching between these modes, and the model became one of the first examples of applying nonlinear dynamics to biological excitable systems. The original system of equations (Hindmarsh & Rose, 1984, p. 95, Eq. 15) is given as:

\[ \begin{cases} \dot{x} = y - a x^{3} + b x^{2} + I - z,\\[4pt] \dot{y} = c - d x^{2} - y,\\[4pt] \dot{z} = r\big(s(x - x_{1}) - z\big). \end{cases} \]

The model includes three variables: \(x\) — the neuron’s membrane potential, \(y\) — fast ionic processes responsible for spike generation, \(z\) — slow calcium currents modulating the overall dynamics. The parameter values determine the qualitative nature of the neuron’s activity: variation of the input current \(I\) controls the transitions between rest, periodic firing, and chaotic bursting. The authors emphasized that even such a simple three-variable system, through nonlinear coupling between the fast and slow ionic channels, is sufficient to produce complex, biologically realistic patterns of neuronal activity.

Source:

Hindmarsh, J. L., & Rose, R. M. (1984). A model of neuronal bursting using three coupled first order differential equations. Proceedings of the Royal Society of London. Series B. Biological Sciences, 221(1222), 87–102. DOI: https://doi.org/10.1098/rspb.1984.0024