

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-220AB package makes it suitable for use in switching power supplies, freewheeling diodes, and polarity protection circuits.








| 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-220AB |
The MBR20100CT consists of two Schottky diodes in a common cathode configuration. The pinout for the TO-220AB package is as follows:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Anode 1 | Anode of the first diode |
| 2 | Cathode (Common) | Common cathode for both diodes |
| 3 | Anode 2 | Anode of the second diode |
Below is a simplified representation of the TO-220AB package pinout:
_______
| |
| |
|_______|
| | |
1 2 3
The MBR20100CT can be used in circuits interfacing with an Arduino UNO, such as a polarity protection circuit for the Arduino's power input. Below is an example circuit and code for monitoring the voltage after rectification.
// Example code to read rectified voltage using Arduino UNO
// Ensure the voltage divider output does not exceed 5V for safe ADC input
const int voltagePin = A0; // Analog pin connected to the voltage divider
float voltage = 0.0; // Variable to store the measured voltage
void setup() {
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int adcValue = analogRead(voltagePin); // Read ADC value (0-1023)
// Convert ADC value to voltage
// Assuming a 10:1 voltage divider and 5V reference voltage
voltage = (adcValue * 5.0 / 1023.0) * 10.0;
// Print the measured voltage to the Serial Monitor
Serial.print("Rectified Voltage: ");
Serial.print(voltage);
Serial.println(" V");
delay(1000); // Wait for 1 second before the next reading
}
Excessive Heat Generation
High Reverse Leakage Current
Diode Failure
Q: Can I use the MBR20100CT for AC rectification?
A: Yes, the MBR20100CT is suitable for AC rectification in full-wave or half-wave rectifier circuits.
Q: What is the maximum operating temperature for the MBR20100CT?
A: The maximum operating temperature is +150°C. Ensure proper cooling to avoid exceeding this limit.
Q: Can I use the MBR20100CT without a heatsink?
A: It is not recommended for high-current applications. A heatsink is necessary to dissipate heat effectively.
Q: How do I connect the MBR20100CT in a full-wave rectifier?
A: Use two MBR20100CT diodes in a bridge configuration or a single MBR20100CT for a center-tapped transformer.
This concludes the documentation for the MBR20100CT.