Recherche Google
ModalysObjects > Object Reference > Tube - closed/closed
page précédentepage suivante

Tube - closed/closed

Description

A model of a column of air in an acoustic tube (either cylindrical or conical) which is sealed at both ends.

(make-object 'closed-closed-tube ... )

Lisp Syntax and Default Values

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))

Parameters

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.

  • modes: number of modes.
  • length: in meters.
  • air-elasticity: in m^2/kg. On the planet earth at room temperature at sea level this is normally 7.21e-6.
  • air-density: in kg/m^3. On the planet earth at room temperature at sea level this is normally 1.2.
  • radius0: in meters at one end of the tube.
  • radius1: in meters at the other end of the tube.
  • freq-loss, const-loss: loss coefficients. See General object information.
Accesses

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.

Options

Controllers

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))

Tuning

An acoustic tube can be tuned to a specific pitch, using the (set-pitch ...) function, by adjusting just one physical parameter:

  • 'length

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.

page précédentepage suivante
A propos...©IRCAM 2014Réalisé avec Scenari