A model of a column of air in an acoustic tube (either cylindrical or conical) which is sealed at both ends.
A 'closed-closed-tube can be created using the following Lisp syntax (the default values are shown for each of the physical parameters):
(make-object 'closed-closed-tube
(modes 20)
(length 1)
(air-elasticity .00000721)
(air-density 1.2)
(radius0 .01)
(radius1 .01)
(freq-loss 1)
(const-loss 1))
The arguments for the physical parameters can be either numerical values or Modalys controllers (either dynamic or constant). If a given parameter is not supplied when using the Lisp syntax, the default parameter value will be used.
An acoustic tube can be accessed only in its longitudinal direction:
(make-access my-tube my-controller 'long)
This makes a longitudinal access on my-tube at a point along its length specified by my-controller. The value for my-controller must be between zero and one.
The physical parameters can optionally be controllers instead of numerical values. Therefore, it is possible to modify the physical characteristics of an object, including its pitch, during synthesis. The following example creates a tube which varies in length from 1 meter to 50 cm in 2 seconds:
(setq my-ctrl (make-controller 'envelope 1 '((0 1.0) (2 0.5)) ))
(make-object 'closed-closed-tube (length my-ctrl))
An acoustic tube can be tuned to a specific pitch, using the (set-pitch ...) function, by adjusting just one physical parameter:
For example:
(setq my-tube (make-object 'closed-closed-tube))
(set-pitch my-tube 'length 440)
You could also use a controller to re-adjust the pitch dynamically, however this is extremely costly in terms of CPU usage, since the entire modal object must be re-computed for every sample. The following example makes a glissando from 220Hz to 440Hz over 2 seconds:
(setq my-tube (make-object 'closed-closed-tube))
(set-pitch my-tube 'length (make-controller 'envelope 1 '((0 220.) (2 440.)) ))
Because of the intense amount of calculation required to compute an object based on a given pitch, hybrid objects can be used as a far more efficient way of making a continuous pitch change (glissando).
When using Modalys in real-time contexts, you can use messages to change the pitch of an object, instead of input signal controllers.