The original source of waveforms in an actual Hammond is a set of spinning
toothed tone wheels (91 in all) that induce (nearly) sinusoidal signals in adjacent magnetic pickups. These are all driven by gearing from a common 1200 rpm central shaft. Because of the limitations of gear-ratios, the frequencies they generate are neither exactly on the equal temperament scale nor exact harmonics (though they are close to both).Rather than using Csound’s built-in midi-note-number to frequency conversion, this emulation has a table of the actual 91 frequencies resulting from those gear-ratios and the number of teeth on each wheel, in the hopes that this gets even closer to the “Hammond sound”.
Hammond “Percussion”—somewhat oddly named—is the transient addition of
one of the harmonics of the fundamental (the 2nd or 3rd) to the signal. This transient can be “fast” or “slow” and “normal” or “strong”. It is also “single-triggered”—meaning that it is triggered by the first note struck, but will not be activated again until all keys have been released.I haven’t found any numeric values for decay-time and magnitude of the percussion, but from the values in the circuit diagram a “fast” decay of about 0.37 sec looks plausible, as does 1.5 for “slow”. Magnitude is a fully adjustable score parameter, so you can pick something that sounds right.
Because the signals in a Hammond are connected to the circuit by contacts
under the keys, there is a noticeable click at onset. This is probably mainly because of the fact that the phase of the waveform from a tonewheel is independent of the moment the key is pressed, so sharp voltage changes can occur. Also, there are nine contacts for each key, and they will not all close at exactly the same instant, somewhat staggering those spikes. This behaviour is not modelled in this code.Hans Mikelson’s original Rotor Organ had a “click” parameter that introduced a noise transient at note onset if desired. This is still available (as a parameter in the orchestra file rather than the score) but is disabled by default, as I don’t find it attractive.
Other artefacts of the Hammond’s electromechanics aren’t modelled at all. Actual hardware has magnetic and electrical crosstalk between the tones that apparently results in a ‘throatier’ sound, but I have no information or feeling as to its characteristics. The motor switch on an organ is often used to ‘bend’ the pitch; this probably wouldn’t be hard to emulate, but isn’t yet present.
Vibrato on a Hammond is created by a scanner, rotating at 412 rpm (i.e. 6.87 Hz),
that picks the signal off selected taps on an inductor-capacitor ‘delay line’, with a total delay of about 1.1 milliseconds. As it rotates in each cycle, the scanner first moves down the line and then back, thus alternately lowering and raising the tones in the signal slightly. For the lowest vibrato (‘V1’) it scans about 45% of the line, ‘V2’ goes about 66%, and ‘V3’ scans the whole line. The taps are arranged so that the sweep is fairly triangular, with a slight flat spot at low delay. The waveform used in the emulation is intended to recreate this sweep. Chorus is the same as Vibrato, except that the original signal is mixed back in (assumed to be 50/50, but it’s infinitely variable through thep4 parameter).
Because the line is built from inductors and capacitors, it also acts as a low pass filter, with the roll-off frequency decreasing on taps with greater delay. The values of the inductors don’t seem to be available, so there is no good way of calculating this roll-off. Instead the score command for vibrato has three parameters—Maximum Frequency, Frequency Adjustment Factor, and filter “Q”—that can be adjusted for a good sound (see the main manual).
The “Leslie” is the rotating speaker unit that gives much of the character
to the “Hammond sound” (the “Rotor” of the “Rotor Organ”). It does mechanically and acoustically somewhat the same sort of thing as the Vibrato. [In fact my guess is—as Hammond himself hated the Leslie—that the Vibrato, which came later, was intended to displace it, but it never did. In the end they can be used together rather well.]The true effect of the Leslie is very complex, as there is Doppler shifting of frequencies, plus varying direct and reflected sound transmission, as the speakers (or rather attached horns and scoops) rotate. This makes it very hard to emulate properly, and probably neither of the methods here comes close.
Two Leslie schemes are included in the orchestra file. One is essentially that designed by Hans Mikelson in his original Csound Organ code. The other is a new, slightly different, approach. Both algorithms use essentially the same swept delay line to produce the Doppler effect, and split the signal into “high”, “midrange”, and “low” frequencies for different ‘rotation’ effects (the higher frequencies are much more directional, and so their amplitude is much more affected by the rotation). Both algorithms use the same function tables for amplitude vs rotation angle, which I believe Hans derived from some published plots.
Hans’ algorithm achieves some stereo by having a phase angle between the delay line pickoffs for left and right channels. However, it seems to me that this is not very realistic except for the recording case where microphones are placed on opposite sides of the speaker cabinet, say. When a human listener is more than a few feet from the speaker, the “rotational phase difference” between the two ears for direct sound will be minuscule. Stereo effects will almost certainly be a result of room reflections when the sound source is not pointing directly at the listener.
The new scheme explicitly includes such reflections (in a rather basic fashion). The audio fed into the delay line is (for the high and mid frequencies) tapped off again in three ways, a ‘direct’ channel, a ‘left-directed’ one, and another ‘right-directed’. The low frequencies only have the ‘direct’ tap because the ear is not very sensitive to direction there. All the taps are swept back and forth along the delay line at the rotation rate of the appropriate speaker (the high range and bass speakers spin at slightly different rates, adding to the effect). However the rotation phases of the ‘left’ and ‘right’ ones are 90° displaced from the ‘direct’ and have the specified reflection delay added in. All these channels are modulated by the angle-amplitude function appropriate to the frequency band (as in Hans’ version) and mixed back to left/right stereo.
Both forms of the Leslie have the same “tube amplifier” input, which can be given a distortion curve that approximates what an overdriven amp might produce.
There is a “Reverb” unit in some Hammonds, which I believe is a simple
spring based device. The one included in this emulation has much more range, because it just employs the ‘reverb’ opcode, so you can add in any amount of effect you might desire.