6

I have a CR2032 coin cell battery and using that I am operating a BLE 4.1 module. When I connect a fresh battery in to the module the voltage shows 3.3 V, and after continuous communication with the mobile application after a few days the battery voltage becomes 1.8 V which is the minimum value required for the BLE radio for communication.

When I get this voltage I remove the battery and insert a new one. Now the problem is when there is no load condition obviously the battery shows a higher voltage compared to a load condition. After a few hours, when I checked the voltage of the battery I removed, it shows 2.9 V-3.0 V (which is almost 99 %) of the battery. Why is it so? Why does the voltage from 1.8 V get to 2.9 V without charging the battery?

Peter Mortensen
  • 1,676
  • 3
  • 17
  • 23
Viral Embedded
  • 671
  • 2
  • 7
  • 14

2 Answers2

13

Good question. This is one way that primary (nonrechargeable) Lithium cells may differ dramatically from secondary (rechargeable) Li-ion cells so it is often a source of puzzlement. Namely, Li-ion (except LiFePO4) discharge and capacity curves typically gradually taper down from the initial 100% capacity voltage to the termination voltage. However the curve for Lithium coin cells is usually much less steep, i.e. lower slope or more flat, so the open circuit resting voltage near empty remains much closer to the initial 100% capacity voltage than it does in the Li-ion case.

For example, let's consider a typical discharge + resting voltage curve for a 3V LiMnO2 CR2032 coin cell (from here). The graph shows repeated discharge cycles, where each cycle consists of: first, a constant 1mA load for 11h, then 8.5hr rest, then 22mA pulse for 10 seconds, then a 30 minute rest. Notice that even when the coin cell is very close to empty (around 360h) the open-circuit resting voltage (2.7-2.8V) shown by the sawtooth peaks still remains very close to the initial 3.0V at 100% capacity.

enter image description here

Contrast that to an analogous typical Li-ion discharge curve below. Notice how the peaks drop off much more sharply towards the terminal voltage than they do above. Indeed the curve formed by the resting voltage peaks above is almost flat for most of the discharge, whereas the same curve below has a much greater downward slope.

enter image description here

The voltage rebounds after the load is removed because the cell has some nontrivial internal resistance \$R\$. This will cause a voltage sag of \$I\cdot R\$ at current \$I\$, which will disappear when the current drops back to 0. Such voltage rebound doesn't happen instantaneously due to time constants and exponential decay of various internal electrochemical processes (e.g. diffusion) that are components of the internal resistance. This is easier to see in the first graph where the sawtooth shape of the rebounding voltage is more evident. Symmetrically, there will also be \$I\cdot R\$ voltage downspikes when the current is increased which, is evident in the downward sawtooths in the first graph when the 1mA load is started, and also in the much larger downspikes at 22mA (but they don't last long enough to easily observe the sawtooth shape).

So, in summary, because primary Lithium coin cells have a flatter discharge curve than Li-ion cells, it is more difficult to use their open-circuit resting voltage to estimate remaining capacity. Testing them under load will yield better estimates, esp. if the load is nontrivial (e.g. notice how the curve formed by the lowest points of the high-current downspikes on the first graph tapers off much more sharply).

Bill Dubuque
  • 1,201
  • 10
  • 11
4

The battery chemistry will always try to keep the voltage at a certain point, say 3.3 V.

When there is a load that drags the voltage down, the battery needs to expend chemical energy in order to fight that, to keep the voltage up.

When there is no load on the battery, it is easy, and even a near empty battery will be able to build up some voltage over time.

This is why you have to put a modest load on any battery in order to get a reliable voltage reading to estimate its remaining capacity.

Dampmaskin
  • 3,787
  • 1
  • 16
  • 29
  • Thank You @Dampmaskin for reply, now under load condition my BLE module takes 8mA of current which i think using CR2032 is sufficient to deliver. my question is do i use this battery again ? or do i have to make my current consumption still less? – Viral Embedded May 13 '16 at 11:28
  • 1
    As an experiment, you can try to power your module with your used battery, while measuring the voltage all the time. I think you will see the voltage drop rather quickly once you power up the circuit. When a battery is spent, it is spent. Even if the no load voltage builds up again, the capacity does not. – Dampmaskin May 13 '16 at 11:33
  • Correct. but what can be solution then. Should i ignore this batteries to use again and does this case will occur again when i try to connect device under very moderate load ? – Viral Embedded May 13 '16 at 12:11
  • Yes, the battery is flat and should be recycled. If you want your circuit to last more than a few days with each battery, you need to either reduce the power consumption of the circuit, or use bigger batteries. CR2032 batteries are very small, usually only around 200 mAh. – Dampmaskin May 13 '16 at 12:19