Overview
The LED driver is made specifically for driving 100W LEDs. I couldn’t find another driver that fit my needs online. I needed something for an affordable price that was dependable. I would need to buy about 8 units.
I didn’t want to buy a really cheap 12V-34V boost converter because of the unknown quality of the components and circuit performance and it would be fun to build an entire board from scratch. I will design it to have dimming capabilities since I was going to use the driver for studio lights and for general lab lighting. The lighting in my lab is really bad, 1X 15W fluorescent light in the middle of the room.
Design Steps
I decided to design my own led driver in the summer of 2014. I started off researching how to drive high-output LEDs. The best way to drive them is with a constant current. As the LEDs heat up, the forward voltage of the led drops [1]. This leads to the current increasing through the led with a constant-voltage driver. This can lead to further heating of the LEDs and might result in a thermal runaway which eventually can melt internal bond wires. A constant current driver fixes the problem by varying the voltage to keep the current constant.
Loss Calculations
The second issue was whether to use a linear drive system or go for the more complicated switching driver. I did a few simplified equations to figure this out. My hypothesis was that the switching driver would be more efficient because the linear driver will need to dissipate the excess power. Using the formulas below and a white 100W test led [2][3], the power dissipation of a linear converter was calculated.
[4]
At this point, I didn’t have any components picked out so I must have skipped calculating the efficiency of the switching converter. Switching converters have switching efficiencies around 80-90%. I will include the calculation now since I have completed the design.
High-side switch conduction losses:
[5]
Switching losses:
[5]
Power diode losses:
[5]
Inductor:
[5]
Adding up all the component losses:
The figure of 98.7% seems kind of high, practical measurements are needed here.
Boost Vs. Buck
I decided on a buck configuration because of the increased efficiency over boost designs [6]. Efficiencies are similar for buck and boost converters if the output voltage from the boost converter is less than 3-4 times the input voltage. The wire coming from the power supply will carry less current resulting in fewer cable losses over a boost design. A 12V supply will need to output 100W/12V = 8.3A. A 48V power supply will only need to output 2.08A.
Driver Chip Selection
I did a search on Digikey for led driver chips. I limited the search to drivers that could survive up to 60V with a current capability of 3.5A. PWM also needed to be an option. I picked the LM3409HV IC because of the simplicity of the reference circuit while maintaining high current accuracy.
LM3409HV Calculations
The calculations for components is presented in the PDF document below.
Click to access calculations.pdf
Design Files
The files for this project are uploaded to github. I created the schematic and PCB with Eagle PCB Design software.
https://github.com/doublEElectronics/100W-LED-DRIVER
Results
The current on the 2.5A and 3.0A ranges are stable with a minimal current error. There is an issue with the 3.5A range, the system goes unstable and the current rises to about 4-5 amps.
The led driver does not get too hot when it is operational. I am using the PCB as a heat-sink. At 3.0A, the driver gets warm to the touch. I would recommend airflow over the PCB when operating at 3.0A.
Videos
Sources
[2] https://www.sparkfun.com/tutorials/217
[3] http://www.wayjun.com/Datasheet/Led/100W%20White%20LED.pdf
[4] http://formulas.tutorvista.com/physics/efficiency-formula.html
[5] http://electronicdesign.com/power/fundamentals-buck-converter-efficiency
Hi,
Your driver is exactly what I’m searching for a dive lamp!
Do you still have some extra I may buy? If yes at what price?
Two will be great but if you have more I’m sure few friends will be also interrested 😉
Kind regards,
Thierry
I don’t have any for sale right now, I have only made 10 of these. The project files are on Github if you want to assemble them. Keep in mind that the driver takes a 48V input. 48V batteries are really rare. A better option would be to use a step-up converter and a Lipo battery. Lipo batteries do not like to be discharged below a certain voltage so there has to be a voltage cutoff for safety.
HI! I HAVE problem
I have sample design iled 1.4A fsw 500khz. But LM3409 and P_FET are hot. IF i have serial diode from Lm3409 to gate P-FET. So LM is not hot and FET verry HOT. I think forward current gate of FET to PGate of Lm3409
Hi Kim,
There should be a direct connection from the gate pin of the LM3409 to the gate of the PMOS. A diode in series (cathode at the PMOS gate) would prevent the charge from leaving the gate, leading to the mosfet always being on (overcurrent, overheating). The data sheet recommends that the mosfet gate capacitance be under 30nC when the switching frequency is over 300kHz. If the gate capacitance is too large, the LM3409 will overheat since it will have to supply more current per cycle (charge/discharge) than it can dissipate. Make sure that there is an adequate amount of copper on the PCB to dissipate the heat from the exposed pad.
Hope that helps,
Patrick