The Fotek SSR DC-DC is a Solid State Relay (SSR) designed specifically for DC applications. It enables the control of high-voltage DC loads using low-voltage control signals. Unlike traditional mechanical relays, the SSR DC-DC offers fast switching, high reliability, and no mechanical wear, making it ideal for applications requiring frequent switching or high durability.
The Fotek SSR DC-DC is engineered to handle a wide range of DC control and load voltages. Below are the key technical details:
Parameter | Value |
---|---|
Manufacturer | Fotek |
Part ID | Not specified |
Control Voltage (Input) | 3-32 V DC |
Load Voltage (Output) | 5-200 V DC |
Load Current (Max) | 40 A |
Switching Speed | ≤ 10 ms |
Isolation Voltage | ≥ 2500 V AC |
Operating Temperature | -30°C to +80°C |
Mounting Type | Panel-mounted |
Dimensions | 58 mm x 45 mm x 30 mm |
The SSR DC-DC typically has four terminals, as described in the table below:
Pin Number | Label | Description |
---|---|---|
1 | + (Input) | Positive terminal for the control signal (3-32 V DC). |
2 | - (Input) | Negative terminal for the control signal (ground). |
3 | + (Output) | Positive terminal for the DC load. Connect to the positive side of the load. |
4 | - (Output) | Negative terminal for the DC load. Connect to the negative side of the load. |
Control Signal Connection:
+ (Input)
terminal.- (Input)
terminal.Load Connection:
+ (Output)
terminal.- (Output)
terminal.Power Supply:
Mounting:
Testing:
The SSR DC-DC can be controlled using an Arduino UNO. Below is an example circuit and code to toggle a DC load using a digital pin.
+ (Input)
terminal of the SSR.- (Input)
terminal of the SSR.+ (Output)
and - (Output)
terminals of the SSR.// Define the pin connected to the SSR control input
const int ssrPin = 9;
void setup() {
// Set the SSR pin as an output
pinMode(ssrPin, OUTPUT);
}
void loop() {
// Turn the SSR (and load) ON
digitalWrite(ssrPin, HIGH);
delay(1000); // Keep the load ON for 1 second
// Turn the SSR (and load) OFF
digitalWrite(ssrPin, LOW);
delay(1000); // Keep the load OFF for 1 second
}
The load does not turn on:
The SSR overheats:
The SSR does not switch off:
The SSR fails to operate:
Q: Can the SSR DC-DC handle AC loads?
A: No, this SSR is designed specifically for DC loads. For AC loads, use an AC-AC or DC-AC SSR.
Q: Is the SSR polarity-sensitive?
A: Yes, both the control signal and load connections must follow the correct polarity.
Q: Can I use the SSR for PWM control?
A: While the SSR supports fast switching, it is not ideal for high-frequency PWM control. Use a dedicated DC motor driver or MOSFET for such applications.
Q: How do I know if the SSR is working?
A: Apply a control signal and measure the voltage across the load terminals. If the load voltage matches the expected value, the SSR is functioning correctly.