Advanced Engineering 2026 · NEC Birmingham

Composites UK at Advanced Engineering 2026

Composites UK is proud to return as a headline industry partner at Advanced Engineering 2026.

Composites UK at Advanced Engineering 2026

Composites UK is proud to return as a headline industry partner at Advanced Engineering 2026.

As the UK’s trade association for the composites industry, Composites UK is dedicated to promoting the strength, innovation, and capability of the UK composites supply chain. Throughout the show, the Association will highlight members’ expertise and support companies of all sizes in connecting with new opportunities.

Exhibit at the Advanced Engineering Show

There are two ways in which our member companies can exhibit at the Advanced Engineering Show.

Join the Composites UK Pavilion

The Composites UK Pavilion is a collaborative stand built on the premise of being cost effective and high impact – a perfect turnkey solution for smaller companies looking for a step into the exhibition using limited resources. The pavilion houses around 18 companies creating an impactful way to exhibit as part of a strong, collective presence, in the centre of the Composites Engineering Zone.

Discounted Floor Space

Composites UK member companies exhibiting independently receive a 10% discount on floor space which can be saved or reinvested into your presence to really stand out.

Speak on the Composites Zone Stage

Composites UK organises the forum sessions that take place within the Composites Zone, delivering a programme of expert-led presentations and discussions. Speaker submissions are open until 29th May.

Get Involved in the Industry Awards

On the evening of 4 November, Composites UK hosts its Annual Industry Awards Dinner at the neighbouring National Motorcycle Museum – celebrating excellence across the sector. Book early to attend to get the best rates. Award submissions are now until 5pm on 15th June 2026. The categories, entry forms and subsequently the shortlist can be found below.

Join Composites UK

Whether you’re looking to raise your profile, access industry insights, or connect with key players across the supply chain, Composites UK membership offers a range of benefits to support your business. Find out more below, or speak to our team at the show. Visit website: www.compositesuk.co.uk

Thank you to our strategic partners and supporters

document.addEventListener("DOMContentLoaded", function() { const tab1 = document.getElementById('top-tab-1'); const tab2 = document.getElementById('top-tab-2'); // 1. Read the url parameter marker (?view=exhibitor) directly from the address bar const urlParams = new URLSearchParams(window.location.search); let currentView = urlParams.get('view'); // 2. If no URL parameter exists yet, check the page name to determine the default section const currentPath = window.location.pathname; // Auto-detect explicit Exhibitor pages (Add any explicit exhibitor slugs here) if (!currentView) { if (currentPath.includes('/advanced-engineering-exhibitors') || currentPath.includes('/exhibit') || currentPath.includes('/sponsorship')) { currentView = 'exhibitor'; } else { currentView = 'visitor'; // Default fallback } } // 3. Highlight the correct top tab based on the final decision if (currentView === 'exhibitor' && tab2) { if (tab1) tab1.classList.remove('active-tab'); tab2.classList.add('active-tab'); } else if (tab1) { if (tab2) tab2.classList.remove('active-tab'); tab1.classList.add('active-tab'); } // 4. Force all navigation links to remember this view state across page reloads // This dynamically appends ?view=exhibitor or ?view=visitor to links before they are clicked if (currentView) { document.querySelectorAll('a').forEach(link => { const href = link.getAttribute('href'); // Avoid altering external domains, anchor tags, or javascript links if (href && href.startsWith('http') && href.includes(window.location.hostname) && !href.includes('#')) { try { const linkUrl = new URL(href); linkUrl.searchParams.set('view', currentView); link.setAttribute('href', linkUrl.toString()); } catch (e) { // Fail-safe for malformed URL strings } } else if (href && href.startsWith('/') && !href.includes('#')) { // Handle relative root links (e.g., /our-vision/) const separator = href.includes('?') ? '&' : '?'; link.setAttribute('href', href + separator + 'view=' + currentView); } }); } });