Brusselator:
Filter:
Classes (extension) | UGens > Generators > Chaotic

Brusselator : MultiOutUGen : UGen : AbstractFunction : Object
ExtensionExtension

Prigogine oscillator
Source: SLUGens.sc

//SLUGens released under the GNU GPL as extensions for SuperCollider 3, by Nick Collins, http://composerprogrammer.com/index.html 

Description

Euler ODE solver implementation of the Brusselator equations (http://en.wikipedia.org/wiki/Brusselator).

x' = x^2*y - (mu+1)*x + gamma

y' = -x^2*y + mu*x

All inputs can have .kr rate UGens plugged in.

Nonlinear oscillators can blow up, treat with caution. This one is relatively stable however, converging to a fixed point, or a limit cycle, in the upper positive quadrant. for some reasonable values. Just be careful if mu gets much bigger than gamma (though making it larger is necessary to get some chaotic oscillation behaviour); you can retrigger to get back to normal, and keep the rate lower to avoid Euler integration blow-ups. You may just need to scale and push down around zero to avoid a DC offset. Fixed point is at (x,y) = (gamma, mu/gamma)

Class Methods

Brusselator.ar(reset: 0, rate: 0.01, mu: 1.0, gamma: 1.0, initx: 0.5, inity: 0.5, mul: 1.0, add: 0.0)

Arguments:

reset

If > 0.0, restart with new initial conditions sampled from initx, inity

rate

update rate for a sample step

mu

equation constant. Set mu > (gamma**2 + 1.0) for the more fun limit cycle regions

gamma

equation constant

initx

reset value for x

inity

reset value for y

Inherited class methods

Instance Methods

Inherited instance methods

Examples