The Random SSR 40A (Manufacturer: LCTC, Part ID: 1DA40AP) is a solid-state relay (SSR) designed for high-current switching applications. It is rated for a maximum load current of 40 amperes and is capable of switching AC loads without the use of mechanical components. Unlike traditional electromechanical relays, the SSR operates silently, offers faster switching speeds, and has a longer operational lifespan due to the absence of moving parts.
Parameter | Value |
---|---|
Manufacturer | LCTC |
Part ID | 1DA40AP |
Load Voltage Range | 24V AC to 380V AC |
Maximum Load Current | 40A |
Control Voltage Range | 3V DC to 32V DC |
Trigger Current | ≤ 7.5mA |
On-State Voltage Drop | ≤ 1.5V |
Isolation Voltage | ≥ 2500V AC |
Operating Temperature | -30°C to +80°C |
Switching Type | Random (non-zero crossing) |
Mounting Type | Panel mount |
The SSR 40A has four terminals, as described below:
Pin Number | Label | Description |
---|---|---|
1 | Input (+) | Positive terminal for the DC control signal (3V to 32V DC). |
2 | Input (-) | Negative terminal for the DC control signal (ground). |
3 | Load (AC1) | One terminal of the AC load circuit. |
4 | Load (AC2) | The other terminal of the AC load circuit. |
Note: Ensure proper polarity for the input control signal and correct wiring of the AC load terminals.
Below is an example of how to control the SSR 40A using an Arduino UNO to switch an AC load.
// Example: Controlling an SSR 40A with Arduino UNO
// This code toggles the SSR on and off every 2 seconds.
const int ssrPin = 9; // 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 is powered)
delay(2000); // Wait for 2 seconds
digitalWrite(ssrPin, LOW); // Turn the SSR off (AC load is disconnected)
delay(2000); // Wait for 2 seconds
}
Note: Ensure the Arduino's output pin is connected to the SSR's input terminals (Pin 1 and Pin 2) with proper polarity. Use a resistor (e.g., 220 ohms) if needed to limit current.
SSR Does Not Switch the Load
Overheating
Load Flickering
No Isolation Between Control and Load Circuits
Q1: Can the SSR 40A be used with DC loads?
A1: No, the SSR 40A is designed for AC loads only. For DC loads, use a DC-specific solid-state relay.
Q2: What is the advantage of random switching?
A2: Random switching allows the SSR to turn on at any point in the AC waveform, making it suitable for inductive loads like motors and transformers.
Q3: How do I calculate the required heat sink size?
A3: Use the formula:
[
P = I^2 \times R_{on}
]
where (P) is the power dissipation, (I) is the load current, and (R_{on}) is the on-state resistance. Select a heat sink that can dissipate this power.
Q4: Can I use the SSR 40A for dimming lights?
A4: No, the SSR 40A is not suitable for dimming applications. Use a phase-controlled SSR for such purposes.