Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Component Documentation

How to Use Fuse 20A: Examples, Pinouts, and Specs

Image of Fuse 20A
Cirkit Designer LogoDesign with Fuse 20A in Cirkit Designer

Introduction

A Fuse 20A is a safety device designed to protect electrical circuits from overcurrent conditions. It interrupts the flow of electricity when the current exceeds 20 amperes, thereby preventing potential damage to components, overheating, or fire hazards. Fuses are essential in ensuring the safety and longevity of electrical systems.

Explore Projects Built with Fuse 20A

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
PT100 Temperature Sensor with Rocker Switch and Resettable Fuse
Image of soldering iron: A project utilizing Fuse 20A in a practical application
This circuit is a basic power control system that uses a rocker switch to control the flow of 220V power through a resettable fuse and a PT100 temperature sensor. The switch allows the user to turn the power on or off, while the fuse provides overcurrent protection and the PT100 sensor can be used for temperature monitoring.
Cirkit Designer LogoOpen Project in Cirkit Designer
Basic Surge Protection Circuit with Benedict Switch
Image of DC & Monitoring Box: A project utilizing Fuse 20A in a practical application
The circuit includes a Benedict Switch connected in series with a Fuse Holder and an SPD (Surge Protection Device). The SPD is also connected to a Ground reference. This configuration suggests that the circuit is designed to control power flow, protect against overcurrent with the fuse, and guard against voltage surges with the SPD, with a safe path to ground for surge dissipation.
Cirkit Designer LogoOpen Project in Cirkit Designer
Solar-Powered Battery Backup System with Automatic Transfer Switch
Image of Copy of Copy of Solar Circuit 380W: A project utilizing Fuse 20A in a practical application
This circuit is a solar power system designed to charge a 12V battery using a 380W solar panel, managed by a solar charge controller. The system includes fuses for protection, a power inverter to convert DC to AC, and an automatic transfer switch (ATS) to manage power distribution to an AC circuit breaker and a 5000BTU AC unit.
Cirkit Designer LogoOpen Project in Cirkit Designer
Dual 5V Power Supply Distribution Circuit with Toggle Switch Control
Image of rfdriver: A project utilizing Fuse 20A in a practical application
This circuit consists of two 5V 5A power supplies connected to an AC wall plug point, providing DC output through a 12-way connector. The ground connections from both power supplies are interconnected and also connected to the ground pins of two toggle switches. The DC outputs from the power supplies are separately connected to different pins on the 12-way connector, with each power supply output being switchable via one of the toggle switches.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with Fuse 20A

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Image of soldering iron: A project utilizing Fuse 20A in a practical application
PT100 Temperature Sensor with Rocker Switch and Resettable Fuse
This circuit is a basic power control system that uses a rocker switch to control the flow of 220V power through a resettable fuse and a PT100 temperature sensor. The switch allows the user to turn the power on or off, while the fuse provides overcurrent protection and the PT100 sensor can be used for temperature monitoring.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of DC & Monitoring Box: A project utilizing Fuse 20A in a practical application
Basic Surge Protection Circuit with Benedict Switch
The circuit includes a Benedict Switch connected in series with a Fuse Holder and an SPD (Surge Protection Device). The SPD is also connected to a Ground reference. This configuration suggests that the circuit is designed to control power flow, protect against overcurrent with the fuse, and guard against voltage surges with the SPD, with a safe path to ground for surge dissipation.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Copy of Copy of Solar Circuit 380W: A project utilizing Fuse 20A in a practical application
Solar-Powered Battery Backup System with Automatic Transfer Switch
This circuit is a solar power system designed to charge a 12V battery using a 380W solar panel, managed by a solar charge controller. The system includes fuses for protection, a power inverter to convert DC to AC, and an automatic transfer switch (ATS) to manage power distribution to an AC circuit breaker and a 5000BTU AC unit.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of rfdriver: A project utilizing Fuse 20A in a practical application
Dual 5V Power Supply Distribution Circuit with Toggle Switch Control
This circuit consists of two 5V 5A power supplies connected to an AC wall plug point, providing DC output through a 12-way connector. The ground connections from both power supplies are interconnected and also connected to the ground pins of two toggle switches. The DC outputs from the power supplies are separately connected to different pins on the 12-way connector, with each power supply output being switchable via one of the toggle switches.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications and Use Cases

  • Automotive electrical systems to protect wiring and components.
  • Household appliances such as washing machines and air conditioners.
  • Industrial equipment to safeguard motors and control circuits.
  • Power distribution systems to prevent overloads and short circuits.

