Oregonator:
Filter:
sc3-plugins/Classes (extension) | UGens > Generators > Chaotic

Oregonator
ExtensionExtension

Chemical reaction modelling Oscillator

//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 Oregonator equations (http://www.scholarpedia.org/article/Oregonator).

x' = epsilon* (q*y - x*y + x*(1-x) ) y' = mu* (-q*y -x*y +z) z' = x-y

All inputs can have .kr rate UGens plugged in.

The Oregonator can blow up, treat with caution.

Class Methods

.ar

Arguments:

reset

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

rate

update rate for a sample step

epsilon

equation constant

mu

equation constant

q

equation constant

initx

reset value for x

inity

reset value for y

initz

reset value for z

Examples