Q Acoustics 5020 Bookshelf Speakers
Q Acoustics 5020 Bookshelf Speakers
Q Acoustics 5020 Bookshelf Speakers
Q Acoustics 5020 Bookshelf Speakers
Q Acoustics 5020 Bookshelf Speakers
Q Acoustics 5020 Bookshelf Speakers
Q Acoustics 5020 Bookshelf Speakers
Q Acoustics 5020 Bookshelf Speakers
Q Acoustics 5020 Bookshelf Speakers
Q Acoustics 5020 Bookshelf Speakers
Q Acoustics 5020 Bookshelf Speakers
Q Acoustics 5020 Bookshelf Speakers
Q Acoustics 5020 Bookshelf Speakers
Q Acoustics 5020 Bookshelf Speakers
Q Acoustics 5020 Bookshelf Speakers
Q Acoustics 5020 Bookshelf Speakers
Q Acoustics 5020 Bookshelf Speakers
Q Acoustics 5020 Bookshelf Speakers
Q Acoustics 5020 Bookshelf Speakers
Q Acoustics 5020 Bookshelf Speakers
Q Acoustics 5020 Bookshelf Speakers
Q Acoustics 5020 Bookshelf Speakers
Q Acoustics 5020 Bookshelf Speakers
Q Acoustics 5020 Bookshelf Speakers
Q Acoustics 5020 Bookshelf Speakers
Q Acoustics 5020 Bookshelf Speakers
Q Acoustics 5020 Bookshelf Speakers
Q Acoustics 5020 Bookshelf Speakers
Q Acoustics 5020 Bookshelf Speakers
Q Acoustics 5020 Bookshelf Speakers

Q Acoustics 5020 Bookshelf Speakers

Colour
Please select a colour
Price
$1,399.00
$979.30
Save  $419.70
Quantity
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Vendor by: Speakers(3C)
SKU: QA5022

The new 5000 stereo and home cinema loudspeaker series from Q Acoustics redefines how a speaker can look and sound. Showcasing genuine advancement in driver design, the introduction of the leading-edge C3 Continuous Curved Cone™ profile in the mid/bass driver elevates the 5000 series beyond its class and will form a technical platform for years to come. The series also inherits innovative cabinet and driver technology from the company’s flagship Concept range for an exceptional sonic performance. The 5000 series brings sophistication to any listening room with its contemporary and minimalist design lines.

C3 Continuous Curved Cone™ design
A genuine advancement in elements of mid/bass driver design, the C3 Continuous Curved Cone™ profile is the result of extensive research and expert engineering to combine the bass performance benefits of a traditional straight conic cone with the high/mid-range frequency control of a flared cone.

By creating a single, smooth, continuous curve profile, the advantages are manifold. Firstly, its excellent dispersion, alongside its well-controlled frequency response, enables smoother integration with the tweeter. Deep bass dynamics are also superior, with this and tighter, damped low-end sound allowing more flexibility in placement of speakers near the wall boundaries of the listening room. Harmonic distortion is also reduced, ensuring the 5000 series delivers a sonic performance and wide soundstage that belies its ranking.

High-frequency driver design
Based on the tweeter design principle found in the newest Concept series, the high frequency driver unit is hermetically sealed and mechanically isolated (floating) from the baffle to prevent internal pressure modulations from within the cabinet and adjacent mid/bass driver. The inner chamber is also carefully vented for lower distortion, with a lower crossover point for seamless integration through the crossover region.

Mid/bass driver design
At the heart of the ground-up mid/bass driver design is the C3 Continuous Curved Cone™. The cone’s geometry requires good motor strength for optimal performance. Substantial magnets are coupled to large voice coils to increase motor strength - the result is a 50 % increase in power handling and control over a comparable driver with 25.4 mm voice coil. The result is an improvement in the dynamic range of the speaker, especially in the bass region.

Point-2-Point™ (P2P) and Helmholtz Pressure Equalisers (HPE™) technology
Point-2-Point™ (P2P) internal bracing is fitted to internal areas of the cabinet susceptible to low-end frequency reverberations. This reinforcement delivers a more focused stereo image and a wider soundstage.

Customer Reviews

Here are what our customers say.

Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.