Advanced Engineering 2026 · NEC Birmingham

You are invited to visit the Auto & Aero Networking Lounge​

Network with peers across aerospace and automotive shaping the future of engineering and manufacturing. The lounge will also host industry networking meet-ups, so register now to be the first to know when sign-up becomes available.

You are invited to the Auto & Aero Networking Lounge​

A dedicated space for professionals from the aerospace and automotive sectors to connect, exchange ideas, and build valuable new relationships.
 
Designed as a hub for conversation and collaboration, the lounge brings together manufacturers, suppliers, engineers, and industry decision-makers in a relaxed setting at the heart of the event.
 
It will also host industry networking meet-ups, so register  to know when sign-up becomes available.

Pod Video

Live content from the heart of the industry at the lounge
 
The POD video studio will capture the conversations, innovations and hot topics shaping the industry. Expect fresh live content, expert insights and on-the-spot interviews straight from the event floor.
 

The companies in attendance

Attended by the UK's top engineers and industry professionals

Who should visit the Auto and Aero Networking Lounge?

The Auto and Aero Networking Lounge is designed for professionals across the automotive, aerospace and motorsport supply chains. It is a space for OEMs, Tier 1 and Tier 2 suppliers, engineers, designers, buyers, innovators and technical decision-makers to connect, exchange ideas and explore new partnerships.

What can I expect from the Networking Lounge?

Visitors can expect a relaxed but business-focused environment where conversations. The Lounge is a place to meet relevant contacts, discuss current engineering challenges, discover new capabilities and build relationships with companies working across materials, components, manufacturing, testing, electronics and performance technologies.

Why is this relevant for automotive and aerospace professionals?

These sectors are increasingly connected through shared challenges and innovations, from lightweighting and electrification to advanced materials, precision manufacturing and performance optimisation. The Networking Lounge brings these industries together, creating opportunities for cross-sector collaboration and knowledge sharing that can lead to real commercial and technical value.

How can the Networking Lounge help me make valuable connections?

The Lounge makes it easier to start conversations with people who matter to your business. Whether you are looking for new suppliers, engineering partners, customers or insights from adjacent sectors, it offers a central meeting point within the event to network more efficiently and make high-value connections in less time.

Find out more about Advanced Engineering

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); } }); } });