The piece translates planetary orbital relationships into harmonic frequencies. Each planet becomes a sustained voice within a slowly evolving harmonic field.
The resulting composition evokes astronomical scale and deep cosmic resonance. Rather than a melody, the piece functions as a celestial resonance field.
A sonic interpretation of the ancient philosophical idea that celestial motion generates harmonic order — from Pythagoras to Kepler, the cosmos understood as music.
Planetary harmonic choir — six celestial voices
Lucid II expands the use of the Lucid Harmonic Field by introducing more relational movement between tones. The harmonic space remains open and non-resolving.
The base tone establishes the gravitational center of the sonic field. Low frequencies create a stable foundation representing cosmic unity.
Individual planetary tones enter the field. Each harmonic layer represents a celestial body moving within orbital structure. The sound field slowly expands.
All planetary tones resonate simultaneously. The system stabilizes into a cosmic harmonic equilibrium.
Each planet functions as a sustained oscillator. Together they form a layered harmonic structure.
Slow pulses represent planetary motion and orbital cycles. These pulses introduce temporal perception within the harmonic field.
A deep bass layer represents gravitational unity and cosmic scale.
Lucid II uses the canonical Lucid base pulse of 54.8 BPM. Where Lucid I emphasizes suspension and cosmic field perception, Lucid II explores relational motion within the same temporal framework.
The piece introduces motion while remaining grounded in the Lucid harmonic field. Base BPM: 24 — the deepest planetary pulse.
The universe as a harmonic system. Motion becomes sound. Celestial mechanics become music. The ancient doctrine of musica universalis made audible.
Layered planetary drones. Base BPM: 24.
# ------------------------------------------------
# LUCID SONIC SYSTEM — SHARED CONSTANTS
# ------------------------------------------------
LUCID_BPM = 54.8
LUCID_SUBPULSE = LUCID_BPM * 0.5
LUCID_FLOW = LUCID_BPM * 1.5
LUCID_ENERGY = LUCID_BPM * 2.0
LUCID_LOW = [:e2, :a2, :b2]
LUCID_MID = [:e3, :fs3, :a3, :b3, :d4]
LUCID_HIGH = [:e4, :fs4, :a4, :b4, :d5]
use_bpm LUCID_BPM
define :lucid_note do |range|
if range == :low
return LUCID_LOW.choose
elsif range == :mid
return LUCID_MID.choose
else
return LUCID_HIGH.choose
end
end
# ------------------------------------------------
# HARMONIC FOUNDATION
# ------------------------------------------------
live_loop :foundation do
use_synth :hollow
play :e2,
attack: 4,
release: 10,
amp: 1.1
sleep 8
end
# ------------------------------------------------
# RELATIONAL MOTION
# ------------------------------------------------
live_loop :motion do
use_synth :prophet
play lucid_note(:mid),
attack: 1,
release: 4,
cutoff: rrand(70,110),
amp: 0.8
sleep [1.5,2,2.5].choose
end
# ------------------------------------------------
# HARMONIC RESPONSE
# ------------------------------------------------
live_loop :response do
use_synth :blade
play lucid_note(:mid),
attack: 1,
release: 5,
amp: 0.7
sleep [3,4,5].choose
end
# ------------------------------------------------
# CELESTIAL ACCENTS
# ------------------------------------------------
live_loop :accents do
use_synth :pretty_bell
play lucid_note(:high),
attack: 0.2,
release: 3,
amp: 0.5
sleep [2,4,6].choose
end
# ------------------------------------------------
# GRAVITY BASS
# ------------------------------------------------
live_loop :bass do
use_synth :fm
play lucid_note(:low),
attack: 1,
release: 6,
amp: 0.7
sleep 6
endLucid Sound II expands the harmonic logic introduced in Lucid Sound I.
If Lucid Sound I represents the emergence of harmonic order, Lucid Sound II represents cosmic harmonic structure. The composition transforms celestial motion into resonance, revealing the universe itself as a harmonic field.
It functions as the second sonic node within the Lucid sonic cycle, extending the system from emergence toward cosmic order.