Device monitoring abnormal activities of Li-ion battery for personal mobility

Summary

The concept of a device that monitors abnormal activities of Li-ion batteries in personal mobility devices, such as e-scooters and e-bikes, has been proposed. This device would be connected between the charging port and the charger, providing real-time monitoring and automatic throttling in case of suspicious changes in voltage, current, temperature, etc.

Root Cause

The root cause of the need for such a device is the potential for thermal runaway and electrical fires in Li-ion batteries due to:

  • Overcharging
  • Overheating
  • Physical damage
  • Manufacturing defects

Why This Happens in Real Systems

This happens in real systems because:

  • Inadequate charging protocols
  • Poor battery management systems
  • Insufficient thermal management
  • Lack of real-time monitoring

Real-World Impact

The real-world impact of such a device would be:

  • Improved safety for users
  • Reduced risk of electrical fires and thermal runaway
  • Increased reliability of personal mobility devices
  • Prolonged battery lifespan

Example or Code (if necessary and relevant)

import numpy as np

# Example of a simple voltage monitoring system
voltage_threshold = 4.2  # volts
voltage_reading = np.random.uniform(3.5, 4.5)  # simulate voltage reading

if voltage_reading > voltage_threshold:
    print("Abnormal voltage detected!")

How Senior Engineers Fix It

Senior engineers would fix this by:

  • Designing robust battery management systems
  • Implementing real-time monitoring and throttling
  • Conducting thorough testing and validation
  • Ensuring compliance with safety standards

Why Juniors Miss It

Juniors may miss this because:

  • Lack of experience with Li-ion battery systems
  • Insufficient knowledge of safety protocols and standards
  • Inadequate understanding of thermal and electrical dynamics
  • Overemphasis on functionality over safety

Leave a Comment