ACoustic Rated
Acoustic rated access panels and riser doors tested to BS EN ISO 10140, with sound reduction up to 48dB Rw.

Lead Time: 3-5 working days | Bespoke: Made to measure as standard

An acoustic rated access panel is a hinged or removable panel that has been independently tested and certified to reduce the transmission of airborne sound through walls and ceilings. Acoustic rated access panels, riser doors and loft hatches are designed to maintain the sound insulation performance of the surrounding construction, preventing noise from travelling through service openings and compromising the acoustic separation between rooms.Acoustic performance is measured using the weighted sound reduction index (Rw), expressed in decibels (dB). The higher the Rw value, the greater the sound reduction. Rapid Access acoustic products achieve ratings from 36dB Rw up to 48dB Rw, tested to BS EN ISO 10140 at an independent UKAS accredited laboratory. Many of our acoustic products are also available with combined fire ratings, providing dual performance for projects that require both sound insulation and fire compartmentation.
Reviewed by: Rapid Access Technical Team Last updated: February 2026 Certifications: ISO 9001 | ISO 14001 | ISO 45001
UNDERSTANDING Sound rating
Acoustic ratings use two key metrics, laboratory performance and field performance. Understanding the difference helps you specify the correct product.
Tested to BS EN ISO 10140Rw is the weighted sound reduction index measured under controlled laboratory conditions. This is the standard metric used by manufacturers to classify the acoustic performance of individual building elements. Laboratory testing isolates the product from flanking transmission, giving a repeatable baseline measurement that allows direct comparison between products. All Rapid Access acoustic ratings are expressed as Rw values.Access Panels: up to 48dBRiser Doors: up to 45dB
Measured to BS EN ISO 16283-1DnT,w is the standardised level difference measured on site between two rooms. This accounts for real-world factors including flanking paths, junctions, and construction quality. Field values are typically 5 to 10dB lower than laboratory Rw values. Building Regulations Approved Document E sets minimum DnT,w requirements for separating walls and floors in residential buildings. Specifying products with a strong laboratory Rw rating provides a margin of safety to achieve the required field performance.Part E minimum: 45dB DnT,wTypical site loss: 5 to 10dBour acoustic range
Acoustic rated options are available across our access panel and riser door ranges, in metal faced, tile faced and plasterboard faced configurations.
Applications
Any building where sound insulation between spaces is specified will benefit from acoustic rated access panels and riser doors.
Service risers, corridors, suspended ceilings and plant rooms
Bathrooms, utility spaces, loft access and apartment risers
Wards, corridors, clean rooms and service voids
Classrooms, halls, corridors and multi-storey buildings
Transport hubs, data centres, utilities and public buildings
[tcb-script](function() { const rapAppsTrack = document.getElementById(‘rapAppsSliderTrack’); const rapAppsPrev = document.getElementById(‘rapAppsPrevBtn’); const rapAppsNext = document.getElementById(‘rapAppsNextBtn’); const rapAppsCards = document.querySelectorAll(‘#rapAppsSliderTrack .rapApps-product-card’); if (!rapAppsTrack || !rapAppsPrev || !rapAppsNext || rapAppsCards.length === 0) return; let rapAppsIndex = 0; let rapAppsStartX = 0; let rapAppsTranslate = 0; let rapAppsPrevTranslate = 0; let rapAppsDragging = false; let rapAppsAnimID = 0; let rapAppsStartY = 0; let rapAppsHorizontal = false; const rapAppsGap = 12; function getRapAppsCardWidth() { if (rapAppsCards.length > 0) { return rapAppsCards[0].getBoundingClientRect().width; } return 420; } function isMobile() { return window.innerWidth <= 768; } // Calculate available visible width using actual DOM measurements // This correctly handles scrollbar width, WordPress container padding, etc. function getRapAppsAvailable() { if (rapAppsCards.length === 0) return window.innerWidth; var firstCardLeft = rapAppsCards[0].getBoundingClientRect().left – rapAppsPrevTranslate; var viewport = document.querySelector(‘.rapApps-slider-viewport’); var containerRight = viewport ? viewport.getBoundingClientRect().right : window.innerWidth; var rightBuffer = isMobile() ? 20 : 0; return containerRight – firstCardLeft – rightBuffer; } // Max translate so last card right edge aligns with viewport right edge function getMaxTranslate() { const cardW = getRapAppsCardWidth(); const slideW = cardW + rapAppsGap; const totalWidth = (rapAppsCards.length * slideW) – rapAppsGap; const available = getRapAppsAvailable(); return Math.max(0, totalWidth – available); } function getMaxIndex() { const cardW = getRapAppsCardWidth(); const slideW = cardW + rapAppsGap; const maxT = getMaxTranslate(); return Math.ceil(maxT / slideW); } setTimeout(() => { setRapAppsPosition(); }, 200); let rapAppsResizeTimer; window.addEventListener(‘resize’, () => { clearTimeout(rapAppsResizeTimer); rapAppsResizeTimer = setTimeout(() => { // Clamp index if window got bigger const maxIdx = getMaxIndex(); if (rapAppsIndex > maxIdx) rapAppsIndex = maxIdx; setRapAppsPosition(); }, 50); }); function updateRapAppsNav() { const maxIdx = getMaxIndex(); if (rapAppsIndex <= 0) { rapAppsPrev.classList.add(‘disabled’); rapAppsPrev.classList.remove(‘active’); } else { rapAppsPrev.classList.remove(‘disabled’); rapAppsPrev.classList.add(‘active’); } if (rapAppsIndex >= maxIdx) { rapAppsNext.classList.add(‘disabled’); rapAppsNext.classList.remove(‘active’); } else { rapAppsNext.classList.remove(‘disabled’); rapAppsNext.classList.add(‘active’); } } function setRapAppsPosition() { const cardW = getRapAppsCardWidth(); const slideW = cardW + rapAppsGap; const maxIdx = getMaxIndex(); const maxT = getMaxTranslate(); // Clamp index if (rapAppsIndex > maxIdx) rapAppsIndex = maxIdx; if (rapAppsIndex < 0) rapAppsIndex = 0; // On the last step, snap exactly to maxTranslate so last card is fully visible let translateX; if (rapAppsIndex >= maxIdx) { translateX = -maxT; } else { translateX = -(rapAppsIndex * slideW); } rapAppsTranslate = translateX; rapAppsPrevTranslate = rapAppsTranslate; rapAppsTrack.style.transform = ‘translateX(‘ + rapAppsTranslate + ‘px)’; updateRapAppsNav(); } function rapAppsGoNext() { const maxIdx = getMaxIndex(); if (rapAppsIndex < maxIdx) { rapAppsIndex++; setRapAppsPosition(); } } function rapAppsGoPrev() { if (rapAppsIndex > 0) { rapAppsIndex–; setRapAppsPosition(); } } function rapAppsTouchStart(event) { rapAppsDragging = true; rapAppsStartX = event.type.includes(‘mouse’) ? event.pageX : event.touches[0].clientX; rapAppsStartY = event.type.includes(‘mouse’) ? event.pageY : event.touches[0].clientY; rapAppsHorizontal = false; rapAppsAnimID = requestAnimationFrame(rapAppsAnimate); rapAppsTrack.style.cursor = ‘grabbing’; } function rapAppsTouchMove(event) { if (!rapAppsDragging) return; var curX = event.type.includes(‘mouse’) ? event.pageX : event.touches[0].clientX; var curY = event.type.includes(‘mouse’) ? event.pageY : event.touches[0].clientY; var diffX = Math.abs(curX – rapAppsStartX); var diffY = Math.abs(curY – rapAppsStartY); if (!rapAppsHorizontal && diffX > 5) { rapAppsHorizontal = diffX > diffY; } if (rapAppsHorizontal && event.cancelable) { event.preventDefault(); } rapAppsTranslate = rapAppsPrevTranslate + (curX – rapAppsStartX); } function rapAppsTouchEnd() { rapAppsDragging = false; rapAppsHorizontal = false; cancelAnimationFrame(rapAppsAnimID); rapAppsTrack.style.cursor = ‘grab’; var moved = rapAppsTranslate – rapAppsPrevTranslate; var maxIdx = getMaxIndex(); if (moved < -50 && rapAppsIndex < maxIdx) rapAppsIndex++; if (moved > 50 && rapAppsIndex > 0) rapAppsIndex–; setRapAppsPosition(); } function rapAppsAnimate() { if (rapAppsDragging) { rapAppsTrack.style.transform = ‘translateX(‘ + rapAppsTranslate + ‘px)’; requestAnimationFrame(rapAppsAnimate); } } rapAppsTrack.addEventListener(‘mousedown’, rapAppsTouchStart); rapAppsTrack.addEventListener(‘touchstart’, rapAppsTouchStart, { passive: true }); rapAppsTrack.addEventListener(‘mousemove’, rapAppsTouchMove); rapAppsTrack.addEventListener(‘touchmove’, rapAppsTouchMove, { passive: false }); rapAppsTrack.addEventListener(‘mouseup’, rapAppsTouchEnd); rapAppsTrack.addEventListener(‘mouseleave’, rapAppsTouchEnd); rapAppsTrack.addEventListener(‘touchend’, rapAppsTouchEnd); rapAppsPrev.addEventListener(‘click’, rapAppsGoPrev); rapAppsNext.addEventListener(‘click’, rapAppsGoNext); rapAppsTrack.addEventListener(‘dragstart’, function(e) { e.preventDefault(); }); setRapAppsPosition(); // MODAL var rapAppsModal = document.getElementById(‘rapAppsModal’); var rapAppsModalOverlay = document.getElementById(‘rapAppsModalOverlay’); var rapAppsModalClose = document.getElementById(‘rapAppsModalClose’); var rapAppsModalSector = document.getElementById(‘rapAppsModalSector’); var rapAppsModalTitle = document.getElementById(‘rapAppsModalTitle’); var rapAppsModalDesc = document.getElementById(‘rapAppsModalDescription’); var rapAppsScrollPos = 0; var rapAppsData = [ { sector: ‘Sector’, title: ‘Commercial & Office’, description: ‘Access panels in commercial and office buildings provide maintenance access to service risers, HVAC ducting, fire dampers and electrical distribution behind walls, ceilings and floors. Fire rated panels maintain compartmentation in corridors and escape routes. Acoustic rated options ensure sound separation between offices, meeting rooms and open-plan areas. Metal faced panels are the most common choice for suspended ceilings and plant rooms where durability and a clean finish are priorities.’ }, { sector: ‘Sector’, title: ‘Residential’, description: ‘In residential developments, access panels provide discreet maintenance access to plumbing, electrical wiring and heating systems. Plasterboard faced panels are popular for living areas and bedrooms where a flush, invisible finish is essential. Tile faced panels are used in bathrooms, en-suites and kitchens to maintain a seamless tiled surface. Fire rated panels are required in apartment buildings where compartmentation between dwellings must be maintained under Approved Document B.’ }, { sector: ‘Sector’, title: ‘Healthcare & Hospitals’, description: ‘Healthcare environments demand the highest levels of fire safety, hygiene and acoustic performance. Access panels in hospitals must maintain fire compartmentation to protect patients, staff and escape routes. Acoustic rated panels help control noise between wards, theatres and corridors. Airtight options support infection control by preventing air leakage between clean and contaminated zones. All panels must withstand frequent cleaning and meet strict NHS and HTM requirements.’ }, { sector: ‘Sector’, title: ‘Education & Schools’, description: ‘Schools and educational buildings require durable, tamper-resistant access panels that maintain fire safety and acoustic separation between classrooms, corridors and halls. Fire rated panels are essential in multi-storey school buildings to meet Building Regulations. Acoustic rated options help reduce noise transfer between teaching spaces. Metal faced panels are commonly specified for their durability in high-traffic environments.’ }, { sector: ‘Sector’, title: ‘Infrastructure’, description: ‘Transport hubs, data centres, stations and public service buildings require robust access panels that withstand heavy use and demanding environments. Fire rated panels are essential in underground and enclosed spaces where escape routes must be protected. Metal faced panels offer the durability needed in high-traffic public areas. Acoustic rated options help control noise in station concourses and passenger areas. Bespoke sizes and non-standard configurations are commonly required.’ } ]; function openRapAppsModal(index) { var data = rapAppsData[index]; rapAppsModalSector.textContent = data.sector; rapAppsModalTitle.textContent = data.title; rapAppsModalDesc.textContent = data.description; rapAppsScrollPos = window.pageYOffset || document.documentElement.scrollTop; document.body.appendChild(rapAppsModal); document.body.style.position = ‘fixed’; document.body.style.top = ‘-‘ + rapAppsScrollPos + ‘px’; document.body.style.width = ‘100%’; document.body.classList.add(‘rapApps-modal-open’); rapAppsModal.classList.add(‘active’); } function closeRapAppsModal() { rapAppsModal.classList.remove(‘active’); var scrollY = rapAppsScrollPos; document.body.classList.remove(‘rapApps-modal-open’); document.body.style.position = ”; document.body.style.top = ”; document.body.style.width = ”; requestAnimationFrame(function() { window.scrollTo(0, scrollY); }); } rapAppsCards.forEach(function(card, index) { card.addEventListener(‘click’, function(e) { if (!rapAppsDragging || Math.abs(rapAppsTranslate – rapAppsPrevTranslate) < 5) { openRapAppsModal(index); } }); }); rapAppsModalClose.addEventListener(‘click’, closeRapAppsModal); rapAppsModalOverlay.addEventListener(‘click’, closeRapAppsModal); document.addEventListener(‘keydown’, function(e) { if (e.key === ‘Escape’ && rapAppsModal.classList.contains(‘active’)) { closeRapAppsModal(); } });})();[/tcb-script]Compliance
All acoustic ratings are independently tested at UKAS accredited laboratories and certified to current British and European standards.
BS EN ISO 10140-2:2010Fire resistance tests for door and shutter assemblies. Part 1: Fire doors and shuttersBS EN ISO 717-1:2013Fire resistance tests for non-loadbearing elements. Part 1: WallsBS EN ISO 16283-1:2014Fire resistance tests for non-loadbearing elements. Part 2: Ceilings
Approved Document E (2003, amended 2015)Resistance to the passage of sound. Sets minimum performance requirements for separating walls and floors between dwellingsBB93: Acoustic Design of Schools (2015)Performance standards for acoustic separation, reverberation, and ambient noise in educational buildingsBS 8233:2014Guidance on sound insulation and noise reduction for buildings. Provides recommended internal ambient noise levels for different room typesHTM 08-01Acoustics guidance for healthcare premises. Sets acoustic performance criteria for hospitals, clinics, and care facilitiesComparison
Acoustic performance varies by product type and face material. Use this table to find the right combination for your specification.
| Product | Face Type | Max Acoustic (Rw) | Combined Fire Rating | Test Standard |
|---|---|---|---|---|
| Access Panel | Metal Faced | 48dB Rw | Up to 120 minutes | BS EN ISO 10140-2 |
| Access Panel | Tile Faced | 36dB Rw | Up to 120 minutes | BS EN ISO 10140-2 |
| Access Panel | Plasterboard Faced | 37dB Rw | Up to 120 minutes | BS EN ISO 10140-2 |
| Riser Door | Metal Faced | 45dB Rw | Up to 120 minutes | BS EN ISO 10140-2 |
| Riser Door | Plasterboard Faced | 37dB Rw | Up to 120 minutes | BS EN ISO 10140-2 |
Access Panel Metal Faced Max Acoustic (Rw) 48dB Rw Combined Fire Rating Up to 120 minutes Test Standard BS EN ISO 10140-2 Access Panel Tile Faced Max Acoustic (Rw) 36dB Rw Combined Fire Rating Up to 120 minutes Test Standard BS EN ISO 10140-2 Access Panel Plasterboard Faced Max Acoustic (Rw) 37dB Rw Combined Fire Rating Up to 120 minutes Test Standard BS EN ISO 10140-2 Riser Door Metal Faced Max Acoustic (Rw) 45dB Rw Combined Fire Rating Up to 120 minutes Test Standard BS EN ISO 10140-2 Riser Door Plasterboard Faced Max Acoustic (Rw) 37dB Rw Combined Fire Rating Up to 120 minutes Test Standard BS EN ISO 10140-2 FREQuently asked questions
EXPLORE OTHER RATINGS
Acoustic rated products are often specified alongside fire, airtight and smoke tested options. Many of our products combine multiple ratings in a single unit.
Integrity ratings up to 120 minutes tested to BS EN 1634-1
Sound reduction up to 48dB for Approved Document Part E compliance
Tested air permeability to BS EN 12114 for Part L compliance
Ambient and medium temperature smoke leakage tested to BS EN 1634-3
Standard access panels for general maintenance and service access
[tcb-script](function() { var rapRatingsTrack = document.getElementById(‘rapRatingsSliderTrack’); var rapRatingsPrev = document.getElementById(‘rapRatingsPrevBtn’); var rapRatingsNext = document.getElementById(‘rapRatingsNextBtn’); var rapRatingsCards = document.querySelectorAll(‘#rapRatingsSliderTrack .rapRatings-product-card’); if (!rapRatingsTrack || !rapRatingsPrev || !rapRatingsNext || rapRatingsCards.length === 0) return; var rapRatingsIndex = 0; var rapRatingsStartX = 0; var rapRatingsTranslate = 0; var rapRatingsPrevTranslate = 0; var rapRatingsDragging = false; var rapRatingsAnimID = 0; var rapRatingsStartY = 0; var rapRatingsHorizontal = false; var rapRatingsGap = 12; function getRapRatingsCardWidth() { if (rapRatingsCards.length > 0) { return rapRatingsCards[0].getBoundingClientRect().width; } return 420; } function isMobile() { return window.innerWidth <= 768; } function getRapRatingsAvailable() { if (rapRatingsCards.length === 0) return window.innerWidth; var firstCardLeft = rapRatingsCards[0].getBoundingClientRect().left – rapRatingsPrevTranslate; var viewport = rapRatingsTrack.closest(‘.rapRatings-slider-viewport’); var containerRight = viewport ? viewport.getBoundingClientRect().right : window.innerWidth; var rightBuffer = isMobile() ? 20 : 0; return containerRight – firstCardLeft – rightBuffer; } function getMaxTranslate() { var cardW = getRapRatingsCardWidth(); var slideW = cardW + rapRatingsGap; var totalWidth = (rapRatingsCards.length * slideW) – rapRatingsGap; var available = getRapRatingsAvailable(); return Math.max(0, totalWidth – available); } function getMaxIndex() { var cardW = getRapRatingsCardWidth(); var slideW = cardW + rapRatingsGap; var maxT = getMaxTranslate(); return Math.ceil(maxT / slideW); } setTimeout(function() { setRapRatingsPosition(); }, 200); var rapRatingsResizeTimer; window.addEventListener(‘resize’, function() { clearTimeout(rapRatingsResizeTimer); rapRatingsResizeTimer = setTimeout(function() { var maxIdx = getMaxIndex(); if (rapRatingsIndex > maxIdx) rapRatingsIndex = maxIdx; setRapRatingsPosition(); }, 50); }); function updateRapRatingsNav() { var maxIdx = getMaxIndex(); if (rapRatingsIndex <= 0) { rapRatingsPrev.classList.add(‘disabled’); rapRatingsPrev.classList.remove(‘active’); } else { rapRatingsPrev.classList.remove(‘disabled’); rapRatingsPrev.classList.add(‘active’); } if (rapRatingsIndex >= maxIdx) { rapRatingsNext.classList.add(‘disabled’); rapRatingsNext.classList.remove(‘active’); } else { rapRatingsNext.classList.remove(‘disabled’); rapRatingsNext.classList.add(‘active’); } } function setRapRatingsPosition() { var cardW = getRapRatingsCardWidth(); var slideW = cardW + rapRatingsGap; var maxIdx = getMaxIndex(); var maxT = getMaxTranslate(); if (rapRatingsIndex > maxIdx) rapRatingsIndex = maxIdx; if (rapRatingsIndex < 0) rapRatingsIndex = 0; var translateX; if (rapRatingsIndex >= maxIdx) { translateX = -maxT; } else { translateX = -(rapRatingsIndex * slideW); } rapRatingsTranslate = translateX; rapRatingsPrevTranslate = rapRatingsTranslate; rapRatingsTrack.style.transform = ‘translateX(‘ + rapRatingsTranslate + ‘px)’; updateRapRatingsNav(); } function rapRatingsGoNext() { var maxIdx = getMaxIndex(); if (rapRatingsIndex < maxIdx) { rapRatingsIndex++; setRapRatingsPosition(); } } function rapRatingsGoPrev() { if (rapRatingsIndex > 0) { rapRatingsIndex–; setRapRatingsPosition(); } } function rapRatingsTouchStart(event) { rapRatingsDragging = true; rapRatingsStartX = event.type.includes(‘mouse’) ? event.pageX : event.touches[0].clientX; rapRatingsStartY = event.type.includes(‘mouse’) ? event.pageY : event.touches[0].clientY; rapRatingsHorizontal = false; rapRatingsAnimID = requestAnimationFrame(rapRatingsAnimate); rapRatingsTrack.style.cursor = ‘grabbing’; } function rapRatingsTouchMove(event) { if (!rapRatingsDragging) return; var curX = event.type.includes(‘mouse’) ? event.pageX : event.touches[0].clientX; var curY = event.type.includes(‘mouse’) ? event.pageY : event.touches[0].clientY; var diffX = Math.abs(curX – rapRatingsStartX); var diffY = Math.abs(curY – rapRatingsStartY); if (!rapRatingsHorizontal && diffX > 5) { rapRatingsHorizontal = diffX > diffY; } if (rapRatingsHorizontal && event.cancelable) { event.preventDefault(); } rapRatingsTranslate = rapRatingsPrevTranslate + (curX – rapRatingsStartX); } function rapRatingsTouchEnd() { rapRatingsDragging = false; rapRatingsHorizontal = false; cancelAnimationFrame(rapRatingsAnimID); rapRatingsTrack.style.cursor = ‘grab’; var moved = rapRatingsTranslate – rapRatingsPrevTranslate; var maxIdx = getMaxIndex(); if (moved < -50 && rapRatingsIndex < maxIdx) rapRatingsIndex++; if (moved > 50 && rapRatingsIndex > 0) rapRatingsIndex–; setRapRatingsPosition(); } function rapRatingsAnimate() { if (rapRatingsDragging) { rapRatingsTrack.style.transform = ‘translateX(‘ + rapRatingsTranslate + ‘px)’; requestAnimationFrame(rapRatingsAnimate); } } rapRatingsTrack.addEventListener(‘mousedown’, rapRatingsTouchStart); rapRatingsTrack.addEventListener(‘touchstart’, rapRatingsTouchStart, { passive: true }); rapRatingsTrack.addEventListener(‘mousemove’, rapRatingsTouchMove); rapRatingsTrack.addEventListener(‘touchmove’, rapRatingsTouchMove, { passive: false }); rapRatingsTrack.addEventListener(‘mouseup’, rapRatingsTouchEnd); rapRatingsTrack.addEventListener(‘mouseleave’, rapRatingsTouchEnd); rapRatingsTrack.addEventListener(‘touchend’, rapRatingsTouchEnd); rapRatingsPrev.addEventListener(‘click’, rapRatingsGoPrev); rapRatingsNext.addEventListener(‘click’, rapRatingsGoNext); rapRatingsTrack.addEventListener(‘dragstart’, function(e) { e.preventDefault(); }); setRapRatingsPosition(); // MODAL var rapRatingsModal = document.getElementById(‘rapRatingsModal’); var rapRatingsModalOverlay = document.getElementById(‘rapRatingsModalOverlay’); var rapRatingsModalCloseBtn = document.getElementById(‘rapRatingsModalClose’); var rapRatingsModalSector = document.getElementById(‘rapRatingsModalSector’); var rapRatingsModalTitle = document.getElementById(‘rapRatingsModalTitle’); var rapRatingsModalDesc = document.getElementById(‘rapRatingsModalDescription’); var rapRatingsScrollPos = 0; var rapRatingsData = [ { sector: ‘Rating’, title: ‘Fire Rated’, description: ‘Our fire rated access panels and riser doors are tested to BS EN 1634-1 and BS EN 1364-1, providing integrity ratings of 30, 60, 90 and 120 minutes. Fire rated products maintain compartmentation in walls, ceilings and floors, protecting escape routes and preventing the spread of fire between building zones. Essential for compliance with Approved Document B (Fire Safety) in corridors, risers, service voids and any location where fire compartment lines must be maintained. Available across metal faced, tile faced and plasterboard faced product ranges.’ }, { sector: ‘Rating’, title: ‘Acoustic Rated’, description: ‘Acoustic rated access panels deliver sound reduction performance up to 48dB, independently tested to BS EN ISO 10140. Acoustic separation is critical in environments where noise transfer between spaces must be controlled, including offices, classrooms, hospital wards and residential apartments. Our acoustic options help you meet Approved Document Part E and BB93 requirements for schools. Available across metal faced (up to 48dB), plasterboard faced (up to 37dB) and tile faced (up to 36dB) ranges.’ }, { sector: ‘Rating’, title: ‘Airtight Rated’, description: ‘Airtight rated access panels are tested for air permeability to BS EN 12114, helping you meet Approved Document Part L requirements and energy performance targets. Airtight products minimise heat loss and uncontrolled air leakage through the building envelope at access points, supporting overall building energy efficiency. Critical for projects targeting BREEAM, Passivhaus or other energy performance standards. Available across metal faced and plasterboard faced product ranges.’ }, { sector: ‘Rating’, title: ‘Smoke Tested’, description: ‘Smoke tested access panels are tested for ambient and medium temperature smoke leakage to BS EN 1634-3:2004. Smoke control is a key element of fire safety strategy, preventing smoke spread through corridors, lobbies and service risers during a fire event. Smoke tested products support compartmentation and protect escape routes, helping you meet the smoke control provisions of Approved Document B. Available across metal faced and plasterboard faced product ranges.’ }, { sector: ‘Rating’, title: ‘Non Fire Rated’, description: ‘Non fire rated access panels provide standard maintenance access where no specific fire, acoustic or airtightness rating is required. Ideal for general service access in non-fire-critical locations such as concealed valves, junction boxes, meters and pipework. Available in metal faced, tile faced and plasterboard faced options with a range of frame types and locking mechanisms. A cost-effective solution where compliance ratings are not specified.’ } ]; function openRapRatingsModal(index) { var data = rapRatingsData[index]; rapRatingsModalSector.textContent = data.sector; rapRatingsModalTitle.textContent = data.title; rapRatingsModalDesc.textContent = data.description; rapRatingsScrollPos = window.pageYOffset || document.documentElement.scrollTop; document.body.appendChild(rapRatingsModal); document.body.style.position = ‘fixed’; document.body.style.top = ‘-‘ + rapRatingsScrollPos + ‘px’; document.body.style.width = ‘100%’; document.body.classList.add(‘rapRatings-modal-open’); rapRatingsModal.classList.add(‘active’); } function closeRapRatingsModal() { rapRatingsModal.classList.remove(‘active’); var scrollY = rapRatingsScrollPos; document.body.classList.remove(‘rapRatings-modal-open’); document.body.style.position = ”; document.body.style.top = ”; document.body.style.width = ”; requestAnimationFrame(function() { window.scrollTo(0, scrollY); }); } rapRatingsCards.forEach(function(card, index) { card.addEventListener(‘click’, function(e) { if (!rapRatingsDragging || Math.abs(rapRatingsTranslate – rapRatingsPrevTranslate) < 5) { openRapRatingsModal(index); } }); }); rapRatingsModalCloseBtn.addEventListener(‘click’, closeRapRatingsModal); rapRatingsModalOverlay.addEventListener(‘click’, closeRapRatingsModal); document.addEventListener(‘keydown’, function(e) { if (e.key === ‘Escape’ && rapRatingsModal.classList.contains(‘active’)) { closeRapRatingsModal(); } });})();[/tcb-script]
Our technical team can help you select the right fire rating, face type and product for your project. From initial specification through to delivery and on-site support.