Advanced Tire-Blowout Control for Distributed Drive Battery Electric Vehicles

The safety of road vehicles remains a paramount concern in automotive engineering. Among various failure modes, tire blowouts are particularly hazardous, contributing to a significant proportion of traffic accidents and exhibiting an alarmingly high fatality rate, especially at high speeds. While modern vehicles are increasingly equipped with Tire Pressure Monitoring Systems (TPMS) for early warning, the unpredictable nature of blowouts—caused by factors like tread wear, curb impact, poor road conditions, and thermal stress—demands robust post-failure control strategies. This is where the unique architecture of the distributed drive battery electric vehicle offers transformative potential. Featuring individual wheel-side or in-wheel motors at each corner, this configuration allows for independent, precise, and rapid torque control at all four wheels. This inherent capability makes distributed drive battery electric vehicles a pivotal platform for research into enhancing stability and braking control following a tire blowout. In this article, I will delve into the current state of blowout control, discuss the construction of a high-fidelity CarSim-Simulink dynamics model to simulate this critical failure, and explore advanced emergency control methodologies tailored for distributed drive battery electric vehicles.

The architecture of a battery electric vehicle with distributed drives fundamentally changes the paradigm of vehicle dynamics control. By having an electric motor directly coupled to each wheel, the vehicle controller gains an unprecedented ability to generate differential longitudinal forces almost instantaneously. This capability is crucial for maintaining directional stability when one tire suddenly loses pressure and radius, creating a severe yaw disturbance. Research into blowout control for such vehicles has primarily focused on stability enhancement. Current studies demonstrate that through intelligent torque vectoring—redistributing drive and brake forces among the healthy wheels—the undesired yaw moment caused by the blown tire can be effectively counteracted. Furthermore, layered control strategies that coordinate braking pressure (in vehicles with blended braking) and motor torque have shown promise in regaining stable vehicle motion post-blowout. The synergy between independent wheel control and the fast response of electric motors positions the distributed drive battery electric vehicle as the ideal testbed for developing next-generation safety systems that can mitigate the dangers of tire failures.

Constructing a High-Fidelity Dynamics Model for Blowout Simulation

Developing and validating control algorithms for a tire blowout scenario on a real battery electric vehicle is prohibitively dangerous and expensive. Therefore, high-fidelity simulation is an indispensable first step. The core challenge in modeling a blowout lies in accurately representing the immediate changes in tire dynamics and vertical load transfer. Following a blowout, the effective rolling radius of the affected tire decreases drastically, leading to a sudden shift in the vertical load distribution across the axles. This load transfer directly impacts the available lateral and longitudinal forces at all tires, destabilizing the vehicle. My approach to building a suitable model involves a three-step process: developing a high-dimensional lateral-longitudinal-vertical coupled dynamics model that incorporates this load transfer, creating a co-simulation framework using CarSim and Simulink that includes enhanced wheel rotational dynamics, and finally, validating this model against standard benchmarks.

Leveraging CarSim for Vehicle Dynamics

CarSim is an industry-standard software for simulating vehicle dynamics with a high degree of accuracy. Its strength lies in its detailed parameterized models for vehicle bodies, suspensions, and tires, which can be tailored to represent a specific battery electric vehicle platform. For my research, I utilize CarSim to model the core vehicle body dynamics—including lateral, longitudinal, yaw, and roll motions—under the perturbed conditions of a tire blowout. CarSim’s ability to seamlessly interface with MATLAB/Simulink is particularly valuable. This co-simulation capability allows me to replace the default powertrain and brake models with custom models representing the independent wheel motors of a distributed drive battery electric vehicle and to implement my own control algorithms in the Simulink environment. The software can simulate extreme driving conditions safely, providing rich data on vehicle states and facilitating the visualization of complex maneuvers through animations.

Building the Co-Simulation Model in CarSim-Simulink

