Skip to main content

<fuse />

Overview

A <fuse /> is a safety device that protects electrical circuits by interrupting current flow when it exceeds a predetermined threshold. Fuses are essential for preventing damage to components and circuits from overcurrent conditions.

A fuse element has two pins and is typically non-polar, meaning it can be placed in either direction. When the current through the fuse exceeds its current rating, the fuse "blows" or opens the circuit to prevent damage to downstream components.

When specifying a fuse, you'll need to provide the current rating and optionally the voltage rating and footprint. Common fuse types include surface-mount, through-hole, and cartridge fuses.

export default () => (
<fuse
name="F1"
footprint="0603"
currentRating="2A"
voltageRating="32V"
/>
)
Schematic Circuit Preview

Pins

A fuse has the following pins and aliases:

Pin #AliasesDescription
pin1left, inThe input side pin in normal orientation
pin2right, outThe output side pin in normal orientation

Properties

PropertyTypeRequiredDescriptionExample
currentRatingnumber | stringYesThe current rating at which the fuse will blow"2A", 1.5, "500mA"
voltageRatingnumber | stringNoThe maximum voltage the fuse can safely interrupt"32V", 250
schShowRatingsbooleanNoWhether to display the ratings on the schematic symboltrue, false
schOrientationstringNoThe orientation of the fuse in the schematic"left", "right", "up", "down"

Current Ratings

Fuses are available in a wide range of current ratings from microamps to hundreds of amperes. Common current ratings include:

  • Low current: 100mA, 250mA, 500mA, 1A
  • Medium current: 2A, 3A, 5A, 10A
  • High current: 15A, 20A, 30A and above

The current rating should be chosen based on the normal operating current of your circuit, typically 1.5-2x the expected current to avoid nuisance blowing.

Voltage Ratings

The voltage rating indicates the maximum voltage the fuse can safely interrupt when it blows. Common voltage ratings include:

  • Low voltage: 32V, 63V (for automotive and low-voltage applications)
  • AC mains: 125V, 250V (for household and industrial applications)
  • High voltage: 600V and above (for industrial and power applications)

Schematic Display Options

The schShowRatings property controls whether the current and voltage ratings are displayed on the schematic symbol. This can be helpful for documentation but may clutter dense schematics.

The schOrientation property allows you to control how the fuse is oriented in the schematic layout for better routing and readability.