1

First, I a very basic understanding of lithium based batteries and from what I have learned, gauging their capacity can be quite complex. I was looking into MAX17262 as a fuel gauge to measure the capacity of a 300mA 3.7V LiPo battery. Looking through the datasheet, it mentions lithium ions, but not lithium polymers explicitly. If the underlying chemistry is the same, would the capacity estimation method used by the MAX17262 for lithium ions apply to lipos as well? Therefore the underlying question is, can I use the MAX17262 to measure a LiPo?

Circuit details: I have MAX17262 in series with the Lipo positive terminal that is fed into a BMS IC with a buck converter. The MAX17262 is interfaced over I2C with an MCU.

schematic

simulate this circuit – Schematic created using CircuitLab

tronhawk
  • 23
  • 5

1 Answers1

1

Lithium polymer is a subcategory of lithium-ion.

In the datasheet, the ModelCfg register selects the type of battery chemistry being used. Specifically, using a ModelID value of 0 is meant for most lithium types (this would include both Li-ion and Li-po).

(2 is for Nickel Cobalt Aluminum Oxides (NCA, NCR) types, while 6 is for Lithium Iron Phosphate (LiFePO4).)

Datasheet excerpt

In short, yes, you should be able to use the MAX17262's coulomb counter (aka fuel gauge) to successfully measure lithium polymer cells.

JYelton
  • 32,302
  • 33
  • 134
  • 249