BT136S-600E
AI

## Overview of BT136S-600E
The **BT136S-600E** is a surface-mount, glass-passivated, four-quadrant triac. It is primarily used for general-purpose bidirectional switching and phase control applications. Its design is optimized for high-temperature stability and reliability.
---
### Key Technical Specifications
| Parameter | Symbol | Value |
| :--- | :--- | :--- |
| **Repetitive Peak Off-State Voltage** | $V_{DRM}$ | 600 V |
| **RMS On-State Current** | $I_{T(RMS)}$ | 4 A |
| **Non-repetitive Peak On-State Current** | $I_{TSM}$ | 25 A |
| **Gate Trigger Current (Max)** | $I_{GT}$ | 10 mA |
| **Holding Current (Max)** | $I_{H}$ | 15 mA |
| **Package Type** | DPAK | SOT428 |
---
### Pin Configuration (DPAK)
The BT136S-600E typically comes in a SOT428 (DPAK) surface-mount package. The pinout is as follows:
1. **Main Terminal 1 (T1):** Reference point for gate and Main Terminal 2.
2. **Main Terminal 2 (T2):** Connected to the mounting base (heat sink).
3. **Gate (G):** Used to trigger the device into conduction.
---
### Operating Features
* **Sensitive Gate:** The "E" suffix indicates it is a sensitive gate triac, meaning it requires very low current (typically $\leq 10\text{mA}$) to trigger.
* **Four-Quadrant Triggering:** It can be triggered in all four quadrants of the voltage-current graph, providing flexibility in AC control circuits.
* **Direct Logic Interfacing:** Because of the low gate current requirement, this triac can often be driven directly by microcontrollers or low-power ICs.
* **High Thermal Stability:** The glass-passivated technology ensures the device remains stable even under high-temperature conditions.
---
### Common Applications
The BT136S-600E is widely used in AC power control circuits:
* **Light Dimming:** Controlling the brightness of incandescent lamps.
* **Motor Speed Control:** Regulating small universal motors (e.g., in kitchen appliances).
* **Heating Controls:** Regulating temperatures in small heaters or soldering stations.
* **Static Switching:** Acting as a solid-state relay for turning AC loads on and off.
---
### Implementation Example
To drive this triac with a microcontroller, a common circuit involves using an **Opto-Triac** (like the MOC3021) to provide isolation between the high-voltage AC and the low-voltage DC logic.
```c
// Pseudo-code logic for Phase Control
if (Zero_Cross_Detected) {
delay(Phase_Angle_Delay); // Wait for specific point in AC cycle
digitalWrite(TRIAC_GATE_PIN, HIGH);
delayMicroseconds(10); // Short pulse to trigger
digitalWrite(TRIAC_GATE_PIN, LOW);
}
```
- ⤷
What is the difference between the BT136 and the BT136S versions?
- ⤷ Can I drive a BT136S-600E directly from a 3.3V microcontroller?
- ⤷ What is the importance of the 'E' suffix in this part number?