0

I'm familiar with simple forward phase dimming using a triac. The circuit is stupid easy with only a handful of components. enter image description here

Of course this simple example can be improved upon to make it safer or improve performance and efficiency. But the basic principles remain the same.

What I'm having trouble finding is useful information on reverse phase dimmers. Everything I can find describes the difference between forward phase and reverse phase in principle and how they each affect different kinds of loads, but I'm unable to find any technical information on how to actually accomplish reverse phase dimming.

How do you make a reverse phase dimmer and what would a simple example circuit look like?

Note: I'm guessing that reverse phase dimming has to be digitally controlled. I don't need any code for an MCU, but I would like to know what kind of signal goes into an MCU that it can recognize when the phase begins and what kind of signal it sends out to cut the phase at the right time (presumably using a MOSFET?). If there's a simple way to make a reverse phase dimmer without digital control, that could be useful too.

Some additional information that might be useful. I'm researching this because I want to build a home-made wifi controlled light switch dimmer. I've got a 3.3v power supply and a wifi MCU with a dozen GPIO pins and a handful of PWM pins (a PADI IoT stamp based on the Realtek RTL8710AF).

Thomas
  • 225
  • 3
  • 8

2 Answers2

3

enter image description here

A reverse phase dimmer does not have a triac but an IGBT or MOSFET. Such a dimmer contains also the electronics needed to modulate this device. These electronics can be simple or very complex.

The principle is simple. The mains AC is fed into a bridge rectifier with in the centre the IGBT or MOSFET. The IGBT or MOSFET can be switched on and off at any moment. The AC can be triggered on the leading edge, The trailing edge or somewhere in between and for the duration needed.

This makes such a dimmer suitable for: Halogen lamps Standard incandescent lamps Electronic mains LED lamps of different kind. etc.

If the dimmer needs with different kind of lamps then the control system has several settings to make that possible. In case of remote control the dimmer can become expensive.

Using the principle with the bridge rectifier and the IGBT or MOSFET it would be possible to make yourself but I did not work that out. Maybe the schematic included helps. The dimmers are very sensitive to overload but since only the IGBT or MOSFET is destroyed also simple to repair.

Remark: The previous picture had some wrong earth connections so I have changed it. The incomming PWM circuit is isolated from the mains side. Thanks to Elektor.

Decapod
  • 3,900
  • 9
  • 23
  • 1
    I think you need to remove the earth symbol on the right (bridge rectifier short-circuit) and remove the link between R3 and the earth on the left (you don't need it when you have the opto-isolator). [See here](https://electronics.stackexchange.com/questions/259908/help-learning-from-a-mistake-connecting-an-oscilloscope/259918#259918) for explanation of the rectifier problem. – Transistor Oct 10 '16 at 20:39
  • I've added a paragraph of some additional insights into my project. Based on your answer, I think the place where I need to focus my efforts is on the zero-cross detection. I believe that I can connect a PWM output on the PADI directly to the gate on a MOSFET and call the switch good. But making a zero-crossing circuit and connecting that to the PADI is where things get fuzzy. I found an article online that uses a 741 op amp for zero-cross detection. Maybe the PADI is sophisticated enough to take an unrectified v-in and I can do detection in firmware? At least this gives me a start. – Thomas Oct 10 '16 at 22:38
  • @Transistor: The drawing was not mine. I have changed it. – Decapod Oct 11 '16 at 01:37
  • @Decapod: That's better and safer. You should credit Elektor magazine with that schematic. It is immediately recognisable as their house style. – Transistor Oct 11 '16 at 01:40
  • 1
    @Thomas: "_I believe that I can connect a PWM output on the PADI directly to the gate on a MOSFET ..._" Be very careful with your beliefs. Isolate if at all possible as shown in the Elektor schematic. It prevents you getting high voltages on your micro and makes debugging much simpler. You should ensure good separation between the control and mains PCBs and keep wiring segregated. Observe minimum creepage distance rules around the opto-isolator. – Transistor Oct 11 '16 at 01:43
  • @Decapod I've found a source article for your new diagram that includes quite a bit of useful information about the circuit itself and what each component does. http://www.eeweb.com/blog/extreme_circuits/dimmer-with-a-mosfet The article doesn't explain the purpose of the relays - K1 I think I understand, but K2 and K3 seem superfluous to me. This also doesn't describe in any way how to accomplish zero cross detection, which is one of my main points of ignorance. I think I can use the aforementioned LM741 to do it, but then I lose the isolation that Transistor correctly emphasizes. – Thomas Oct 11 '16 at 16:49
  • I have to look for it but somewhere I have a schematic for a zero cross detector build with standard parts. It gives a pulse at zero crossing. It is directly fed from the mains and made safe with an optocoupler. If you need just ask. Also if you are happy with my answer please accept. – Decapod Oct 12 '16 at 19:00
0

There is nothing about a trailing-edge dimmer that requires digital control any more than a leading-edge dimmer. Here are a couple of practical circuit descriptions and circuit diagrams to eperiment with the scheme.

https://sound-au.com/project157.htm

https://sound-au.com/project159.htm

pipe
  • 13,748
  • 5
  • 42
  • 72
Richard Crowley
  • 14,382
  • 2
  • 20
  • 37
  • Spookey Circuits?! what happens when there is a fault in the load like a short which can occur when some filament lamps blow? – Autistic Oct 11 '16 at 04:19
  • @Autistic, The better stuff uses IGBTs with desat sensing to provide a very fast turn off on over current (Also, often a current sense resistor or CT). – Dan Mills Oct 11 '16 at 07:11