Saturday 18 June 2016

power supply - Selecting input voltage for 7805


I generally use switching 12V power supplies for my circuits since they are so common, but I understand the 7805 can take a lower input voltage.


If I gave the 7805 a lower input voltage (i.e. 9V), I understand there will be less heat dissipated as it would be a smaller voltage drop. 6V would be even less, assuming my regulator can go that low.


But, is there a disadvantage to giving less input voltage? Performance? More or less noise? And on the power supply side, are lower-voltage or higher-voltage supplies typically better made?


(I've got a 100uF aluminum cap on the input, and 10uF aluminum and 0.01uF ceramic caps on the output.)




Answer



The 7805 will drop out typically around 1.6V above the output voltage. At 1A it's guaranteed to not drop out with 2V of input-output differential. Most likely you'll not be running anywhere near 1A or you'd be using a switching regulator, but even at low current the dropout is not so low- that's because the 7805 is not an LDO regulator and there are Vbe drops in there.


One could guess that the input ripple rejection probably deteriorates as you get close to the dropout voltage and the gain drops. The datasheet specification is at 5V input-output differential, so they sidestep that issue. If you have a sensitive analog circuit like an RF module you may wish to use a higher input voltage than the absolute minimum.


If you're using a 7805 with unregulated (transformer, rectifier and filter) input voltage probably needs to be something like 10V to be safe and account for line voltage tolerance, ripple and so on). If you're using it with a regulated supply (like a switching wall wart) 9V is good, 7.5V is okay, but 6V is not high enough. There are LDO regulators that have very low dropout (so 6V would be fine) but they have other disadvantages (they are only conditionally stable- pay careful attention to the output capacitor value, ESR and type), they are more expensive, less sources, and generally have much lower input voltage capability so they're easier to fry with input transients. Much modern electronics uses LDO regulators and/or switching regulators, there are literally thousands of possible parts to use, but none yet has quite the staying power of the 7805/78M05/78L05.


I would say that if you need a heat sink on the 7805 it's time to move to a switching regulator in most cases. There's no problem using the 7805 or 78M05 at 10, 50 or 100mA, and it's better than a 78L05 (more expensive, but the circuit is different and has better guaranteed performance). The trade-off of an LDO vs. a 78xx regulator is a bit more complex and it is heavily dependent on the input voltage and how much control you have over it.


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