

The SSR-40DA is a Solid State Relay (SSR) designed for high-performance switching applications. It is capable of handling loads up to 40 amps and operates without mechanical wear, making it highly reliable and durable. Unlike traditional electromechanical relays, the SSR-40DA uses semiconductor switching elements, enabling fast and silent operation. This component is widely used in industrial automation, heating systems, motor control, and other applications requiring efficient and reliable AC load switching.








Below are the key technical details of the SSR-40DA:
| Parameter | Value |
|---|---|
| Load Voltage Range | 24V AC to 380V AC |
| Load Current Rating | 40A |
| Control Voltage Range | 3V DC to 32V DC |
| Trigger Current | ≤7.5mA |
| On-State Voltage Drop | ≤1.6V |
| Off-State Leakage Current | ≤2mA |
| Isolation Voltage | ≥2500V AC |
| Operating Temperature | -30°C to +80°C |
| Mounting Type | Panel Mount |
The SSR-40DA has four terminals, as described below:
| Pin | Label | Description |
|---|---|---|
| 1 | Input (+) | Positive control signal input (3V DC to 32V DC). Connect to the control circuit. |
| 2 | Input (-) | Negative control signal input (ground). |
| 3 | Load Terminal 1 | Connect to one side of the AC load. |
| 4 | Load Terminal 2 | Connect to the AC power source or the other side of the load. |
Control Signal Connection:
Input (+) terminal.Input (-) terminal.Load Connection:
Load Terminal 1.Load Terminal 2.Mounting:
Power On:
Below is an example of how to control the SSR-40DA using an Arduino UNO to switch an AC load.
// Example: Controlling SSR-40DA with Arduino UNO
// This code toggles the SSR on and off every 2 seconds.
const int ssrPin = 7; // Pin connected to the SSR control input
void setup() {
pinMode(ssrPin, OUTPUT); // Set the SSR pin as an output
}
void loop() {
digitalWrite(ssrPin, HIGH); // Turn the SSR on (AC load ON)
delay(2000); // Wait for 2 seconds
digitalWrite(ssrPin, LOW); // Turn the SSR off (AC load OFF)
delay(2000); // Wait for 2 seconds
}
Note: Ensure the Arduino's ground is connected to the SSR's Input (-) terminal.
SSR Does Not Switch the Load:
Excessive Heating:
Load Flickering:
Leakage Current When Off:
Q1: Can the SSR-40DA switch DC loads?
A1: No, the SSR-40DA is designed for AC loads only. For DC loads, use a DC-specific SSR.
Q2: What happens if the load exceeds 40A?
A2: Exceeding the rated current can damage the SSR. Use a relay with a higher current rating or reduce the load.
Q3: Can I use the SSR-40DA without a heat sink?
A3: For low-current applications, a heat sink may not be necessary. However, for high-current loads, a heat sink is essential to prevent overheating.
Q4: Is the SSR-40DA suitable for switching high-frequency signals?
A4: No, SSRs are not designed for high-frequency switching. Use a transistor or MOSFET for such applications.