Fire RATED
Fire rated access panels, riser doors and loft hatches, independently tested and certified to BS EN 1634-1.

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

A fire rated access panel is a hinged or removable panel installed in walls, ceilings or floors that has been independently tested and certified to maintain fire resistance for a specified period. Fire rated access panels prevent fire and hot gases from spreading through openings in fire compartment walls, floors and ceilings, maintaining the integrity of the building’s passive fire protection strategy.Fire ratings are expressed as a time period, typically 30, 60, 90 or 120 minutes, indicating how long the panel will resist the passage of fire. Ratings are classified as either integrity only (E), meaning the panel prevents flames and hot gases from passing through, or integrity and insulation (EI), meaning it also limits temperature rise on the unexposed face.Under Building Regulations Approved Document B (Fire Safety), any access panel installed in a fire-rated wall, ceiling or floor must achieve the same fire resistance as the surrounding construction. This applies across all building types including residential, commercial, healthcare, education and infrastructure projects. Fire rated options are also available for riser doors, loft hatches and meter overboxes.
Reviewed by: Rapid Access Technical Team Last updated: February 2026 Certifications: ISO 9001 | ISO 14001 | ISO 45001
UNDERSTANDING FIRE RATING
Fire ratings are classified by two criteria, integrity and insulation. Understanding the difference helps you specify the correct product for your project.
Tested to BS EN 1634-1:2014Integrity measures the panel’s ability to prevent the passage of flames and hot gases from the fire-exposed side to the unexposed side. An integrity-only rating is typically specified where temperature control on the unexposed face is not critical, for example, within service risers where the opposing side is not an occupied area.E30E60E90
Tested to BS EN 1634-1:2014An insulated fire rating means the panel provides both integrity and insulation, preventing flame passage while also limiting temperature rise on the unexposed face to below 140°C average (180°C peak). This is required wherever the unexposed side is an occupied or escape route area, preventing radiant heat from causing injury or igniting materials nearby.E130E160E190E1120FIRE RATED PRODUCTS
Fire rated options are available across our full range of access panels, riser doors and loft hatches, in metal faced, tile faced and plasterboard faced configurations.
Applications
Building Regulations Approved Document B sets out where fire resistance is mandatory. These are the most common applications requiring fire rated access solutions.
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 Rapid Access fire rated products are independently tested by UKAS accredited laboratories. Full test certificates and documentation are available for download.
BS EN 1634-1:2014Fire resistance tests for door and shutter assemblies. Part 1: Fire doors and shuttersBS EN 1364-1:2014Fire resistance tests for non-loadbearing elements. Part 1: WallsBS EN 1364-2:2018Fire resistance tests for non-loadbearing elements. Part 2: CeilingsBS 476: Part 22:1987Methods for determination of fire resistance of non-loadbearing elements of construction (legacy standard, still referenced)
Approved Document B (Fire Safety)Volume 1: Dwellings & Volume 2: Non-domestic buildings. Sets fire resistance requirements for all building elementsBS 9999:2017Fire safety in the design, management and use of buildings. Code of practiceHTM 05-02: FirecodeFire safety guidance specific to healthcare premisesBB100: Fire Safety in SchoolsDesign guidance for education buildingsComparison
Not all face types and products share the same maximum fire rating. Use this table to find the right combination for your specification.
| Product | Face Type | Max Integrity (E) | Max Insulated (EI) | Test Standard |
|---|---|---|---|---|
| Access Panel | Metal Faced | 90 minutes | 120 minutes | BS EN 1634-1:2014 |
| Access Panel | Tile Faced | 90 minutes | 120 minutes | BS EN 1634-1:2014 |
| Access Panel | Plasterboard Faced | 90 minutes | 120 minutes | BS EN 1634-1:2014 |
| Riser Door | Metal Faced | 90 minutes | 120 minutes | BS EN 1634-1:2014 |
| Riser Door | Plasterboard Faced | 90 minutes | 120 minutes | BS EN 1634-1:2014 |
| Loft Hatch | Metal Faced | 60 minutes | 60 minutes | BS EN 1634-1:2014 |
| Meter Overbox | Metal Faced | 60 minutes | N/A | BS EN 1634-1:2014 |
Access Panel Metal Faced Max Integrity (E) 90 minutes Max Insulated (EI) 120 minutes Test Standard BS EN 1634-1:2014 Access Panel Tile Faced Max Integrity (E) 90 minutes Max Insulated (EI) 120 minutes Test Standard BS EN 1634-1:2014 Access Panel Plasterboard Faced Max Integrity (E) 90 minutes Max Insulated (EI) 120 minutes Test Standard BS EN 1634-1:2014 Riser Door Metal Faced Max Integrity (E) 90 minutes Max Insulated (EI) 120 minutes Test Standard BS EN 1634-1:2014 Riser Door Plasterboard Faced Max Integrity (E) 90 minutes Max Insulated (EI) 120 minutes Test Standard BS EN 1634-1:2014 Loft Hatch Metal Faced Max Integrity (E) 60 minutes Max Insulated (EI) 60 minutes Test Standard BS EN 1634-1:2014 Meter Overbox Metal Faced Max Integrity (E) 60 minutes Max Insulated (EI) N/A Test Standard BS EN 1634-1:2014 FREQuently asked questions
EXPLORE OTHER RATINGS
Fire rated products are often specified alongside acoustic, 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.