Technical Specifications

The Fuse 20A is designed to operate reliably under specific electrical and environmental conditions. Below are its key technical details:

General Specifications

Parameter Value
Rated Current 20 Amperes
Rated Voltage 250V AC / 32V DC
Breaking Capacity 1000A at 250V AC
Fuse Type Cartridge or Blade
Response Time Fast-acting or Time-delay
Material Ceramic or Glass Body
Operating Temperature -40°C to +85°C

Pin Configuration and Descriptions

For blade-type fuses, the pin configuration is as follows:

Pin Number Description
1 Input terminal (connect to power source)
2 Output terminal (connect to load)

For cartridge-type fuses, the fuse is cylindrical and does not have distinct pins. Instead, it is inserted into a fuse holder or clip.

Usage Instructions

How to Use the Fuse 20A in a Circuit

  1. Determine the Load Current: Ensure the load current does not exceed 20A under normal operating conditions.
  2. Select the Fuse Type: Choose between fast-acting or time-delay fuses based on the application:
    • Use fast-acting fuses for sensitive electronics.
    • Use time-delay fuses for inductive loads like motors.
  3. Install the Fuse:
    • For blade-type fuses, insert the fuse into the appropriate slot in the fuse box.
    • For cartridge-type fuses, place the fuse in a compatible fuse holder.
  4. Verify Connections: Ensure the fuse is securely connected to avoid loose contacts.
  5. Test the Circuit: Power on the circuit and verify proper operation.

Important Considerations and Best Practices

  • Always use a fuse with the correct current and voltage rating for your application.
  • Replace a blown fuse with one of the same specifications; never bypass a fuse.
  • Inspect the fuse regularly for signs of wear or damage.
  • For circuits connected to microcontrollers like Arduino, use a fuse to protect the board from overcurrent.

Example: Using a Fuse with an Arduino UNO

When connecting an Arduino UNO to a motor, a Fuse 20A can protect the circuit from overcurrent. Below is an example circuit setup:

  1. Connect the positive terminal of the power supply to one terminal of the Fuse 20A.
  2. Connect the other terminal of the fuse to the motor's positive input.
  3. Connect the motor's negative terminal to the ground of the power supply.
  4. Use a motor driver to interface the Arduino UNO with the motor.
// Example Arduino code to control a motor with a fuse in the circuit
const int motorPin = 9; // Pin connected to motor driver input

void setup() {
  pinMode(motorPin, OUTPUT); // Set motor pin as output
}

void loop() {
  digitalWrite(motorPin, HIGH); // Turn motor on
  delay(5000); // Run motor for 5 seconds
  digitalWrite(motorPin, LOW); // Turn motor off
  delay(5000); // Wait for 5 seconds before restarting
}

Troubleshooting and FAQs

Common Issues Users Might Face

  1. Fuse Blows Frequently:

    • Cause: The circuit's current exceeds 20A.
    • Solution: Check the load current and ensure it is within the fuse's rating. Use a higher-rated fuse if necessary, but only if the circuit is designed for it.
  2. Fuse Does Not Blow During Overload:

    • Cause: Incorrect fuse type (e.g., time-delay fuse used in a fast-acting application).
    • Solution: Replace the fuse with the correct type for the application.
  3. Loose Connections:

    • Cause: Improper installation of the fuse.
    • Solution: Ensure the fuse is securely seated in the holder or slot.
  4. Fuse Holder Overheats:

    • Cause: Poor contact or undersized holder.
    • Solution: Use a properly rated fuse holder for the Fuse 20A.

FAQs

Q1: Can I use a Fuse 20A for a 12V DC circuit?
Yes, the Fuse 20A is suitable for 12V DC circuits as long as the current does not exceed 20A.

Q2: What is the difference between fast-acting and time-delay fuses?
Fast-acting fuses blow quickly during overcurrent, while time-delay fuses allow short surges (e.g., motor startup) before blowing.

Q3: How do I know if a fuse is blown?
Inspect the fuse visually for a broken filament or use a multimeter to check for continuity. A blown fuse will show no continuity.

Q4: Can I replace a Fuse 20A with a higher-rated fuse?
No, replacing a fuse with a higher rating can compromise circuit protection and lead to damage or safety hazards. Always use the specified rating.