Electronic Components Datasheet Search
  British  ▼
ALLDATASHEET.CO.UK

X  

  • MF-RHT070-AP

  • AI
    ## Overview of MF-RHT070-AP The **MF-RHT070-AP** is a high-temperature, radial-leaded **Polymeric Positive Temperature Coefficient (PPTC)** resettable fuse manufactured by Bourns. These components are commonly used for overcurrent protection in automotive and industrial applications where operating temperatures are elevated. ### 1. Key Technical Specifications | Parameter | Value | | :--- | :--- | | **Hold Current ($I_{hold}$)** | 0.70 Amperes | | **Trip Current ($I_{trip}$)** | 1.40 Amperes | | **Maximum Voltage ($V_{max}$)** | 16V DC | | **Maximum Current ($I_{max}$)** | 100A | | **Operating Temperature Range** | -40°C to +125°C | | **Packaging** | Ammo Pack (indicated by "-AP") | | **Material** | Halogen-free and RoHS compliant | --- ### 2. Functional Characteristics The device operates on the principle of thermal expansion. Under normal conditions, the conductive particles within the polymer form low-resistance paths. When an overcurrent event occurs: 1. **I²R Heating:** The current flowing through the device generates heat. 2. **Phase Transition:** Once the temperature reaches a critical threshold, the polymer expands. 3. **High Resistance State:** The expansion breaks the conductive chains, significantly increasing resistance and reducing current flow to a safe leakage level. 4. **Resetting:** Once the fault is removed and the device cools down, the polymer contracts, and the fuse "resets" to a low-resistance state. --- ### 3. Part Number Breakdown Understanding the suffix and prefix of the component: * **MF-RHT:** Series designation (Multifuse - Radial High Temperature). * **070:** Represents the hold current (0.70 Amperes). * **-AP:** Packaging style (Ammo Pack), which is used for automated radial insertion equipment. --- ### 4. Applications Due to its **AEC-Q200** stress test qualification and high-temperature rating, it is primarily used in: * **Automotive Electronics:** Sensors, motors, and interior lighting. * **Industrial Controls:** Power supplies and protection for high-heat environments. * **Telecommunications:** Equipment subject to outdoor temperature swings. --- ### 5. Implementation Code Example (Simulation Logic) If you were modeling the behavior of this PPTC in a software simulation (e.g., Python), the logic would follow a simplified threshold check: ```python def check_fuse_status(current_amps, ambient_temp_c): # Simplified logic for MF-RHT070-AP i_hold = 0.70 i_trip = 1.40 # Derating factor (High temp reduces i_hold) if ambient_temp_c > 85: i_hold *= 0.8 # Example derating if current_amps > i_trip: return "TRIPPED: High Resistance" elif current_amps > i_hold: return "WARNING: Potential Trip" else: return "NORMAL: Low Resistance" # Current at 1.5A will trip the fuse print(check_fuse_status(1.5, 25)) ```
    ✨ Follow-up Questions
    • How does temperature derating affect the hold current of the MF-RHT070-AP?
    • What is the typical time-to-trip for this component at 3.5A?
    • What are the physical dimensions and lead spacing for the MF-RHT series?