Get hands-on experience with new components, materials and tools, speak directly with technical experts, and learn from peers facing the same manufacturing and assembly challenges.
Many registrants are directly interested in solutions like yours even before the show begins. By exhibiting, you position your brand front and centre—ensuring these key decision-makers think of you first as they plan their next strategic investment.
Showcase your groundbreaking solutions through live demonstrations and features.
Network with key industry leaders and OEM’s from companies like Airbus, BAE Systems, JLR, MBDA and Network Rail to demonstrate how your solutions can meet their needs.
Capture valuable leads seeking the latest offerings in composites including lightweight materials, complex and customised components, enhanced durability and corrosion resistance.
Emphasise how your approach can streamline production, reduce material waste, and accelerate time to market – critical for staying competitive in the composites sector.
Are you ready to showcase your game-changing Composites Engineering solutions that meet industry needs and goals? We’d love to see you there.
Dedicated Composites Zone, sponsored by PRF Composites
In previous years, we have carefully and strategically removed all industry zones to enhance exposure for exhibitors and visitors from various sectors. However, we have decided to retain the Composites Zone due to its longstanding prominence, attracting a significant number of exhibitors and visitors. The composites forum and networking area will remain integral parts of the show floor.
What to expect this year: NEW: PRF’s REEPREEG live demo, a revolutionary process completing fibre-reinforced polymer curing in just 5 minutes at 160°c. – ONLY at Advanced Engineering 2025
NEW: Dedicated industry networking sessions for Aerospace, Motorsports, Automotive, Medical, Marine & Maritime, Defence, Sports & Leisure, and Renewables.
Meet some of the experts who participated in the 2024 Advisory Board and forum. They collaborated with us to continue driving the UK’s only Composite event, spotlighting the latest trends that are shaping the future of the industry.
Brian Holliday
Managing Director
Siemens Digital Industries
Lucy Parsons
Sales Account Manager
Nikon
Matthew atkinson
Lead Research Engineer
JLR
Shaun Harris
Director Support
Royal Air Force
Solange Baena
UK Lead Aviation Environmental Roadmap
Airbus
Stefan lawrenson
Senior Polymer Chemist
Scott Bader
Tony Lloyd
Principle Research Engineering GKN Aerospace
Exhibitors who attended Composites Engineering solutions.
Discover Composites Engineering exhibitors in 2026
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);
}
});
}
});