Tuesday 23 December 2014

batteries - Li-Ion battery over discharge protection


I'm designing a Li-Ion battery charger circuit with a bq24702 chip. I will use it with two Li-Ion batteries connected in series. In order to protect the batteries from over discharging, I have to know, when is the battery discharged. I will use Tensai Li-Ion TR-26650LI batteries. In the specification is written: "When discharged at 0.2C to 2.75V at 20°C". Does this mean, that it is not recomended to discharge a battery cell under 2.75V?


This would mean, that I could only use the battery between 0.2C and 1C, so I could use effectively 4500 mAh - 900 mAh = 3600 mAh. This would be not sufficient for me.




Answer



First, yes, the battery is considered depleted when it reaches 2.75V. However, this means something different that what you stated.


When a battery manufacturer talks about "C", this refers to the nominal battery capacity. The capacity is measured in Ah (or mAh), but the units of C are simply A (or mA). In the case of your battery, C = 4500 mA.


This is usually used when talking about charging/discharging rates. "Discharging at 0.2C" means "Discharging at a rate of 0.2C" This is 0.2 x 4500mA = 900mA. If you discharge your battery at a rate of 900mA, you will get a total of 4500mAh of power before the battery reaches 2.75V.


Why is it so convoluted? Because batteries will supply different amounts of total power at different discharge rates! You could restate the earlier sentence as "they have characterized the battery's capacity at a discharge rate of 900mA, and have determined that the full capacity is 4500mAh."


Take your battery, for example. If you attach it to a load which draws 900mA, it will provide 4500mAh before reaching 2.75V. Doing the math: 4500mAh / 900mA = 5 hours of capacity.


Now, imagine that your load is 1200mA. You would expect that the battery would supply power for 4500mAh / 1200mA = 3.75 hours. However, you'll find that it doesn't actually last that long. The battery's capacity actually decreases with a higher load.


If you wanted to know the exact numbers at different discharge rates, you'd have to get data from the manufacturer.


By the way, this value C is also commonly used for charging. Often, a battery is rated to be charged at a maximum of, say, 0.5C. This is the case for your battery. So, when setting your charging current, 4500mA x 0.5 = 2250mA. You won't want to exceed this :)


No comments:

Post a Comment

arduino - Can I use TI's cc2541 BLE as micro controller to perform operations/ processing instead of ATmega328P AU to save cost?

I am using arduino pro mini (which contains Atmega328p AU ) along with cc2541(HM-10) to process and transfer data over BLE to smartphone. I...