数据搜索系统,热门电子元器件搜索
  Chinese  ▼
ALLDATASHEETCN.COM

X  

  • 2L3-R

  • AI
    The **2L3-R** is a specific electronic component typically identified as a **Microfuse** (specifically a subminiature, radial-leaded, slow-blow fuse). It is widely used in power supplies, chargers, and consumer electronics to provide overcurrent protection. --- ## 1. Technical Specifications The "2L3-R" part number is commonly associated with manufacturers like **Bussmann (Eaton)** or **Littelfuse** (often within the SS-5 or GTE series). | Feature | Specification (Typical) | | :--- | :--- | | **Component Type** | Radial Lead Microfuse | | **Current Rating** | 3.15 Amperes (denoted by "3") | | **Voltage Rating** | 250V AC | | **Characteristic** | Time-Delay / Slow-Blow (T) | | **Body Material** | Thermoplastic (UL 94-V0 rated) | | **Mounting Type** | Through-hole (PCB) | | **RoHS Compliant** | Yes (indicated by the "-R" suffix) | --- ## 2. Key Characteristics ### Time-Delay (Slow-Blow) The "Slow-Blow" nature allows the fuse to withstand temporary surges or "inrush currents" that occur when a device is first turned on. It will only blow if the overcurrent persists, preventing "nuisance blowing." ### Physical Form Factor * **Shape:** Rectangular or Cylindrical (Top-hat style). * **Leads:** Two radial leads (wires coming out of the bottom) designed for soldering directly into a Printed Circuit Board (PCB). * **Space Saving:** Significantly smaller than traditional glass 5x20mm fuses, making it ideal for compact power adapters. --- ## 3. Part Number Breakdown While naming conventions vary slightly by brand, the code generally breaks down as follows: | Segment | Meaning | | :--- | :--- | | **2L** | Series designation (Size and Breaking Capacity) | | **3** | Amperage identifier (3.15A is the standard for this series) | | **-R** | RoHS Compliant (Lead-free) | --- ## 4. Common Applications * **AC Adapters:** Laptop power bricks and phone chargers. * **LED Drivers:** Protecting the circuitry driving high-voltage LED arrays. * **Consumer Electronics:** Televisions, set-top boxes, and audio equipment. * **White Goods:** Control boards for washing machines or refrigerators. --- ### Comparison: Fast-Acting vs. Slow-Blow (2L3-R) ```cpp // Logic for choosing a 2L3-R fuse: if (Device_Startup_Surge == HIGH) { Use(Slow_Blow_2L3_R); // Allows brief spike without breaking } else { Use(Fast_Acting_Fuse); // Breaks immediately on any overcurrent } ```
    ✨ Follow-up Questions
    • What are the direct equivalents for a 2L3-R fuse from other brands?
    • How do I test if a 2L3-R fuse is blown using a multimeter?
    • Can I replace a 3.15A slow-blow fuse with a 3.15A fast-acting fuse?