ADVERTISEMENT

Lexus imagines the of future electric vehicles

Beyond electrification

Published Dec 29, 2023 02:21 am
122923LexusLFZC1.jpg
The Lexus LF-ZC

What would the future battery electric vehicles look and drive like? Lexus attempts to answer this question with two concepts unveiled at the recent Japan Mobility Show 2023. The answer is an all-new architecture that brings together state-of-the-art software and hardware platforms for an elevated automotive experience.

The vehicle integrates innovative use of bamboo, a long-time signature Lexus material, to offer not only environmental but also social sustainability. The vehicle operates on "Arene OS," an operating system much like in your phone or computer, to seamlessly integrate digital life into the vehicle, providing personalized driving experiences as well as extended entertainment and connectivity.

122923LexusLFZL2.jpg
The Lexus LF-ZL

The first example is the LF-ZC (Lexus Future Zero-emission Catalyst) concept as part of the forthcoming next-generation Lexus BEV lineup. The second, called the LF-ZL (Lexus Future Zero-emission Luxury), presents an innately sustainable, guilt-free luxury lifestyle.

Both cars are characterized by their sleek proportions, low center of gravity, spacious cabin, and an emotionally charged design that seamlessly blends functionality and aesthetics.

They form sleek silhouettes extending from the low-slung hood and tapering the cabin towards the rear, the prominent rear wheel flares are accentuated, achieving a balance between high aerodynamic performance and a wide stance. 

122923LexusLFZC2.jpg
Interior of the Lexus LF-ZC

Inside the LF-ZC, the driver is greeted by a digitalized Intelligent Cockpit. Utilizing advanced AI technology, the next-generation voice recognition system provides customers with a service experience reminiscent of conversing with an attentive and accommodating butler, thanks to its swift response to voice commands and perceptive suggestions. Going beyond the conventional navigation features, it provides route and mode recommendations that align with the driver's preferences by considering their daily activity patterns and mood.

122923LexusLFZL1.jpg
Interior of the Lexus LF-ZL integrating bamboo into its design elements.

The front occupants sit in a low, forward position that creates a sense of spaciousness in the interior. The fully flat floor and panoramic roof add overhead expansiveness. Various functions are consolidated into the left digital pad within arm's reach. Convenience features such as music, climate control, phone and AI functions have been grouped within the right digital pad.

A set-back meter display that projects information on to the front windshield using the same concept as an HUD. Additionally, digital mirrors are installed on both sides of the vehicle. The expansive monitor on the front passenger side functions as a highly programmable open platform for entertainment and diverse applications, broadening the prospects for future mobility.

Throughout the interior, the Bamboo CMF (Color, Material, Finish) Concept represents Lexus's unique sustainability efforts, focusing on circular resource use while delivering fresh experiential value to customers through an innovative interior design. 

122923LexusLFZL3.jpg
The LF-ZL, simply point to a landmark and the AI will identify the building and give you more information about it.

In the LF-ZL, this AI is taken to the next level. It uses "Interactive Reality in Motion" where the car's onboard sensors work in conjunction with digital data from the surroundings. When drivers point to objects or places of interest during their journey, the car's display promptly delivers information along with voice guidance, enabling the car to enhance the connection between occupants and their surroundings.

The LF-ZC, along with the flagship LF-ZL, are set for release in 2026 and hope to offer a prestigious driving experience beyond just the car.

Related Tags

Lexus battery electric vehicle
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.