2 summary:: Lorenz chaotic generator
3 categories:: UGens>Generators>Chaotic
6 A strange attractor discovered by Edward N. Lorenz while studying mathematical models of the atmosphere. The system is composed of three ordinary differential equations:
13 warning:: revise formulae converted to c like code (x', y', z'!!!) ::
15 The time step amount code::h:: determines the rate at which the ODE is evaluated. Higher values will increase the rate, but cause more instability. A safe choice is the default amount of 0.05.
20 Iteration frequency in Hertz
39 { LorenzL.ar(MouseX.kr(20, SampleRate.ir)) * 0.3 }.play(s);
43 // randomly modulate params
47 LFNoise0.kr(1, 2, 10),
48 LFNoise0.kr(1, 20, 38),
49 LFNoise0.kr(1, 1.5, 2)
55 // as a frequency control
56 { SinOsc.ar(Lag.ar(LorenzL.ar(MouseX.kr(1, 200)),3e-3)*800+900)*0.4 }.play(s);