Sub-Bass Ascension
supercolliderFrequency Architecture (NES-compliant processing targets)
Trap-Bass Layer:
- 140 BPM half-time → kick at every 2 beats (0.857s interval)
- 808 owns 20-60 Hz sub range exclusively
- Pitch envelope: G1 → C1 in 0.4s, then hold C1 for 3 bars
- Target Bounce: 9/10 — kick and sub must produce up-down movement
Trance-Lead Layer:
- Supersaw arpeggio at 138 BPM
- 3:4 polyrhythm: 808 kick pattern (3 hits per bar) vs lead arpeggio (4 notes per bar)
- Lead occupies 2200-4400 Hz presence range
- Target Hook + Build: 18/20 combined — lead must cut through and build tension
Cross-Genre Bridge:
- 808 pitch envelope frequency range: 32.7 → 65.4 → 130.8 → 65.4 → 32.7 Hz
- This 4-note pattern (one octave each step) forms the rhythmic and melodic glue
- Bridge occupies 60-300 Hz mid range (shared with 808 body)
- Target Space: 7/10 — overlap requires intentional sidechain
Architectural Decisions
Decision 1: Bus Routing for Surgical Low-End
- Kick bus 2
- Bass/808 bus 4
- Supersaw lead bus 6
- Effects send bus 8 (Compander reads from kick bus 2 and writes to master 0)
- Master bus 0
Decision 2: Polyrhythm Implementation
- Kick pattern: every 2 beats (0.857s at 140 BPM half-time) — schedule 3 hits per 4-beat phrase
- Lead arpeggio: 16th notes at 138 BPM — schedule 4 notes per 4-beat phrase
- The 3:4 pattern lives across 12 bars — repeat the arrangement arc every 12 bars
- This density forces rhythmic complexity without genre collapse
Decision 3: Compander Configuration
- Threshold: 0.45 (kick transient level)
- RatioBelow: 1.0 (no compression on lows)
- RatioAbove: 0.2 (5:1 compression on supersaw mids when kick hits)
- ClampTime: 0.005 (5ms attack — surgical duck)
- RelaxTime: 0.12 (120ms release — fitting 4-bar phrase)
Decision 4: Frequency Separation
- 808: HPF at 20 Hz, LPF at 80 Hz → 60 Hz bandwidth
- Supersaw: HPF at 2000 Hz, LPF at 8000 Hz → 6000 Hz bandwidth
- 808 pitch envelope sweeps between G1 (39 Hz) and C3 (130 Hz) — crosses into supersaw low-mids (300-500 Hz) intentionally as the bridge
- Requires dynamic EQ on pitch envelope section: HPF to 300 Hz only when envelope is above C2 (65 Hz)
Decision 5: SynthDef Design Pattern
\bass808— owns 20-80 Hz via HPF/LPF chain\leadTrance— owns 2000-8000 Hz via aggressive HPF\kickTrap— transient-only, 200-5000 Hz transient, no body below 100 Hz\subPitchoEnvelope— pitch envelope node that can be modulated mid-note via\n_set\companderSurgical— reads kick bus 2, applies sidechain compression to bass bus 4 and lead bus 6, writes to master bus 0
Architectural Code (Pre-Session)
No NRT output yet — this is the infrastructure layer. The creative piece will build on this architecture.