

The SCR MCR100-6 is a silicon-controlled rectifier (SCR) designed for controlling power in a wide range of applications. This semiconductor device is capable of handling high voltage and current, making it ideal for use in motor control, lighting systems, heating elements, and other power management applications. The SCR is triggered by a gate signal, allowing it to switch on and off efficiently, which is particularly useful in AC and DC circuits requiring precise control.
Common applications of the SCR MCR100-6 include:








The following table outlines the key technical specifications of the SCR MCR100-6:
| Parameter | Value |
|---|---|
| Maximum Repetitive Voltage (VRRM) | 400V |
| Maximum RMS On-State Current (IT(RMS)) | 0.8A |
| Peak Gate Trigger Current (IGT) | 200µA |
| Peak Gate Trigger Voltage (VGT) | 0.8V |
| Holding Current (IH) | 5mA |
| Peak Non-Repetitive Surge Current (ITSM) | 8A |
| Operating Temperature Range | -40°C to +110°C |
| Package Type | TO-92 |
The SCR MCR100-6 is housed in a TO-92 package with three pins. The pin configuration is as follows:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Gate | Trigger input to activate the SCR |
| 2 | Cathode | Connected to the negative terminal |
| 3 | Anode | Connected to the positive terminal |
Basic Circuit Setup:
Triggering the SCR:
Turning Off the SCR:
The SCR MCR100-6 can be controlled using an Arduino UNO to trigger the gate pin. Below is an example circuit and code to control a small DC load:
// SCR MCR100-6 Control with Arduino UNO
// Pin 9 is used to trigger the SCR gate
const int SCRGatePin = 9; // Define the pin connected to the SCR gate
void setup() {
pinMode(SCRGatePin, OUTPUT); // Set the SCR gate pin as an output
}
void loop() {
digitalWrite(SCRGatePin, HIGH); // Trigger the SCR by sending a HIGH signal
delay(1000); // Keep the load ON for 1 second
digitalWrite(SCRGatePin, LOW); // Stop triggering the SCR
delay(1000); // Wait for 1 second before the next trigger
}
SCR Does Not Turn On:
SCR Turns On but Does Not Turn Off:
SCR Overheats:
Gate Signal Damages the SCR:
Q: Can the SCR MCR100-6 be used in AC circuits?
A: Yes, the SCR can be used in AC circuits. It will automatically turn off when the AC waveform crosses zero (natural commutation).
Q: What happens if the gate signal is continuously applied?
A: The SCR will remain on as long as the load current exceeds the holding current. Continuous gate signals are not necessary once the SCR is triggered.
Q: Can the SCR handle inductive loads?
A: Yes, but a snubber circuit (resistor-capacitor network) is recommended to protect the SCR from voltage spikes caused by inductive loads.
Q: How do I calculate the gate resistor value?
A: Use Ohm's law: ( R = \frac{V_{source} - V_{GT}}{I_{GT}} ), where ( V_{source} ) is the control voltage, ( V_{GT} ) is the gate trigger voltage, and ( I_{GT} ) is the gate trigger current.