//SLUGens released under the GNU GPL as extensions for SuperCollider 3, by Nick Collins, http://composerprogrammer.com/index.html
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.
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 |