2SC2383TQ-R
AI

## Overview of the 2SC2383TQ-R
The **2SC2383TQ-R** is a high-voltage NPN epitaxial silicon transistor. It is primarily designed for use in color TV audio output stages, vertical deflection output stages, and general-purpose switching applications.
### 1. Basic Specifications
The "TQ-R" suffix typically refers to the **Taping/Packaging** style and the **hFE (Current Gain) classification**.
| Parameter | Symbol | Value | Unit |
| :--- | :--- | :--- | :--- |
| **Collector-Base Voltage** | $V_{CBO}$ | 160 | V |
| **Collector-Emitter Voltage** | $V_{CEO}$ | 160 | V |
| **Emitter-Base Voltage** | $V_{EBO}$ | 6.0 | V |
| **Collector Current (DC)** | $I_C$ | 1.0 | A |
| **Collector Power Dissipation** | $P_C$ | 900 | mW |
| **Junction Temperature** | $T_j$ | 150 | °C |
---
### 2. Key Features
* **High Voltage Capability:** With a $V_{CEO}$ of 160V, it is suitable for circuits with high rail voltages.
* **High Current Drive:** Capable of handling up to 1A continuous current.
* **Excellent Linearity:** Provides good gain consistency across different current levels.
* **Complementary Pair:** The PNP complement to this transistor is the **2SA1013**.
---
### 3. Pin Configuration (TO-92L Package)
Most 2SC2383 transistors come in a **TO-92L** (Long) package, which is slightly larger than a standard TO-92 to allow for better heat dissipation.
| Pin Number | Name | Function |
| :--- | :--- | :--- |
| 1 | **Emitter** | Current exits the transistor |
| 2 | **Collector** | Current enters the transistor |
| 3 | **Base** | Controls the transistor bias |
---
### 4. Typical Applications
* **Audio Amplifiers:** Used in the driver stage or output stage of medium-power amplifiers.
* **TV Circuits:** Vertical output and video output stages.
* **Switching:** Power switching in industrial control circuits.
* **DC-DC Converters:** Voltage regulation and power management.
---
### 5. Identification (The "R" Suffix)
In transistor nomenclature, the "R" often represents the **hFE (DC Current Gain)** rank. For this specific family:
* **R Rank:** 60 to 120
* **O Rank:** 100 to 200
* **Y Rank:** 160 to 320
---
### Code Example: Basic NPN Switching Circuit
```cpp
// Schematic Logic for using 2SC2383 as a switch
// Base connected to MCU Pin via 1k resistor
// Collector connected to Load (e.g., 24V Relay)
// Emitter connected to Ground (GND)
void setup() {
pinMode(D1, OUTPUT); // Signal to Transistor Base
}
void loop() {
digitalWrite(D1, HIGH); // Transistor ON (Saturated)
delay(1000);
digitalWrite(D1, LOW); // Transistor OFF (Cut-off)
delay(1000);
}
```
- ⤷What is the difference between the 2SC2383 and the 2SC2383-Y?
- ⤷ Can I use a 2N2222 as a replacement for the 2SC2383?
- ⤷ What are the thermal considerations for the TO-92L package at 1 Amp?