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

WeaklyNonlinear2 : UGen : AbstractFunction : Object
ExtensionExtension

Weakly Nonlinear Oscillator
Source: SLUGens.sc

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

Description

Naive Euler ODE solver implementation of the Weakly Nonlinear Oscillator with external perturbation (see Strogatz, Steven H. (1994) Nonlinear Dynamics and Chaos. Addison-Wesley, Reading, MA. pp215 or Pikovsky, Arkady., Rosenblum, Michael., and Kurths, Jurgen. (2001). Synchronization. CUP: Cambridge. pp 189).

D2x +w0*w0*x = alpha*(x^xexponent*+beta)*y^yexponent + input

y= Dx

The nonlinear term is not calculated if alpha is zero. Otherwise it is generated at additional CPU cost.

All inputs can have .kr rate UGens plugged in.

Class Methods

WeaklyNonlinear2.ar(input, reset: 0, ratex: 1, ratey: 1, freq: 440, initx: 0, inity: 0, alpha: 0, xexponent: 0, beta: 0, yexponent: 0, mul: 1.0, add: 0.0)

Arguments:

input

audio rate input, acts as external force

reset

restart

ratex

update rate for x

ratey

update rate for y

freq

The equation constant w0 (linear oscillator's frequency when alone * 2pi)

initx

reset value for u

inity

reset value for w

Inherited class methods

Instance Methods

Inherited instance methods

Examples