Since CarSim does not have a built-in model for a tire blowout on a distributed drive battery electric vehicle, I construct a co-simulation model. The workflow is as follows:

  1. Vehicle Platform: In CarSim, I select a standard B-class hatchback model as my base. I then modify its powertrain configuration to represent a four-independent-motor layout, effectively creating a model for a distributed drive battery electric vehicle. Key parameters are adjusted to match typical BEV characteristics, such as a lower center of gravity due to the battery pack placement.
  2. Tire Model Implementation: In Simulink, I implement a well-established tire model capable of handling the nonlinear and combined slip conditions during a blowout. The Dugoff tire model is a popular choice for control-oriented studies due to its relative simplicity and physical interpretability. The model calculates tire forces based on vertical load, slip ratio, and slip angle. The formulas for the longitudinal force $F_x$ and lateral force $F_y$ are:
    $$ F_x = C_\sigma \frac{\sigma}{1+\sigma} f(\lambda) $$
    $$ F_y = C_\alpha \frac{\tan \alpha}{1+\sigma} f(\lambda) $$
    where $C_\sigma$ is the longitudinal stiffness, $C_\alpha$ is the cornering stiffness, $\sigma$ is the longitudinal slip ratio, $\alpha$ is the slip angle, and $\lambda$ is a variable defined as:
    $$ \lambda = \frac{\mu F_z (1+\sigma)}{2 \sqrt{(C_\sigma \sigma)^2 + (C_\alpha \tan \alpha)^2}} $$
    and
    $$
    f(\lambda) = \begin{cases}
    (2 – \lambda) \lambda, & \text{if } \lambda < 1 \\
    1, & \text{if } \lambda \geq 1
    \end{cases}
    $$
    Here, $\mu$ is the road friction coefficient and $F_z$ is the instantaneous vertical load.
  3. Vertical Load Transfer Model: A critical sub-module in Simulink calculates the real-time vertical load on each wheel. During a blowout, the load on the damaged tire decreases while the load on the opposite tire on the same axle increases. I model this using a simplified quasi-static transfer:
    $$ \Delta F_{z,roll} = \frac{m a_y h_{cg}}{t} $$
    $$ \Delta F_{z,pitch} = \frac{m a_x h_{cg}}{L} $$
    where $m$ is the vehicle mass, $a_y$ and $a_x$ are lateral and longitudinal accelerations, $h_{cg}$ is the center of gravity height, $t$ is the track width, and $L$ is the wheelbase. The blown tire’s load is further reduced by a factor accounting for its loss of stiffness.
  4. Model Integration: The Simulink model, containing the Dugoff tire force calculation, vertical load transfer logic, and motor torque controllers, is linked to the CarSim vehicle model. CarSim provides essential states (vehicle speed, yaw rate, slip angles, etc.) to Simulink, and Simulink returns the calculated tire forces and/or motor torque demands back to CarSim. This forms a closed-loop co-simulation environment suitable for testing blowout controllers. The open-loop version of this model, which is essential for initial validation, accepts steering angle and driver torque commands as inputs and outputs full vehicle dynamics states.
Table 1: Key Parameters for Distributed Drive Battery Electric Vehicle Dynamics Model
Parameter Symbol Value Unit
Vehicle Mass $m$ 1550 kg
Yaw Inertia $I_z$ 2500 kg·m²
Distance from CoG to Front Axle $l_f$ 1.1 m
Distance from CoG to Rear Axle $l_r$ 1.6 m
Track Width $t$ 1.55 m
Center of Gravity Height $h_{cg}$ 0.55 m
Nominal Tire Radius $R$ 0.35 m
Peak Motor Torque per Wheel $T_{max}$ 800 Nm

Control Methodologies for Blowout Mitigation in Distributed Drive BEVs

The primary objective after a tire blowout on a battery electric vehicle is twofold: first, to maintain or regain lateral stability and prevent the vehicle from departing its lane; and second, to bring the vehicle to a safe stop or managed state. The independent torque control of a distributed drive system provides multiple actuators to achieve these goals. I investigate a hierarchical approach, where a high-level controller determines the required stabilizing yaw moment and braking force, and a low-level controller allocates torque commands to the individual motors and friction brakes.

Stability Control Through Yaw Moment Compensation

When a left-rear tire blows out, for example, it creates a sudden positive yaw moment (clockwise), pulling the vehicle to the right. The immediate control goal is to generate a counteracting negative yaw moment. For a distributed drive battery electric vehicle, this can be achieved by differential driving/braking forces on the front wheels or between the healthy rear wheel and the front wheels. A reference yaw rate $\dot{\psi}_{des}$ based on the driver’s steering input and vehicle speed is compared to the actual yaw rate $\dot{\psi}$. The yaw moment demand $M_z$ can be computed using a simple proportional controller or a more advanced sliding mode controller for robustness:
$$ M_z = K_p (\dot{\psi}_{des} – \dot{\psi}) + K_d \frac{d}{dt}(\dot{\psi}_{des} – \dot{\psi}) $$
This required yaw moment is then translated into a differential force demand $\Delta F_x$:
$$ M_z = \Delta F_x \cdot \frac{t}{2} $$
This force is allocated as torque commands to the appropriate motors. Crucially, the controller must account for the reduced force capacity of the blown tire and the shifted vertical loads.

