Smoke Tested
Smoke tested access panels and riser doors certified to BS EN 1634-3:2004. Ambient and medium temperature classifications for complete smoke control at service openings.

Lead Time: 3-5 working days | Bespoke: 4 working days

A smoke tested access panel is a hinged or removable panel that has been independently tested and classified for resistance to smoke leakage at service openings in walls, ceilings and floors. Smoke is the primary cause of death in building fires, and uncontrolled smoke migration through service risers, ceiling voids and corridor walls can compromise escape routes long before flames reach those areas. Smoke tested access panels and riser doors prevent smoke from passing through the building at these critical points.
Smoke leakage testing is carried out to BS EN 1634-3:2004 at an independent UKAS accredited laboratory. Products are classified under two conditions: Sa (ambient temperature, approximately 25°C) which measures cold smoke leakage before a fire reaches the panel, and S200 (medium temperature, 200°C) which measures smoke leakage under elevated temperature conditions as a fire develops nearby. Both classifications are important because smoke begins to spread through a building well before the fire itself reaches the access panel or riser door location.
Reviewed by: Rapid Access Technical Team Last updated: February 2026 Certifications: ISO 9001 | ISO 14001 | ISO 45001
UNDERSTANDING smoke control
BS EN 1634-3 defines two smoke leakage classifications. Understanding the difference helps you specify the correct level of smoke control for your project.
Cold smoke leakage at approximately 25°CThe Sa classification measures smoke leakage at ambient temperature, approximately 25°C. This represents the early stage of a fire event when smoke is already migrating through the building, but the fire has not yet raised temperatures at the access panel location. Cold smoke is particularly dangerous because it spreads rapidly through corridors, stairwells and service risers, reducing visibility and contaminating escape routes before occupants are aware of the fire. Sa testing confirms that the panel’s seals and construction prevent smoke passing through the opening under these conditions.Tested at 25°CEarly stage fire protection
Warm smoke leakage at 200°CThe S200 classification measures smoke leakage at 200°C, representing conditions where a fire has developed and elevated temperatures are present in the vicinity of the panel or door. At this stage, thermal expansion, gasket degradation and pressure differentials are all working to force smoke through any gaps in the building fabric. S200 testing confirms that the product continues to resist smoke passage even as temperatures rise significantly. Products achieving both Sa and S200 provide protection across the full development of a fire event.Tested at 25°CDeveloped fire protectionOur smoke tested range
Smoke tested options are available in metal faced and plasterboard faced configurations across our access panel and riser door ranges.
Applications
Smoke control is a critical element of fire safety strategy. Access panels and riser doors in the following locations should be specified with smoke testing certification.
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 smoke leakage classifications are independently tested at UKAS accredited laboratories and certified to current British and European standards.
BS EN 1634-1:2014Fire resistance and smoke control tests for door and shutter assemblies, openable windows and elements of building hardware. Part 3: Smoke control test for door and shutter assembliesBS EN 13501-2:2016Fire classification of construction products and building elements. Part 2: Classification using data from fire resistance tests, excluding ventilation services. Includes Sa and S200 smoke classificationsBS EN 1634-1:2014Fire resistance test for door and shutter assemblies. Often tested alongside smoke leakage to provide combined fire and smoke rated products in a single test programme
Approved Document B (2019)Fire safety. Requires smoke control measures in protected corridors, lobbies, stairways and service risers. References the need for smoke seals on doors in escape routesBS 9999:2017Fire safety in the design, management and use of buildings. Code of practice. Provides recommendations for smoke control in corridors and escape routes beyond the minimum requirements of Approved Document BBS 9991:2015Fire safety in the design, management and use of residential buildings. Code of practice. Specific guidance for smoke control in blocks of flats including common corridors and lobbiesHTM 05-02Firecode. Guidance on fire safety in healthcare premises. Requires smoke control in compartment walls and corridors to support progressive horizontal evacuation strategiesComparison
Smoke tested options are available across most product types and face configurations. Use this table to check availability and classifications for your specification.
| Product | Face Type | Smoke Tested | Classification | Combined Fire Rating | Test Standard |
|---|---|---|---|---|---|
| Access Panel | Metal Faced | Available | Sa and S200 | Up to 120 minutes | BS EN 1634-3 |
| Access Panel | Tile Faced | Not available | N/A | Up to 120 minutes | N/A |
| Access Panel | Plasterboard Faced | Available | Sa and S200 | Up to 120 minutes | BS EN 1634-3 |
| Riser Door | Metal Faced | Available | Sa and S200 | Up to 120 minutes | BS EN 1634-3 |
| Riser Door | Plasterboard Faced | Available | Sa and S200 | Up to 120 minutes | BS EN 1634-3 |
Access Panel Metal Faced Smoke TestedAvailable ClassificationSa and S200 Combined Fire RatingUp to 120 minutes Test StandardBS EN 1634-3 Access Panel Tile Faced Smoke TestedNot available ClassificationN/A Combined Fire RatingUp to 120 minutes Test StandardN/A Access Panel Plasterboard Faced Smoke TestedAvailable ClassificationSa and S200 Combined Fire RatingUp to 120 minutes Test StandardBS EN 1634-3 Riser Door Metal Faced Smoke TestedAvailable ClassificationSa and S200 Combined Fire RatingUp to 120 minutes Test StandardBS EN 1634-3 Riser Door Plasterboard Faced Smoke TestedAvailable ClassificationSa and S200 Combined Fire RatingUp to 120 minutes Test StandardBS EN 1634-3 FREQuently asked questions
EXPLORE OTHER RATINGS
Smoke tested products are often specified alongside acoustic, airtight and fire rated 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 combination of fire, smoke, acoustic and airtight ratings for your project. We provide test data, NBS specifications, BIM objects, and on-site support.