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
41 { LorenzL.ar(MouseX.kr(20, SampleRate.ir)) * 0.3 }.play(s);
45 // randomly modulate params
49 LFNoise0.kr(1, 2, 10),
50 LFNoise0.kr(1, 20, 38),
51 LFNoise0.kr(1, 1.5, 2)
57 // as a frequency control
58 { SinOsc.ar(Lag.ar(LorenzL.ar(MouseX.kr(1, 200)),3e-3)*800+900)*0.4 }.play(s);