Coordinated Emergency Braking Strategies

Once stability is initially contained, the next priority is controlled deceleration. However, a hard brake application on the blown tire can cause wheel lock-up or exacerbate instability. Therefore, a coordinated braking strategy is essential. I propose a strategy where the primary braking force is applied to the two tires on the axle opposite to the blown tire (e.g., if a rear tire blows, front-wheel braking is primary). The healthy tire on the same axle as the blown tire provides modulated braking to assist in stability control and overall deceleration. The blown tire itself may receive a minimal holding torque to prevent it from folding under or detaching from the rim. The total braking force $F_{x, total}$ is determined by a longitudinal speed controller, which could be a PID or a model-based controller tracking a safe deceleration profile. The torque command for a healthy wheel $i$ is then:
$$ T_{i} = F_{x, i} \cdot R + I_w \dot{\omega}_i $$
where $I_w$ is the wheel inertia and $\dot{\omega}_i$ is the wheel angular acceleration.

Table 2: Comparison of Post-Blowout Control Strategies for a Battery Electric Vehicle
Control Strategy Primary Actuators Key Objective Advantages for Distributed Drive BEV Challenges
Yaw Stability Control Differential front/rear wheel torques Maintain intended path, prevent spin Extremely fast electric motor response; precise torque control. Requires accurate estimation of vehicle states and tire-road friction.
Coordinated Emergency Braking Combination of healthiest wheels Safe deceleration without loss of stability Independent control allows optimal force distribution; regenerative braking can be integrated smoothly. Managing brake blending (friction vs. regenerative) during failure.
Velocity Tracking & Following All healthy wheel motors Maintain a safe speed/distance when immediate stop is unsafe Electric motors provide seamless torque for longitudinal control while stability control is active. Complex controller design for coupled lateral-longitudinal dynamics.

Advanced Maneuvers: Lane Keeping and Controlled Lane Change

In dense traffic, an immediate emergency stop might not be the safest option, as it could cause a high-speed rear-end collision. For a battery electric vehicle experiencing a blowout, a more advanced strategy involves temporarily maintaining speed or performing a controlled lane change to a safer stopping area. This requires integrated lateral and longitudinal control. A sliding mode controller is well-suited for this due to its robustness to model uncertainties. A longitudinal velocity controller can be designed to track the speed of a leading vehicle (adaptive cruise control mode under failure), using a sliding surface $s_v$:
$$ s_v = (V_x – V_{target}) + \Lambda \int (V_x – V_{target}) dt $$
where $V_x$ is the vehicle’s longitudinal speed, $V_{target}$ is the target speed (e.g., from a radar sensor), and $\Lambda$ is a positive tuning parameter. The control law derived from reaching condition $s_v \dot{s}_v < 0$ determines the total traction/braking force needed, which is then allocated by the lower-level controller.

For a lane change, a trajectory can be planned using polynomial functions (e.g., a quintic polynomial in time) that satisfies boundary conditions on lateral position, velocity, and acceleration. A trajectory tracking controller then computes the necessary front steering angle and differential torque inputs to follow this path while managing the instability from the blown tire. The entire control architecture for a distributed drive battery electric vehicle under such a complex scenario becomes a multi-input, multi-output (MIMO) problem that leverages the full actuator set of the vehicle.

Conclusion and Future Perspectives

The integration of distributed electric drives presents a revolutionary opportunity to enhance vehicle safety during critical failures like tire blowouts. The core advantage of a battery electric vehicle with this architecture is the decoupled, fast, and precise control of longitudinal force at each wheel, providing a powerful toolkit for stability and braking intervention. My analysis, based on high-fidelity co-simulation modeling, confirms that effective post-blowout control requires a hierarchical approach: first, immediate yaw stability compensation through differential torque vectoring; second, a coordinated braking strategy that prioritizes the healthy wheels; and third, the potential for higher-level maneuvers like speed adaptation or lane changes when the traffic context demands it. The successful implementation of these strategies hinges on accurate real-time estimation of vehicle states and tire-road conditions, an area where the plethora of sensors often found on modern battery electric vehicles can be leveraged. Future research will focus on refining these control algorithms, testing them under more diverse and extreme conditions, and ultimately validating them on physical prototypes of distributed drive battery electric vehicles to pave the way for their deployment in next-generation automotive safety systems.

Scroll to Top