Os motores de busca de Datasheet de Componentes eletrônicos
  Portuguese  ▼
ALLDATASHEETPT.COM

X  

  • BD2

  • AI
    The term **BD2** most commonly refers to the **BD243C** (or similar BD-series) NPN power transistor, or it can refer to specific components within a **Blu-ray Disc (BD)** player system. Below is an explanation of the electronic characteristics of the **BD243C Power Transistor**, which is the most frequent component associated with this shorthand. --- ## 1. The BD243C Power Transistor The BD243C is a silicon epitaxial-base NPN power transistor housed in a **TO-220** plastic package. It is widely used for medium-power switching and amplification. ### Key Technical Specifications | Parameter | Description | Typical Value | | :--- | :--- | :--- | | **Type** | Polarized Semiconductor | NPN | | **Collector-Emitter Voltage ($V_{CEO}$)** | Max voltage across C and E | 100 V | | **Collector Current ($I_C$)** | Max continuous current | 6 A | | **Power Dissipation ($P_{tot}$)** | Total power handling | 65 W | | **DC Current Gain ($h_{FE}$)** | Amplification factor | 15 to 30 | ### Pin Configuration 1. **Pin 1 (Base):** Controls the flow of current. 2. **Pin 2 (Collector):** Connected to the load. 3. **Pin 3 (Emitter):** Usually connected to the ground (in common-emitter circuits). --- ## 2. Common Applications Due to its robust current handling, the BD2-series transistors are used in: * **Audio Amplifiers:** Used in the output stage to drive speakers. * **Solenoid/Motor Drivers:** Switching heavy DC loads. * **Voltage Regulators:** Part of linear power supply circuits. * **Tesla Coils:** Frequently used in "Slayer Exciter" circuits due to its durability. --- ## 3. Identification and Alternatives If you are looking at a circuit board and see "BD2," it is often a **RefDes (Reference Designator)** for a **Bridge Rectifier**. ### Comparison Table: Transistor vs. Bridge Rectifier | Feature | BD-Series Transistor | BD (Bridge) Rectifier | | :--- | :--- | :--- | | **Function** | Switching / Amplification | AC to DC Conversion | | **Symbol** | Transistor (B-C-E) | Diamond with 4 Diodes | | **Pins** | 3 Pins | 4 Pins (~, ~, +, -) | --- ### Example Circuit: Simple Switch ```cpp // Logic for controlling a BD243C via a Microcontroller // The Base (Pin 1) is connected to a GPIO through a 1k Ohm resistor. void setup() { pinMode(9, OUTPUT); // Connect to BD243C Base } void loop() { digitalWrite(9, HIGH); // Transistor ON (Motor runs) delay(1000); digitalWrite(9, LOW); // Transistor OFF (Motor stops) delay(1000); } ```
    ✨ Follow-up Questions
    • How do I test a BD243C transistor using a multimeter?
    • What is the difference between the BD243 and the BD244 PNP equivalent?
    • Can a BD2-labeled bridge rectifier be replaced by individual diodes?