Tuesday 1 March 2016

microcontroller - Are TRIACs symmetrical?


When debugging a circuit using a micro-controller and triac to control AC current I ran into an issue (the triac wouldn't switch off) that was only resolved by flipping the polarity of the triac. The circuit design had the triac and optoisolator MT1 connected to hot, I accidentally switched the triac and had the polarity reversed. Since I presumed that triacs where symmetrical devices I thought it was no big deal, but apparently it was.


Since TRIAC's are supposed to be the equivalent of two Thyristors in reverse-parallel, I couldn't think of any reason for this switching asymmetry, maybe someone can shine light on the situation.



Answer



I am intrigued by your idea of a fully symmetrical AC switch -- how would you keep such a device off, and then later how would you turn it on?


Most of the structure of a triac is fairly symmetrical. However, as the schematic diagram tries to imply, the gate is attached "closer" to MT1.


With the triac off, a typical circuit drives the voltage at MT2 up and down hundreds of volts relative to MT1, but as long as the gate voltage stays the same as the MT1 voltage, the triac stays off.


One way to turn the triac on is to "pull down" the gate. The circuit is the same as with a PNP transistor -- the "+5V" VCC of the microcontroller is connected to MT1; a gate resistor connects a microcontroller output pin to the gate of the triac; and the motor or other load is connected to MT2.


As Thomas O mentioned, another way to turn a triac on is to connect the gate resistor to a voltage that pulls away from the MT1 voltage in the same direction as the voltage at MT2 -- positive voltage anytime during the half-cycle when MT2 is positive, negative voltage anytime during the half-cycle when MT2 is negative.



Recently I blew up over a dozen triacs learning that (a) once a triac is on, turning a triac off is a bit more difficult, and (b) hooking the the "GND" pin of the microcontroller to MT1 and pulling the gate through a resistor to +5 V doesn't work right with a logic level triac.


The rough draft of the "Power Electronics" book already links to some schematic diagrams illustrating how to use triacs, and links to "Thyristors & Triacs - Ten Golden Rules for success in your application". Perhaps you will find those ten rules useful, and perhaps you can help us make that Wikibook better.


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