Coloplast LUJA Launch

Coloplast LUJA Launch

As Technical Director for the launch of the groundbreaking Coloplast LUJA catheter in the UK, I enabled an immersive experience across multiple zones that brought to life the catheter's micro-hole technology innovation. 150 delegates were treated to holograms, kinetic artworks, and architectural projections that spanned patient, lab, and product areas as well as reflective zones.

As a sonic artist, I created a forever-changing soundscape using live coding and a Raspberry Pi. It generated an infinite composition from my field recordings of the inside of the LUJA catheter as water passes through it.

Below is a link to a 2 minute sample and the infinite code to recreate the soundscape.

live_loop :lujastream do
  with_fx :reverb, mix: 0.5, room: 0.9, pre_amp: 2 do
    sample "/home/mokital/Music/lujaflow_30sec_v2.wav",amp: 1, release: rand, attack: rand
  end
  sleep 28
end

live_loop :random do
  with_fx :reverb, mix: 0.9, room: 0.8, pre_amp: 0.2 do
    play chord(:gb1, :major, num_octaves: 2).choose, pre_amp: 0.1, release_level: rand, decay_level: rand
    play chord(:cb3, :major, num_octaves: 3).choose, pre_amp: 0.1, release_level: rand, decay_level: rand
    sleep rand_look(1)
  end
end