 |
This module refers to LabVIEW, a software development environment that features a graphical programming language.
Please see the LabVIEW QuickStart Guide module for tutorials and documentation that will help you: |
| • Apply LabVIEW to Audio Signal Processing |
| • Get started with LabVIEW |
| • Obtain a fully-functional evaluation edition of LabVIEW |
Objective
Additive synthesis builds up complex sounds from simple sounds (sinusoids). Additive synthesis implies more than just doing Fourier series, though: each sinusoidal component is assigned its own frequency and amplitude trajectory (resulting in a partial), so complex, time-varying sounds can be generated by summing these partials together.
In this project, use additive synthesis to emulate the sound of a bell using a technique described by Jean-Claude Risset, an early pioneer in computer music.
Deliverables
- All LabVIEW code that you develop (block diagrams and front panels)
- All generated sounds in .wav format
- Any plots or diagrams requested
- Summary write-up of your results
Description of the Risset Bell
Jean-Claude Risset's book Introductory Catalogue of Computer-Synthesized Sounds (Bell Telephone Laboratories, 1969) includes an additive synthesis method for a bell-like sound. After analyzing the ringing characteristics of physical bells, he determined that a bell-like tone could be created by using non-harmonic partials whose decay times are approximately inversely proportional to frequency. In addition, pairs of low-frequency partials with a slight frequency offset create a "beating" effect.
The partials for the Risset bell are available in this CSV-type spreadsheet:
risset_bell.csv. The columns are:
- partial number
- intensity in dB
- duration multiplier (indicates fraction of overall duration)
- frequency multiplier (indicates interval ratio from base frequency)
- frequency offset (in Hz)
Part 1: Attack/Decay Envelope Generator
Create an attack/decay intensity envelope composed of two straight-line segments as shown in
Figure 1:
The value "-60 dB" corresponds to an amplitude of 0.001, effectively silence. The total duration of the envelope should be based on a
front-panel control called "duration [s]" (its unit is seconds), and another control called "attack [ms]"
(its unit is milliseconds).
Convert the intensity envelope into an amplitude envelope by "undoing" the equation for decibels.
Part 2: Multiple Envelopes
Enclose your envelope generator in a for-loop structure which takes values from
risset_bell.csv. Connect a control to the count terminal so that you can adjust how many envelopes to view.
Use "auto indexing" on the for-loop to create an array of envelopes, then view the array as graph (you will see all of the envelopes superimposed on the same graph, with each envelope a different color). Confirm that your envelopes have the correct amplitudes and durations.
Plot both the intensity envelopes and amplitude envelopes for all partials, and include these plots with your deliverables.
Part 3: Sinusoidal Tone Generator
Add a sinusoidal tone generator to your main loop. The base frequency should be set by a front-panel control called "freq [Hz]", and the frequency multiplier and offset for each partial should be used to set the actual frequency. Also include a front-panel control to select the system sampling frequency "fs [Hz]".
Apply the amplitude envelope, and then add the partial to the sound that was generated on the previous pass of the loop. Regardless of whether you use a shift register or a feedback node, initialize the audio signal with an array of zeros which is of the same length as your envelopes.
Remember to use the "QuickScale" built-in subVI on the finished audio waveform to ensure that all of its values lie in the range +/- 1.
Part 4: Experiment with Parameters
Your front panel controls should include the following adjustable parameters: number of partials, total duration, base frequency, sampling frequency, and attack time. Listen to the audio and view the spectrogram as you adjust the parameters.
To get started, listen to the sound with the first partial only, and then with the first two partials, and so on until you hear all eleven partials. Building up the sound from silence by adding more and more partials is the essence of "additive synthesis."
Try varying the attack time. What is the maximum attack time that still sounds like the striking of a bell?
Try adjusting the total duration and base frequency. Remember to adjust the sampling frequency high enough so that you do not produce aliasing. If the sampling frequency is too high, however, all of the partials will compress into the bottom of the spectrogram plot.
Overall, what values produce a realistic-sounding bell?
Create .wav files for three distinct sets of parameters, and discuss the motivation for your choices. Include a spectrogram plot for each of the three bell sounds.
"This online course covers signal processing concepts using music and audio to keep the subject relevant and interesting. Written by Prof. Ed Doering from the Rose-Hulman Institute of Technology, […]"