Motor de Búsqueda de Datasheet de Componentes Electrónicos
  Mexican  ▼
ALLDATASHEET.COM.MX

X  

  • -1121-R

  • AI
    The term **"1121-R"** is most commonly associated with **Surface Mount Device (SMD) components**, specifically related to high-precision resistors or high-current power inductors. Depending on the manufacturer, it typically refers to a specific package size or a part series. --- ### 1. Common Interpretations of "1121-R" | Category | Typical Meaning | Description | | :--- | :--- | :--- | | **Package Size** | Metric 1121 (0408 Imperial) | Refers to the physical dimensions: **1.1mm x 2.1mm**. | | **Resistor Code** | 1121 = 1.12 kΩ | In 4-digit SMD coding: "112" (significant figures) + "1" (multiplier $10^1$). | | **Inductor Series** | Power Inductor | Often used by brands like *Vishay* or *Sumida* to denote a specific shielded power inductor series. | --- ### 2. Technical Specifications (Inductor Context) In many industrial catalogs, the "R" suffix often indicates **RoHS compliance** or **shielded characteristics**. If this is a high-current inductor (e.g., used in DC-DC converters), the specs usually look like this: * **Shielding:** Magnetically shielded construction to prevent EMI. * **Mounting:** SMD (Surface Mount Device). * **Operating Temperature:** Typically -40°C to +125°C. * **Common Applications:** * Voltage Regulator Modules (VRM). * Laptops and Graphics Cards. * Point-of-Load (POL) converters. --- ### 3. Understanding the Marking "1121" on Components If you see "1121" printed on a small black component (Resistor), here is how to decode it: ```python # Decoding 1121 Resistor Value digits = "112" multiplier = 10**1 # The '1' at the end value = 112 * 10 print(f"Resistance: {value} Ohms (1.12 kΩ)") ``` --- ### 4. Summary Table for Part Selection | Feature | 1121-R Characteristics | | :--- | :--- | | **Tolerance** | Usually ±1% for resistors; ±20% for inductors. | | **Termination** | Lead-free (Pb-free) / Matte Tin. | | **Packaging** | Tape & Reel (T&R) for automated pick-and-place. | | **Material** | Ceramic substrate (resistors) or Ferrite core (inductors). | ---
    ✨ Follow-up Questions
    • Is this part a resistor
    • an inductor
    • or a capacitor in your specific application?
    • Which manufacturer brand is listed on the datasheet for this 1121-R part?
    • Are you looking for an equivalent replacement or footprint dimensions?