Tell me more ×
Electrical Engineering Stack Exchange is a question and answer site for electronics and electrical engineering professionals, students, and enthusiasts. It's 100% free, no registration required.

On the datasheet it doesn't mention an input voltage. Does the input voltage must be higher than the output voltage or does it increase to 12v if i input 8v for example if so what is the current like that it outputs?

share|improve this question

2 Answers

up vote 17 down vote accepted

A 7812 is a linear regulator, and does not step up the input voltage if the input is below the output (for that you need a DC-DC boost regulator). The input voltage must be above the output. All linear regulators have a minimum dropout voltage, or difference.

The 7812 is not a LDO (low-dropout regulator), as the typical dropout voltage is around 2 volts. (An LDO might have a dropout voltage of 0.7 volts).

On page 6 of the datasheet, the maximum dropout voltage Vd is listed as 2.5 volts, meaning you need a minimum of 14.5 volts input to the device to guarantee an output of 12 volts..

share|improve this answer
From what i understand then from your answer 14.5 is the maximum input voltage. How does it go from a Maximum dropout voltage to a minimum input voltage? – Dean Dec 3 '10 at 0:43
2  
The maximum dropout voltage Vd is 2.5 volts, meaning the input has to be at least 2.5 volts above the output. Since the output is 12 volts, you add the two together to get a minimum input of 14.5 volts. Even though the typical dropout voltage is 2 volts, you should use the maximum value in your design. – tcrosley Dec 3 '10 at 0:50
1  
I've seen LDOs with a dropout voltage of 50 mV. – stevenvh Jun 3 '11 at 7:23

Voltage regulators basically can be divided in two big groups: linear regulators and SMPSs, short for Switch-Mode Power Supplies, aka "switchers". Switchers are the most versatile, they allow you to go from a lower voltage to a higher one or vice versa, and they often do so with high efficiency, often > 90%. That means that when your load consumes 10W the switcher will only dissipate 1W.
Linear regulators are different. They are like a variable series resistor between input and output, causing a voltage drop across the regulator.

Linear regulator principle

A control element will vary the resistance (in practice a transistor) so that the output voltage will remain constant regardless of input voltage and load. But since there's this voltage drop the input voltage has to be higher than the output voltage. How much higher depends on the type of regulator. There are LDOs (Low Drop-Out) which still can regulate the output if the input is only a few hundreds of mV higher and there are even ultra low drop-out types which only need a few tens of mV.

The 7812 is a non-LDO linear regulator, which means it needs a higher input voltage. The datasheet does say how much it needs, but you may have to look for it. This is a snapshot of page 8:

LM7812 specs

All parameters are specified under certain conditions, and for the output voltage we can see that the condition is that the input voltage is minimum 14.5V. The 2.5V dropout is typical for a three-legged linear regulator. If we look further we can see two values for line regulation; it appears that this is best if the input voltage is at least 16V.

So you won't find a parameter "minimum input voltage", but it is mentioned as a condition for proper operation within certain limits.

A note on dissipation:
From the above it may look like you best make your input voltage a lot higher than the 12V output, but that's not true. The current to your load flows through the regulator and is the same current as will be drawn from the input voltage. So if you have a 12W load it will draw 1A from the regulator. If you have an input voltage of 20V the same 1A will be drawn from that 20V. So the 20V delivers 20W, while the load only consumes 12W. The difference of 8W will be dissipated in the regulator. That's a lot. Therefore it's best to keep the input voltage just above the minimum to prevent the regulator to become overheated.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.