Friday 5 August 2016

batteries - Amplify current and voltage to preserve battery


I'm wondering, is it possible to provide for example 5V/500mA from a single 1.2V battery and consuming only 50mAh from the battery by using a low input voltage boost converter and a power amplifier ? (L272 and a TPS61200 for example)


I found that it's possile to go from 1.2v to 5v with the TPS61200 and go from 50mA to 500mA with the L272 but what if they're used together ? Will it preserve my battery lifespan ?



Answer



Consider conservation of energy.


Very roughly, 1.2 V * 50 mAh is about 215 J.


5 V * 500 mA is .25 W.


At a .25 W rate of use, 215 J will be consumed in about 450 seconds, or 7.5 minutes.


Edit



Let's look at the chips you mention.


TPS61200 is a boost converter. It will "boost" the power supply voltage from 1.2 V to some higher voltage --- 5 V in your case. But it will draw more current from the battery than it delivers to the load. This is because it is not magical and it is not able to create energy from nothing.


L272 is an op-amp. It can deliver an output current of up to 700 mA, controlled by a lower power input. But it must get the energy to deliver that output from it's power supply pins. You must provide a +/- 12 V supply to use this amplifier according to its specifications. If have some other source of power to provide the +/- 12 V, then you can certainly use the L272 to control a 5 V / 500 mA signal powered by that supply. But the power will be taken (very inefficiently) from the +/- 12 V supply, not magically created by the L272.


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...