The Crydom D2W203F-11 is a solid state relay (SSR) designed for switching AC loads using DC control signals. This component offers electrical isolation and fast switching times, making it ideal for applications where mechanical relays are unsuitable. The D2W203F-11 can handle AC loads up to 3A with an input control voltage range of 3-32V DC.
Parameter | Value |
---|---|
Manufacturer | Crydom |
Part ID | D2W203F-11 |
Input Control Voltage | 3-32V DC |
Output Voltage Range | 24-280V AC |
Maximum Load Current | 3A |
Isolation Voltage | 4000V AC |
Switching Time | < 1ms |
Operating Temperature | -30°C to +80°C |
Package Type | SIP4 |
Pin Number | Pin Name | Description |
---|---|---|
1 | +DC | Positive DC control input (3-32V DC) |
2 | -DC | Negative DC control input (Ground) |
3 | AC Load | AC load terminal 1 |
4 | AC Load | AC load terminal 2 |
Connect the DC Control Signal:
Connect the AC Load:
Power the Circuit:
Below is an example code to control the D2W203F-11 SSR using an Arduino UNO:
// Define the pin connected to the SSR control input
const int ssrPin = 7;
void setup() {
// Initialize the SSR pin as an output
pinMode(ssrPin, OUTPUT);
}
void loop() {
// Turn the SSR on (connects AC load)
digitalWrite(ssrPin, HIGH);
delay(1000); // Wait for 1 second
// Turn the SSR off (disconnects AC load)
digitalWrite(ssrPin, LOW);
delay(1000); // Wait for 1 second
}
SSR Not Switching:
Overheating:
No Load Operation:
Q1: Can the D2W203F-11 be used with an inductive load?
Q2: What is the isolation voltage of the D2W203F-11?
Q3: How fast can the D2W203F-11 switch?
Q4: What is the operating temperature range?
This documentation provides a comprehensive overview of the Crydom D2W203F-11 SSR, including its technical specifications, usage instructions, and troubleshooting tips. Whether you are a beginner or an experienced user, this guide will help you effectively utilize the D2W203F-11 in your projects.