Finance available on all orders between amount £250 to £15000
Finance Options
Deposit Percentage (%)
0%
Deposit to Pay
0% - £
Cash Price
£
419.00
Loan Amount
£
Loan Repayment
£
Cost of Loan
£
Total Amount Repayable
£
monthly payments of
£
Rate of interest (Fixed)
% APR
Description
Genelec 8020D (8020DPM) Compact 2-way Active Monitor (Single Speaker) – Dark Grey. The Genelec 8020D is small in dimensions, but big in ambition. The 8020D, introduced in 2017, even delivers 4 dB higher SPL and has a lower energy consumption than earlier models of 8020. Designed to suit the broadest possible range of listening environments, 8020D thrives when space is at a premium, and draws on the innovation of the 8000 Series for an unrivalled near-field experience.
Trust in the colour-free, accurate reproduction of the Minimum Diffraction Enclosure (MDE™), while relying on the precise on- and off-axis frequency reproduction of the Directivity Control Waveguide (DCW). And when you’re finished, Genelec Intelligent Signal Sensing (ISS™) circuitry detects when your system is no longer in use, placing it into an environmentally friendly, power-saving standby mode. From post-production studios to OB vans and DAW-based rooms, the 8020D is your near-field solution of choice.
The main features of the Genelec 8020D subwoofer include:
Maximum sound pressure: 100dB
Frequency response: 55 Hz – 23 kHz (-6 dB)
Accuracy of frequency response: ± 1.5 dB (66 Hz – 20kHz)
Driver dimension: Woofer 4 in Tweeter 3/4 in metal dome DCW™
Amplifier power: Woofer 50 W Tweeter 50 W
Dimensions: H 242 x W 151 x D 142 mm / 9 1/2 x 6 x 5 5/8 in, with Iso-Pod™
Weight: 3.2 kg / 7.0 lb
Connectors: 1 x XLR analogue input / 2 x RJ45 control network
Product Demonstration Services @ Kazbar Systems
If you are a professional producer, sound designer, engineer or are part of a commercial studio and wish to audition a product on-site in your studio, then you’re in the right place.
We specialize in hands on one-to-one demonstrations of pro audio equipment such as; monitors & outboard and also provide demonstrations for our range of boutique effects.
// update calculator when the finance option changes
var financeoption = document.getElementById("financecode");
financeoption.onchange = function()
{
// update the calculator
var financecode = document.getElementById("financecode");
var res = financecode.value.split("-");
var theterm = res[0].replace( /^\D+/g, '');
var theapr = res[1];
var fdeposit = document.getElementById("financedeposit");
var loanval = productvalue.value - fdeposit.value;
updateomnicalc (theterm, loanval, theapr);
}
// update calculator when the deposit option changes
var depositoption = document.getElementById("financedeposit");
depositoption.onchange = function()
{
// update the calculator
var financecode = document.getElementById("financecode");
var res = financecode.value.split("-");
var theterm = res[0].replace( /^\D+/g, '');
var theapr = res[1];
var fdeposit = document.getElementById("financedeposit");
var loanval = productvalue.value - fdeposit.value;
updateomnicalc (theterm, loanval, theapr);
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}