

The Carlo Gavazzi RKD2A23D50C is a Double Pole Single Throw Solid State Relay (DPST SSR) designed for high-performance switching applications. Unlike traditional mechanical relays, this solid-state relay uses semiconductor components to control the flow of electricity, ensuring fast switching speeds, high reliability, and long operational life. The DPST configuration allows it to control two separate circuits simultaneously, making it ideal for industrial and commercial applications.








| Parameter | Value |
|---|---|
| Manufacturer | Carlo Gavazzi |
| Part Number | RKD2A23D50C |
| Relay Type | Solid State Relay (SSR) |
| Configuration | Double Pole Single Throw (DPST) |
| Load Voltage Range | 24-230 VAC |
| Maximum Load Current | 50 A |
| Control Voltage Range | 4-32 VDC |
| Isolation Voltage | 4000 VAC |
| Switching Speed | < 10 ms |
| Operating Temperature Range | -30°C to +80°C |
| Mounting Type | Panel Mount |
| Certifications | CE, UL, RoHS |
The RKD2A23D50C has a straightforward pin configuration for both the control and load sides. Below is the pinout description:
| Pin Number | Description |
|---|---|
| 1 | Positive Control Input (+) |
| 2 | Negative Control Input (-) |
| Pin Number | Description |
|---|---|
| 3 | Load Terminal 1 (Pole 1) |
| 4 | Load Terminal 2 (Pole 1) |
| 5 | Load Terminal 1 (Pole 2) |
| 6 | Load Terminal 2 (Pole 2) |
Control Side Connection:
Load Side Connection:
Mounting:
Power Up:
The RKD2A23D50C can be controlled using an Arduino UNO. Below is an example code to toggle the relay on and off:
// Define the control pin connected to the relay
const int relayControlPin = 7;
void setup() {
// Set the relay control pin as an output
pinMode(relayControlPin, OUTPUT);
}
void loop() {
// Turn the relay ON
digitalWrite(relayControlPin, HIGH);
delay(1000); // Keep the relay ON for 1 second
// Turn the relay OFF
digitalWrite(relayControlPin, LOW);
delay(1000); // Keep the relay OFF for 1 second
}
Relay Not Switching:
Overheating:
Load Not Receiving Power:
Voltage Spikes Damaging the Relay:
Control Circuit Damage:
Q1: Can this relay handle DC loads?
A1: No, the RKD2A23D50C is designed for AC loads only. For DC loads, use a DC-specific SSR.
Q2: What is the maximum switching frequency?
A2: The relay can switch at speeds up to 10 ms, making it suitable for most industrial applications.
Q3: Is the relay polarity-sensitive on the control side?
A3: Yes, the control side requires correct polarity (Pin 1: +, Pin 2: -) for proper operation.
Q4: Can I use this relay without a heat sink?
A4: For low-current applications, a heat sink may not be necessary. However, for high-current loads, a heat sink is strongly recommended to prevent overheating.
Q5: Does the relay provide galvanic isolation?
A5: Yes, the relay provides 4000 VAC isolation between the control and load sides.