The BT 136 is a bidirectional thyristor, commonly referred to as a TRIAC (Triode for Alternating Current). It is designed for controlling power in AC circuits by switching on and off. This component is widely used in applications such as light dimmers, motor speed controllers, and AC power control systems. Its ability to handle high voltages and currents makes it a versatile choice for various industrial and consumer electronics.
The BT 136 is a robust and reliable TRIAC with the following key specifications:
Parameter | Value |
---|---|
Maximum Repetitive Voltage (VDRM) | 600V |
Maximum RMS On-State Current (IT(RMS)) | 4A |
Peak Non-Repetitive Surge Current (ITSM) | 25A (for 20ms half-sine wave) |
Gate Trigger Voltage (VGT) | 1.5V (typical) |
Gate Trigger Current (IGT) | 5mA (typical) |
Holding Current (IH) | 2mA (typical) |
Operating Temperature Range | -40°C to +125°C |
Package Type | TO-220 |
The BT 136 has three pins, as described below:
Pin Number | Pin Name | Description |
---|---|---|
1 | MT1 (Main Terminal 1) | Connected to one side of the AC load. |
2 | MT2 (Main Terminal 2) | Connected to the other side of the AC load. |
3 | Gate (G) | Trigger input to control the TRIAC's operation. |
The BT 136 is typically used in AC circuits for power control. Below are the steps and considerations for using this component effectively:
Circuit Design:
Gate Triggering:
Snubber Circuit:
Below is an example of how to use the BT 136 to control an AC lamp with an Arduino UNO:
// Example code to control a lamp using BT 136 and Arduino UNO
// Ensure proper isolation between the AC circuit and Arduino using an optocoupler.
const int gatePin = 9; // Pin connected to the Gate of BT 136
void setup() {
pinMode(gatePin, OUTPUT); // Set the gate pin as an output
}
void loop() {
digitalWrite(gatePin, HIGH); // Trigger the TRIAC to turn on the lamp
delay(1000); // Keep the lamp on for 1 second
digitalWrite(gatePin, LOW); // Turn off the TRIAC (lamp will turn off at zero-crossing)
delay(1000); // Wait for 1 second before turning it on again
}
TRIAC Does Not Turn On:
TRIAC Turns On Erratically:
TRIAC Overheats:
TRIAC Does Not Turn Off:
Q1: Can the BT 136 be used for DC circuits?
A1: No, the BT 136 is designed for AC circuits. It relies on the zero-crossing point of the AC waveform to turn off.
Q2: What is the maximum load power the BT 136 can handle?
A2: The maximum power depends on the load voltage and current. For example, at 230V AC and 4A, it can handle up to 920W. Ensure proper heat dissipation.
Q3: Can I control the BT 136 directly with an Arduino?
A3: Yes, but use a current-limiting resistor and an optocoupler for isolation to protect the Arduino from high voltages.
Q4: Do I need a heatsink for low-power applications?
A4: For low-power loads (e.g., below 1A), a heatsink may not be necessary. However, monitor the temperature to ensure safe operation.