• Materials

Toyota and QunaSys: Quantum Computing for EV Battery Materials

Toyota Motor

Toyota partnered with Japanese quantum software startup QunaSys to research new EV battery materials, exploring how quantum computers can improve the accuracy and speed of electronic structure simulation.

Key Outcome
Joint research announced in October 2021, with the partners considering use of Japan's first commercial IBM quantum computer in Kawasaki. The work is exploratory materials research; no material discoveries or production results have been announced.

The Problem

Battery chemistry is the gating factor for electric vehicle range, charging speed, and cost. Finding better electrode and electrolyte materials means predicting how candidate compounds behave at the level of electrons, and that prediction is brutally hard.

The standard classical tool is density functional theory (DFT), which models the electronic structure of a material. DFT runs on supercomputers can take months for demanding systems, and the approximations baked into DFT limit accuracy precisely where battery chemistry gets interesting: strongly interacting electrons at electrodes and interfaces. When the simulation is unreliable, the only fallback is slow, expensive trial and error in the lab.

This is the opening for quantum computing. A quantum processor can in principle represent a molecule’s electronic state natively, without the approximations that constrain classical methods.

The Partnership

In October 2021, Nikkei reported that Toyota Motor would harness quantum computing to develop battery materials in joint research with QunaSys, a Tokyo-based startup specializing in quantum algorithms for chemistry.

The documented facts:

  • The goal is new battery materials that improve performance and power supply capability for electric vehicles.
  • The research focuses on using quantum computing to improve materials simulation based on DFT, targeting both accuracy and speed, since classical runs of such simulations can take months and remain difficult to perform accurately.
  • The partners were considering using Japan’s first commercial quantum computer, an IBM machine brought online by IBM and the University of Tokyo in July 2021 and housed at the Kawasaki Business Incubation Center.

QunaSys is one of the most established quantum chemistry software companies in Japan and works across the major quantum hardware platforms, which is what makes it a natural partner for an automaker that wants quantum expertise without building a quantum team from scratch.

How Quantum Chemistry for Batteries Works

The near-term workhorse algorithm for molecular problems is the variational quantum eigensolver (VQE): a hybrid loop where a quantum circuit prepares a trial electronic state and measures its energy, and a classical optimizer adjusts the circuit to drive that energy toward the true ground state. The ground-state energy is the foundation for the quantities battery researchers care about, such as voltages, stability, and reaction energetics.

The snippet below is a simplified illustration of how a small lithium-containing molecule can be set up for VQE with open-source tools. It is teaching code, not Toyota’s or QunaSys’s research code, and real battery materials are far beyond this scale today.

# Simplified illustration: ground-state energy of LiH with VQE
from qiskit_nature.second_q.drivers import PySCFDriver
from qiskit_nature.second_q.mappers import JordanWignerMapper

# A minimal lithium hydride model
driver = PySCFDriver(atom="Li 0 0 0; H 0 0 1.595", basis="sto-3g")
problem = driver.run()

# Map the electronic Hamiltonian onto qubits
hamiltonian = JordanWignerMapper().map(problem.second_q_ops()[0])

# From here, a VQE loop optimizes a parameterized circuit
# to minimize the expected energy of this Hamiltonian.

Today such calculations on real hardware are limited to small molecules that classical computers already handle easily. The industrial logic is to build workflows, expertise, and benchmarks now, so that as hardware scales, the methods are ready for molecules classical machines cannot treat accurately.

What the Record Shows, and What It Does Not

The public record documents a partnership and a research direction, not results. As of the announcement, the work was framed as joint research under consideration for Japan’s commercial IBM quantum system, and neither company has published specific simulation outcomes, accuracy benchmarks, or discovered materials from the collaboration.

That restraint is worth noting. Toyota’s posture matches the realistic industry consensus: quantum chemistry for battery materials is a long-term bet, and the current phase is about method development, not production breakthroughs.

Why This Matters

  • Batteries are a flagship quantum use case. Nearly every major automaker has some form of quantum battery materials research, because the economic payoff from even one better material is enormous.
  • Partnering beats building in-house. Toyota’s route, pairing with a specialist quantum chemistry startup, is the dominant pattern for industrial quantum adoption.
  • Japan’s quantum ecosystem is real infrastructure. The IBM system in Kawasaki, operated with the University of Tokyo, anchors a national effort that companies like Toyota can plug into directly.

Sources