home/ atoms/ unison-detune

Unison stacks detuned copies of an oscillator to create a thick, wide, chorus-like sound

Unison plays N simultaneous copies (voices) of the same oscillator, each slightly detuned from centre pitch. The pitch offsets cause continuous amplitude/frequency beating that the ear perceives as richness, warmth, width, or — at large detuning — roughness. This emulates true analog oscillators, which drift a few cents and beat naturally; digital oscillators are perfectly stable, so the effect must be created deliberately. Two controls trade off independently: voice count (more voices = denser beating) and detune spread (in cents, or absolute Hz). Small detune gives subtle warmth; large detune gives the chorused ‘supersaw’ cloud used for leads and pads. A blend control can balance centre versus outer voices. Boundary conditions: detune trades thickness against pitch clarity, so it is undesirable where precise pitch matters; absolute-Hz detuning behaves differently at low versus high pitches than cent-based detuning; and unison CPU cost scales with voice count and oscillator complexity. When summing many voices, divide amplitude by voice count to avoid clipping.

Examples

SuperCollider (5 detuned saws):

~numVoices = 5; ~distance = 0.3;
Mix.fill(~numVoices, {|i|
  var d = (i - floor(~numVoices/2)) * ~distance;
  LFSaw.ar(220 + d)
}) / ~numVoices !2

Serum: 4–7 voices, sweep detune from ~5 cents (subtle warmth) to ~40 (aggressive supersaw); lower blend to push outer voices back. Surge Classic osc: 16 voices at modest CPU; switch to absolute-Hz detune for pitch-independent low-bass detuning. Massive: 3 voices give a balance of ‘solidity and filth.‘

Assessment

Sweep unison detune from 0 to maximum at a fixed voice count and describe the transition from warm to extreme. Compare 1, 2, and 3 voices and relate voice count and spread to beating density. Explain how absolute-Hz detune differs from cent-based at low vs high pitch, and name a scenario where unison detune is undesirable.

“what this is doing is it's grabbing the four waveforms we created and it's d-tuning each one, getting each one slightly d-tuned”
corpus · complete-guide-to-master-serum-2-ep1-wavetable-oscillator-ze · chunk 1
“Now turn up the number of Unisono voices in the Voicing panel. Each number of voices gives you a different character. 3 gives us an interesting balance of solidity and filth.”
corpus · grime-synth-basics-attack-magazine-massive-bass-tutorial · chunk 1
“The algorithm provides unison at the oscillator-level with up to 16 instances. Unlike the Wavetable oscillator, the cost of unison in terms of CPU usage for the Classic oscillator is quite modest.”
corpus · surge-xt-official-user-manual-surge-synth-team · chunk 22
“True analog oscillators cannot keep exactly the same tuning, varying by a few cents at a time. This means that when several are played in unision, a 'thick', harmonically rich sound is created.”
corpus · welsh-s-synthesizer-cookbook-figures-in-supercollider-cookbo · chunk 3