0

Background: Design an LED circuit that alternatively flashes 40W LED strings approximately 45 times per minute.

Approach: I began by getting my hands on Linear Technology's LT3799-1 - Offline Isolated Flyback LED Controller with Active PFC Demo Board DC1947A for initial testing. The circuit for that demo board great when lights are in steady state. The strings consist of 14 LEDs with a Vf~42V, being driven at 900mA, this I assume I good starting point for my project.

I prototyped a simple flashing circuit by adding two external BUK9616-75BN Channel FETs with the LEDs, the circuit below shows just one, but it would be the same for two strings:

enter image description here

The BUK9616 receives sufficient Vgs~10V from the function generator, therefore it operates in full saturation. The flashing circuit works well when not connected to the demo board.

Problem: When the flashing circuit is added to the demo board and I vary the duty cycle of the wave, just as I did without the demo board, as the LEDs transition from Off to On, there is a slight noticeable flicker. I suspect the issue may be in the 'Open Circuit Protection' of the board as I see a slight hiccup in the gate of Q1 on the demo board (10V), corresponding to the light flicker that looks like this:

enter image description here

I believe this suggests that the voltage divider formed by R3 and R4 have reached a voltage > 1.25 triggering an open circuit fault and essentially stopping all the switching in Q1, entering hiccup mode to clear the fault once a load is "detected", and this very same hiccup is causing the flicker.

I would like to essentially de-activate this open circuit protection, however, these boards are very expensive and I'd hate to damage one. Here are the possible approaches to solving this issue:

1) Remove R3: This "cuts" the feedback from the third winding and forces FB to be 0V, therefore FB will never reach 1.25V and Q1 will never stop switching.

2) Increase the value of C7: This capacitor also charges up to 1.25V when there is an open in the secondary, both the CT and FB pins must be at 1.25 for switching to stop.

3) Using a Triac dimmable LED driver, like the 3799, although I think the flickering associated with triacs in LED drivers is not the issue here. Could the PFC circuitry be causing this as well?

Suggestions/feedback on the three proposed approaches is highly appreciated!

  • 2
    If the demo board is intended for continuous lighting, you may need to find a different way to implement this ~1Hz blinking. Definitely *don't* remove R3: this will stop the output from being regulated and would likely damage components. – user2943160 Sep 10 '16 at 16:09
  • I contacted an FAE several days ago and they suggested to remove R3, however, I also suspect that the output will not be regulated if I do this. Thanks for the input. – Pablo Gonzalez Sep 10 '16 at 16:43
  • "saturation" means something different in FETs. I understand you to mean that its fully conducting. https://electronics.stackexchange.com/questions/18885/mosfet-as-a-switch-when-is-it-in-saturation – Jasen Слава Україні Dec 23 '18 at 04:37

1 Answers1

1

It appears CTRL2 is available to do the flashing.
Replace R22 with a transistor

Was AC power and triac dimmable a requirement?
There are easier, simpler, and much less expensive solutions to the project as posted.

By far the simplest would be to use a constant current power supply with a dimming circuit. To flash all you would have to add would be the circuit to toggle the dimmer input with a voltage from 0V to upto 10V. 10V will set the current to the power supply max current. Any voltage low than 10V would would limit the current to a ratio of the input to 10V. E.g 3V would be 20% of max.

I do not believe AC should be used to power LEDs and Light Bulbs and LEDs are not a good match. Cramming LEDs in a small area is just wrong.

I prefer a 48VDC supply, a simple LED driver circuit $3 parts cost to drive strings of 15 or 16 LEDs.

Misunderstood
  • 7,287
  • 1
  • 11
  • 24
  • AC power is a requirement (120VAC or 240VAC), triac dimming is not. I like your suggestion in replacing R22 with a transistor, in this manner I can drive the CTRL2 pin low during the non-flashing period via the MCU. I believe this would not disable hiccup mode, but since it will prevent any current from flowing in the secondary during a half cycle it should stop the flickering. What simpler and less expensive solutions are you referring to? – Pablo Gonzalez Sep 24 '16 at 18:23
  • updated my answer – Misunderstood Sep 25 '16 at 23:38