

The MBR20100CT is a Schottky barrier rectifier diode designed for high-efficiency rectification in power supply circuits and other electronic applications. With a maximum reverse voltage of 100V and a forward current rating of 20A, it is ideal for applications requiring low forward voltage drop and high current handling. Its dual-diode configuration in a TO-220 package makes it suitable for compact designs and high-power applications.








| Parameter | Value |
|---|---|
| Maximum Reverse Voltage | 100V |
| Maximum Forward Current | 20A |
| Forward Voltage Drop (Vf) | 0.85V (typical at 10A) |
| Reverse Leakage Current | 1mA (at 100V) |
| Operating Temperature Range | -65°C to +150°C |
| Package Type | TO-220 |
The MBR20100CT is a dual-diode rectifier in a TO-220 package. The pinout is as follows:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Anode 1 | Positive terminal of the first diode |
| 2 | Cathode (Common) | Shared negative terminal for both diodes |
| 3 | Anode 2 | Positive terminal of the second diode |
The MBR20100CT contains two Schottky diodes connected in a common-cathode configuration.
The MBR20100CT can be used in a simple DC motor control circuit with an Arduino UNO to protect against back-EMF. Below is an example circuit and code:
// Example code for controlling a DC motor with Arduino UNO
// and protecting the circuit using the MBR20100CT diode.
const int motorPin = 9; // PWM pin connected to motor driver input
void setup() {
pinMode(motorPin, OUTPUT); // Set motor pin as output
}
void loop() {
analogWrite(motorPin, 128); // Run motor at 50% speed
delay(5000); // Run for 5 seconds
analogWrite(motorPin, 0); // Stop motor
delay(2000); // Wait for 2 seconds
}
Excessive Heat Generation:
High Reverse Leakage Current:
Diode Failure:
Q1: Can the MBR20100CT be used in high-frequency circuits?
A1: Yes, the MBR20100CT is suitable for high-frequency applications due to its low forward voltage drop and fast switching characteristics.
Q2: How do I calculate the required heatsink size?
A2: Use the formula ( P = I_f \times V_f ), where ( P ) is the power dissipation, ( I_f ) is the forward current, and ( V_f ) is the forward voltage drop. Select a heatsink with a thermal resistance that can handle the calculated power dissipation.
Q3: Can I use the MBR20100CT for AC rectification?
A3: Yes, the MBR20100CT is commonly used for AC rectification in power supplies. Connect the anodes to the AC input and the cathode to the DC output.
This concludes the documentation for the MBR20100CT.