Giter Club home page Giter Club logo

jump_bms's Introduction

JUMP Battery Management System Specs

This repo is a collection of notes and tools made while reversing operation of the BMS in JUMP battery packs.

Thanks to Jehu and Alex for documenting their work on waking up these batteries:

About the Battery

  • Manufactured by BYD. Model INR18650MH1-10S4P (R10 BMS)

    Battery Label

The BMS speaks the CANopen protocol which makes it easy to fetch all data and interact with the device. At minimum read these two links if not familiar with CAN bus:

  • https://en.wikipedia.org/wiki/CAN_bus

  • https://en.wikipedia.org/wiki/CANopen

  • CAN bus baud rate: 100000

  • CANopen device profile is unknown and likely vendor specific. The Energybus / Cia-454 profile for light electric vehicles is worthy of investigation but its not publicly available...can-OPEN ?

  • CANopen node id is 0x30 and no obvious way to change it. Methods such as LSS do not work. Hopefully there is a method via software or hardware. Worst case is a static ID which means only a single battery per bus.

  • BMS starts up with 1 sec heartbeat in pre-operational mode.

  • 2 pre-mapped TPDOs available. Mapping is fixed.

  • Check Alex's repo for BMS connector pinout

    Pin Function
    1 - BLUE
    2 - WHITE 3.3v
    3 - RED 5v
    4 - YELLOW CAN HI
    5 - GREEN CAN LO
    6 - BLACK GND
    7 - ORANGE Power enable, connect to 8
    8 - PINK Power enable, connect to 7
  • Power/charge connector Molex ML-XT 4 pin ( should be compatible with Deutsch DT connectors )

  • Data connector: JST JWPF 8 pin

Whats been discovered so far ?

The main document spec document is available in HTML, Markdown, and YAML below.

The most interesting stuff is located at canopen index 0x2000 and higher.

  • Power output enable/disable
  • Battery Voltage
  • Battery Temperature
  • Current in mA
  • Capacity in mAh
  • Max Capacity in mAh
  • State of Charge in %
  • How to pull data from BMS or config BMS to push data.
File Description
jump_bms_spec.yaml Source document for all generated files. You want to edit this if you make any discoveries or changes.
jump_bms_spec.html HTML version document of the data
jump_bms_spec.md Markdown version of the data
jump_bms.eds EDS (cia 306) is the standard file format for describing CANopen devices. Its used by developers to get human readable variable names and automatically generate code. Its incomplete and non compliant but its just enough to work with the Python canopen library.

Whats else is needed ?

  1. A way to change the device ID so more than one battery can be controlled on the same bus.
  2. Balance information such as per cell voltage or deltas if any.
  3. Cycle count/history if any.
  4. Calibration procedure if not automatic.
  5. LVC info if any.
  6. High resolution photos of the BMS and its components for repair/debugging. Already killed one caused by short on 8 pin connector. DC-DC stage is dead.

Tools

Tools were created with Python under linux. Should run on windows but hasn't been tested and may need fixing.

Tool Description
tools/canopendump Simple tool that dumps all device data to text or csv
tools/bmsmonitor Sample code that displays BMS status such as power state, voltage, temperature, current, capacity, and state of charge. Demonstrates configuring BMS to automatically push data at intervals.
tools/canspec Takes the spec file jump_bms_spec.yaml and generates html, markdown, and eds files.

Setup environment

Minimum Requirements

  • Python 3.2 or later
  • pipenv

Run the following inside the jump_bms directory to automatically install the rest and setup shell to run the tools.

pipenv install
pipenv shell

Setup your can interface:

ip link set can0 type can bitrate 100000
ip link set can0 txqueuelen 1000 up

What can you do ?

  • Analyze the test scenarios and see what you can decode.

  • Get yourself a USB to CAN interface so you can poke around and run your own tests. Anything supported by the python-can library should work:

    https://python-can.readthedocs.io/en/master/interfaces.html

  • Add anything you discover to the spec file jump_bms_spec.yaml and submit a pull request.

Test Scenarios

Reversing the device is mostly about decoding the meaning of each data point on the BMS.

We can dump all the data and compare the differences under various testing conditions to facilitate this:

Testing for temperature

  • Battery placed in freezer for about 2 hours and then removed.
  • Output off, no load, 34.3v
  1. cold-1.csv - 5 min after, room temp 24c
  2. cold-2.csv - 30 min after, room temp 24c
  3. cold-3.csv - 45 min after, room temp 23c
  4. cold-4.csv - 60 min after, room temp 23c

Testing no load state with power off / on

  • Dump BMS at idle with power on then off
  1. idle-power-off.csv - Power off
  2. idle-power-on.csv - Power on

Charging

  • Charge battery under different conditions
  1. charge-2A.csv - Charging @ 2A 36v
  2. charge-5A-40v.csv - Charging @ 5A 40v

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.